| Index: lib/core/map.dart
|
| diff --git a/lib/core/map.dart b/lib/core/map.dart
|
| index 5bf4c96464f821e33cb8c7cd0d1a6b2d74e8772e..530d4ee6f50ad3d03c7ba38f224282a9eb743e72 100644
|
| --- a/lib/core/map.dart
|
| +++ b/lib/core/map.dart
|
| @@ -69,12 +69,12 @@ interface Map<K, V> default HashMapImplementation<K, V> {
|
| /**
|
| * Returns a collection containing all the keys in the map.
|
| */
|
| - Collection<K> getKeys();
|
| + Collection<K> get keys;
|
|
|
| /**
|
| * Returns a collection containing all the values in the map.
|
| */
|
| - Collection<V> getValues();
|
| + Collection<V> get values;
|
|
|
| /**
|
| * The number of {key, value} pairs in the map.
|
| @@ -89,8 +89,8 @@ interface Map<K, V> default HashMapImplementation<K, V> {
|
|
|
| /**
|
| * Hash map version of the [Map] interface. A [HashMap] does not
|
| - * provide any guarantees on the order of keys and values in [getKeys]
|
| - * and [getValues].
|
| + * provide any guarantees on the order of keys and values in [keys]
|
| + * and [values].
|
| */
|
| interface HashMap<K, V> extends Map<K, V>
|
| default HashMapImplementation<K, V> {
|
|
|