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

Unified Diff: lib/html/src/MutationEvent.dart

Issue 10919146: Get rid of a lot of () for getters. (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/src/MutationEvent.dart
diff --git a/lib/html/src/MutationEvent.dart b/lib/html/src/MutationEvent.dart
index 42261b19313db0d2fc6b810ed6fe6e07f21e22ef..dcb9066aa643aeb12ec0c9ddc780d7204ed86a0a 100644
--- a/lib/html/src/MutationEvent.dart
+++ b/lib/html/src/MutationEvent.dart
@@ -14,13 +14,13 @@ interface MutationEvent extends Event default MutationEventWrappingImplementatio
static const int REMOVAL = 3;
- int get attrChange();
+ int get attrChange;
- String get attrName();
+ String get attrName;
- String get newValue();
+ String get newValue;
- String get prevValue();
+ String get prevValue;
- Node get relatedNode();
+ Node get relatedNode;
}
« no previous file with comments | « lib/html/src/MessageEventWrappingImplementation.dart ('k') | lib/html/src/MutationEventWrappingImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698