Chromium Code Reviews| Index: runtime/lib/immutable_map.dart |
| =================================================================== |
| --- runtime/lib/immutable_map.dart (revision 1806) |
| +++ runtime/lib/immutable_map.dart (working copy) |
| @@ -6,7 +6,7 @@ |
| class ImmutableMap<K, V> implements Map<K, V> { |
| final ImmutableArray kvPairs_; |
| - const ImmutableMap(ImmutableArray keyValuePairs) |
| + const ImmutableMap._create(ImmutableArray keyValuePairs) |
| : kvPairs_ = keyValuePairs; |