| Index: lib/coreimpl/hash_map_set.dart
|
| diff --git a/lib/coreimpl/hash_map_set.dart b/lib/coreimpl/hash_map_set.dart
|
| index fe4a671557407e0ba049aea891f5f2522b34c4fa..e4bb62f1d4b009127e240bb4d0b76c895159bbe2 100644
|
| --- a/lib/coreimpl/hash_map_set.dart
|
| +++ b/lib/coreimpl/hash_map_set.dart
|
| @@ -238,7 +238,7 @@ class HashMapImplementation<K, V> implements HashMap<K, V> {
|
| }
|
|
|
|
|
| - Collection<K> getKeys() {
|
| + Collection<K> get keys {
|
| List<K> list = new List<K>(length);
|
| int i = 0;
|
| forEach(void _(K key, V value) {
|
| @@ -247,7 +247,7 @@ class HashMapImplementation<K, V> implements HashMap<K, V> {
|
| return list;
|
| }
|
|
|
| - Collection<V> getValues() {
|
| + Collection<V> get values {
|
| List<V> list = new List<V>(length);
|
| int i = 0;
|
| forEach(void _(K key, V value) {
|
| @@ -366,12 +366,12 @@ class HashSetImplementation<E > implements HashSet<E> {
|
| }
|
|
|
| bool every(bool f(E element)) {
|
| - Collection<E> keys = _backingMap.getKeys();
|
| + Collection<E> keys = _backingMap.keys;
|
| return keys.every(f);
|
| }
|
|
|
| bool some(bool f(E element)) {
|
| - Collection<E> keys = _backingMap.getKeys();
|
| + Collection<E> keys = _backingMap.keys;
|
| return keys.some(f);
|
| }
|
|
|
|
|