| Index: sdk/lib/_internal/lib/constant_map.dart
|
| diff --git a/sdk/lib/_internal/lib/constant_map.dart b/sdk/lib/_internal/lib/constant_map.dart
|
| index f13f30911b03c4078dc9c18a24bb92a1ee437742..c6b6a95ed124a0a787cfaeb0d45f23bc3bf41708 100644
|
| --- a/sdk/lib/_internal/lib/constant_map.dart
|
| +++ b/sdk/lib/_internal/lib/constant_map.dart
|
| @@ -103,8 +103,7 @@ class GeneralConstantMap<K, V> extends ConstantMap<K, V> {
|
| // have not been defined when constants are created.
|
| Map<K, V> _getMap() {
|
| if (JS('bool', r'!this.$map')) {
|
| - Map backingMap =
|
| - new LinkedHashMap<K, V>(equals: identical, hashCode: objectHashCode);
|
| + Map backingMap = new LinkedHashMap<K, V>();
|
| JS('', r'this.$map = #', fillLiteralMap(_jsData, backingMap));
|
| }
|
| return JS('Map', r'this.$map');
|
|
|