| Index: test/dart_codegen/expect/collection/maps.dart
|
| diff --git a/test/dart_codegen/expect/collection/maps.dart b/test/dart_codegen/expect/collection/maps.dart
|
| index 7872384bce0d86b948c765a57bf9152e76adf55f..f94f6fed7d25d7ea459a816ee9b32a689cfc271e 100644
|
| --- a/test/dart_codegen/expect/collection/maps.dart
|
| +++ b/test/dart_codegen/expect/collection/maps.dart
|
| @@ -15,7 +15,7 @@ part of dart.collection;
|
| this[key] = other[key];
|
| }
|
| }
|
| - bool containsValue(V value) {
|
| + bool containsValue(Object value) {
|
| for (K key in keys) {
|
| if (this[key] == value) return true;
|
| }
|
| @@ -40,9 +40,9 @@ part of dart.collection;
|
| int get length => _map.length;
|
| bool get isEmpty => _map.isEmpty;
|
| bool get isNotEmpty => _map.isNotEmpty;
|
| - V get first => ((__x7) => DEVC$RT.cast(__x7, dynamic, V, "CompositeCast", """line 122, column 18 of dart:collection/maps.dart: """, __x7 is V, false))(_map[_map.keys.first]);
|
| - V get single => ((__x8) => DEVC$RT.cast(__x8, dynamic, V, "CompositeCast", """line 123, column 19 of dart:collection/maps.dart: """, __x8 is V, false))(_map[_map.keys.single]);
|
| - V get last => ((__x9) => DEVC$RT.cast(__x9, dynamic, V, "CompositeCast", """line 124, column 17 of dart:collection/maps.dart: """, __x9 is V, false))(_map[_map.keys.last]);
|
| + V get first => ((__x11) => DEVC$RT.cast(__x11, dynamic, V, "CompositeCast", """line 122, column 18 of dart:collection/maps.dart: """, __x11 is V, false))(_map[_map.keys.first]);
|
| + V get single => ((__x12) => DEVC$RT.cast(__x12, dynamic, V, "CompositeCast", """line 123, column 19 of dart:collection/maps.dart: """, __x12 is V, false))(_map[_map.keys.single]);
|
| + V get last => ((__x13) => DEVC$RT.cast(__x13, dynamic, V, "CompositeCast", """line 124, column 17 of dart:collection/maps.dart: """, __x13 is V, false))(_map[_map.keys.last]);
|
| Iterator<V> get iterator => new _MapBaseValueIterator<V>(_map);
|
| }
|
| class _MapBaseValueIterator<V> implements Iterator<V> {final Iterator _keys;
|
| @@ -51,7 +51,7 @@ part of dart.collection;
|
| _MapBaseValueIterator(Map map) : _map = map, _keys = map.keys.iterator;
|
| bool moveNext() {
|
| if (_keys.moveNext()) {
|
| -_current = ((__x10) => DEVC$RT.cast(__x10, dynamic, V, "CompositeCast", """line 144, column 18 of dart:collection/maps.dart: """, __x10 is V, false))(_map[_keys.current]);
|
| +_current = ((__x14) => DEVC$RT.cast(__x14, dynamic, V, "CompositeCast", """line 144, column 18 of dart:collection/maps.dart: """, __x14 is V, false))(_map[_keys.current]);
|
| return true;
|
| }
|
| _current = null;
|
|
|