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

Unified Diff: lib/html/src/ErrorEvent.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/ErrorEvent.dart
diff --git a/lib/html/src/ErrorEvent.dart b/lib/html/src/ErrorEvent.dart
index 2e1a8d198a9697567d08053836ef5e8293302a89..b90980705fdb7baa2727bce5af66f75baf1b2af5 100644
--- a/lib/html/src/ErrorEvent.dart
+++ b/lib/html/src/ErrorEvent.dart
@@ -7,9 +7,9 @@ interface ErrorEvent extends Event default ErrorEventWrappingImplementation {
ErrorEvent(String type, String message, String filename, int lineNo,
[bool canBubble, bool cancelable]);
- String get filename();
+ String get filename;
- int get lineno();
+ int get lineno;
- String get message();
+ String get message;
}
« no previous file with comments | « lib/html/src/DocumentFragmentWrappingImplementation.dart ('k') | lib/html/src/ErrorEventWrappingImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698