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 5232e4759161edbf4392c59c787ab7fff9367416..ad6d36aa991eef1e2ec4290176394bc15fdc6dfd 100644 |
--- a/test/dart_codegen/expect/collection/hash_map.dart |
+++ b/test/dart_codegen/expect/collection/hash_map.dart |
@@ -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] = DEVC$RT.cast(v, dynamic, V, "CompositeCast", """line 87, column 40 of dart:collection/hash_map.dart: """, v is V, false); |
+ result[DEVC$RT.cast(k, dynamic, K, "CompositeCast", """line 87, column 35 of dart:collection/hash_map.dart: """, k is K, false)] = DEVC$RT.cast(v, dynamic, V, "CompositeCast", """line 87, column 40 of dart:collection/hash_map.dart: """, v is V, false); |
} |
); |
return result; |