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

Unified Diff: dart/sdk/lib/_internal/lib/constant_map.dart

Issue 18029018: Check that non-abstract classes implement all methods. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years 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: dart/sdk/lib/_internal/lib/constant_map.dart
diff --git a/dart/sdk/lib/_internal/lib/constant_map.dart b/dart/sdk/lib/_internal/lib/constant_map.dart
index 0fabc0bd31170c04d65014c774b42a9e1560ffd1..398d37cf339db2f1e8d8035d6f7d6c5a569b1996 100644
--- a/dart/sdk/lib/_internal/lib/constant_map.dart
+++ b/dart/sdk/lib/_internal/lib/constant_map.dart
@@ -122,4 +122,6 @@ class GeneralConstantMap<K, V> extends ConstantMap<K, V> {
Iterable<V> get values {
return _getMap().values;
}
+
+ int get length => _getMap().length;
}

Powered by Google App Engine
This is Rietveld 408576698