Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(410)

Unified Diff: lib/dom/templates/html/dart2js/html_dart2js.darttemplate

Issue 10916177: Revert "Partially migrate from old getter syntax to new one." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/dom/scripts/systemnative.py ('k') | lib/dom/templates/html/dart2js/impl_CanvasElement.darttemplate » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/templates/html/dart2js/html_dart2js.darttemplate
diff --git a/lib/dom/templates/html/dart2js/html_dart2js.darttemplate b/lib/dom/templates/html/dart2js/html_dart2js.darttemplate
index a632a450202c9606ed0091ff9e177380db575ddf..cc60aec560b4e300e25eb8492c69d9e9644bca41 100644
--- a/lib/dom/templates/html/dart2js/html_dart2js.darttemplate
+++ b/lib/dom/templates/html/dart2js/html_dart2js.darttemplate
@@ -35,12 +35,12 @@ $!GENERATED_DART_FILES
#source('../../dom/src/_Lists.dart');
-Window get window native "return window;";
-_WindowImpl get _window native "return window;";
+Window get window() native "return window;";
+_WindowImpl get _window() native "return window;";
-Document get document native "return document;";
+Document get document() native "return document;";
-_DocumentImpl get _document native "return document;";
+_DocumentImpl get _document() native "return document;";
Element query(String selector) => _document.query(selector);
ElementList queryAll(String selector) => _document.queryAll(selector);
« no previous file with comments | « lib/dom/scripts/systemnative.py ('k') | lib/dom/templates/html/dart2js/impl_CanvasElement.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698