Index: tool/input_sdk/lib/collection/linked_hash_map.dart |
diff --git a/tool/input_sdk/lib/collection/linked_hash_map.dart b/tool/input_sdk/lib/collection/linked_hash_map.dart |
index 3b3d31138eeef5a5e8e161b38e24f6b69e4b0d22..91814edf735e78d4d0f23cc6fdf4497addf35653 100644 |
--- a/tool/input_sdk/lib/collection/linked_hash_map.dart |
+++ b/tool/input_sdk/lib/collection/linked_hash_map.dart |
@@ -89,7 +89,7 @@ abstract class LinkedHashMap<K, V> implements HashMap<K, V> { |
*/ |
factory LinkedHashMap.from(Map other) { |
LinkedHashMap<K, V> result = new LinkedHashMap<K, V>(); |
- other.forEach((k, v) { result[k as K] = v as V; }); |
+ other.forEach((k, v) { result[k as Object/*=K*/] = v as Object/*=V*/; }); |
return result; |
} |