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

Unified Diff: lib/dom/templates/html/dart2js/impl_MouseEvent.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
Index: lib/dom/templates/html/dart2js/impl_MouseEvent.darttemplate
diff --git a/lib/dom/templates/html/dart2js/impl_MouseEvent.darttemplate b/lib/dom/templates/html/dart2js/impl_MouseEvent.darttemplate
index 078b0fa1974cc901caea23c16566405ecfac9c94..c414fcd5c4790380baaa3d57b7e66619a479f6b2 100644
--- a/lib/dom/templates/html/dart2js/impl_MouseEvent.darttemplate
+++ b/lib/dom/templates/html/dart2js/impl_MouseEvent.darttemplate
@@ -5,7 +5,7 @@
class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
$!MEMBERS
- int get offsetX {
+ int get offsetX() {
if (JS('bool', '!!this.offsetX')) {
return this._offsetX;
} else {
@@ -19,7 +19,7 @@ $!MEMBERS
}
}
- int get offsetY {
+ int get offsetY() {
if (JS('bool', '!!this.offsetY')) {
return this._offsetY;
} else {
@@ -33,6 +33,6 @@ $!MEMBERS
}
}
- int get _offsetX native 'return this.offsetX';
- int get _offsetY native 'return this.offsetY';
+ int get _offsetX() native 'return this.offsetX';
+ int get _offsetY() native 'return this.offsetY';
}

Powered by Google App Engine
This is Rietveld 408576698