Index: test/dart_codegen/expect/collection/hash_map.dart |
diff --git a/test/dart_codegen/expect/collection/hash_map.dart b/test/dart_codegen/expect/collection/hash_map.dart |
index 03bc7f15443760ac2d76b50fe28032ef5eef0df9..6c302d97c7ea4366891b2e6fe41f4f49a11efad4 100644 |
--- a/test/dart_codegen/expect/collection/hash_map.dart |
+++ b/test/dart_codegen/expect/collection/hash_map.dart |
@@ -1,6 +1,6 @@ |
part of dart.collection; |
bool _defaultEquals(a, b) => a == b; |
- int _defaultHashCode(a) => DDC$RT.cast(a.hashCode, dynamic, int, "CastGeneral", """line 10, column 28 of dart:collection/hash_map.dart: """, a.hashCode is int, true); |
+ int _defaultHashCode(a) => DEVC$RT.cast(a.hashCode, dynamic, int, "CastGeneral", """line 10, column 28 of dart:collection/hash_map.dart: """, a.hashCode is int, true); |
typedef bool _Equality<K>(K a, K b); |
typedef int _Hasher<K>(K object); |
abstract class HashMap<K, V> implements Map<K, V> {external factory HashMap({ |
@@ -10,7 +10,7 @@ part of dart.collection; |
factory HashMap.from(Map other) { |
HashMap<K, V> result = new HashMap<K, V>(); |
other.forEach((k, v) { |
- result[k] = DDC$RT.cast(v, dynamic, V, "CastGeneral", """line 87, column 40 of dart:collection/hash_map.dart: """, v is V, false); |
+ result[k] = DEVC$RT.cast(v, dynamic, V, "CastGeneral", """line 87, column 40 of dart:collection/hash_map.dart: """, v is V, false); |
} |
); |
return result; |