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

Unified Diff: samples/maps/js.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
« no previous file with comments | « samples/logo/logo.dart ('k') | samples/maps/maps.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/maps/js.dart
diff --git a/samples/maps/js.dart b/samples/maps/js.dart
index a6d5496c5ff9440b9a1619733cf5e85d9c14d1df..60d1b23f06a4d8c31e6cd0a31ebacfb75fe701d5 100644
--- a/samples/maps/js.dart
+++ b/samples/maps/js.dart
@@ -343,7 +343,7 @@ class _SerializableMap implements Map<String, Object> {
getKeys() => _fail();
getValues() => _fail();
isEmpty() => _fail();
- get length() => _fail();
+ get length => _fail();
putIfAbsent(key, ifAbsent) => _fail();
remove(key) => _fail();
}
« no previous file with comments | « samples/logo/logo.dart ('k') | samples/maps/maps.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698