Index: runtime/lib/immutable_map.dart |
diff --git a/runtime/lib/immutable_map.dart b/runtime/lib/immutable_map.dart |
index 700f345e0cd2c1cd12a3f5fc2bdefa284242746d..d7756e0308afd5326d79fc0345cd5a2ac650987f 100644 |
--- a/runtime/lib/immutable_map.dart |
+++ b/runtime/lib/immutable_map.dart |
@@ -35,7 +35,7 @@ class ImmutableMap<K, V> implements Map<K, V> { |
} |
} |
- Collection<K> getKeys() { |
+ Collection<K> get keys { |
int numKeys = length; |
List<K> list = new List<K>(numKeys); |
for (int i = 0; i < numKeys; i++) { |
@@ -44,7 +44,7 @@ class ImmutableMap<K, V> implements Map<K, V> { |
return list; |
} |
- Collection<V> getValues() { |
+ Collection<V> get values { |
int numValues = length; |
List<V> list = new List<V>(numValues); |
for (int i = 0; i < numValues; i++) { |