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

Unified Diff: lib/html/templates/html/dart2js/impl_MouseEvent.darttemplate

Issue 10913191: Migrate templates to new getter syntax. (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/html/templates/html/dart2js/impl_MouseEvent.darttemplate
diff --git a/lib/html/templates/html/dart2js/impl_MouseEvent.darttemplate b/lib/html/templates/html/dart2js/impl_MouseEvent.darttemplate
index c414fcd5c4790380baaa3d57b7e66619a479f6b2..63fa8471819937ecc4e498e1e197902a8f5cd788 100644
--- a/lib/html/templates/html/dart2js/impl_MouseEvent.darttemplate
+++ b/lib/html/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 {

Powered by Google App Engine
This is Rietveld 408576698