| Index: sdk/lib/_collection_dev/list.dart
|
| diff --git a/sdk/lib/_collection_dev/list.dart b/sdk/lib/_collection_dev/list.dart
|
| index 93e49aeff356f8d9fbe4dd27957ec96df9d790ef..267b282bd6bb006a782cdb76be42da2518bd887b 100644
|
| --- a/sdk/lib/_collection_dev/list.dart
|
| +++ b/sdk/lib/_collection_dev/list.dart
|
| @@ -238,8 +238,8 @@ class ListMapView<E> implements Map<int, E> {
|
| Iterable<int> get keys => new _ListIndicesIterable(_values);
|
|
|
| bool get isEmpty => _values.isEmpty;
|
| - bool containsValue(E value) => _values.contains(value);
|
| - bool containsKey(int key) => key is int && key >= 0 && key < length;
|
| + bool containsValue(Object value) => _values.contains(value);
|
| + bool containsKey(Object key) => key is int && key >= 0 && key < length;
|
|
|
| void forEach(void f(int key, E value)) {
|
| int length = _values.length;
|
|
|