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

Unified Diff: lib/html/src/CloseEvent.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/CloseEvent.dart
diff --git a/lib/html/src/CloseEvent.dart b/lib/html/src/CloseEvent.dart
index 124ab6dc9a864461aa48fe126003584d741175c6..cdc747ca850ba37db7d738dabcda778cee6ccd1b 100644
--- a/lib/html/src/CloseEvent.dart
+++ b/lib/html/src/CloseEvent.dart
@@ -7,9 +7,9 @@ interface CloseEvent extends Event default CloseEventWrappingImplementation {
CloseEvent(String type, int code, String reason,
[bool canBubble, bool cancelable, bool wasClean]);
- int get code();
+ int get code;
- String get reason();
+ String get reason;
- bool get wasClean();
+ bool get wasClean;
}
« no previous file with comments | « lib/html/src/BeforeLoadEventWrappingImplementation.dart ('k') | lib/html/src/CloseEventWrappingImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698