| 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 c4c7e0a247ad534839467da344ecab5a58aeb1e3..88157a33a8fd27c262867798c3e6655b8004b509 100644
|
| --- a/test/dart_codegen/expect/collection/maps.dart
|
| +++ b/test/dart_codegen/expect/collection/maps.dart
|
| @@ -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 => ((__x26) => DDC$RT.cast(__x26, dynamic, V, "CastGeneral", """line 122, column 18 of dart:collection/maps.dart: """, __x26 is V, false))(_map[_map.keys.first]);
|
| - V get single => ((__x27) => DDC$RT.cast(__x27, dynamic, V, "CastGeneral", """line 123, column 19 of dart:collection/maps.dart: """, __x27 is V, false))(_map[_map.keys.single]);
|
| - V get last => ((__x28) => DDC$RT.cast(__x28, dynamic, V, "CastGeneral", """line 124, column 17 of dart:collection/maps.dart: """, __x28 is V, false))(_map[_map.keys.last]);
|
| + V get first => ((__x26) => DEVC$RT.cast(__x26, dynamic, V, "CastGeneral", """line 122, column 18 of dart:collection/maps.dart: """, __x26 is V, false))(_map[_map.keys.first]);
|
| + V get single => ((__x27) => DEVC$RT.cast(__x27, dynamic, V, "CastGeneral", """line 123, column 19 of dart:collection/maps.dart: """, __x27 is V, false))(_map[_map.keys.single]);
|
| + V get last => ((__x28) => DEVC$RT.cast(__x28, dynamic, V, "CastGeneral", """line 124, column 17 of dart:collection/maps.dart: """, __x28 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 = ((__x29) => DDC$RT.cast(__x29, dynamic, V, "CastGeneral", """line 144, column 18 of dart:collection/maps.dart: """, __x29 is V, false))(_map[_keys.current]);
|
| +_current = ((__x29) => DEVC$RT.cast(__x29, dynamic, V, "CastGeneral", """line 144, column 18 of dart:collection/maps.dart: """, __x29 is V, false))(_map[_keys.current]);
|
| return true;
|
| }
|
| _current = null;
|
|
|