| Index: sdk/lib/collection/linked_hash_map.dart
|
| diff --git a/sdk/lib/collection/linked_hash_map.dart b/sdk/lib/collection/linked_hash_map.dart
|
| index 8e6538c995a1d873eab56db286a02056529dd09b..3082ce0881a8b99736968e9a37839bb375c80bbb 100644
|
| --- a/sdk/lib/collection/linked_hash_map.dart
|
| +++ b/sdk/lib/collection/linked_hash_map.dart
|
| @@ -25,19 +25,19 @@ class LinkedHashMap<K, V> implements Map<K, V> {
|
| return new LinkedHashMap<K, V>()..addAll(other);
|
| }
|
|
|
| - external bool containsKey(K key);
|
| + external bool containsKey(Object key);
|
|
|
| - external bool containsValue(V value);
|
| + external bool containsValue(Object value);
|
|
|
| external void addAll(Map<K, V> other);
|
|
|
| - external V operator [](K key);
|
| + external V operator [](Object key);
|
|
|
| external void operator []=(K key, V value);
|
|
|
| external V putIfAbsent(K key, V ifAbsent());
|
|
|
| - external V remove(K key);
|
| + external V remove(Object key);
|
|
|
| external void clear();
|
|
|
|
|