| Index: tool/input_sdk/patch/collection_patch.dart
|
| diff --git a/tool/input_sdk/patch/collection_patch.dart b/tool/input_sdk/patch/collection_patch.dart
|
| index c06f55287fa27ca6a9a528bb78ee00ad1017680a..6cd3dbae98e0f881248d8e4529b5ac1c07f3908e 100644
|
| --- a/tool/input_sdk/patch/collection_patch.dart
|
| +++ b/tool/input_sdk/patch/collection_patch.dart
|
| @@ -5,7 +5,7 @@
|
| // Patch file for dart:collection classes.
|
| import 'dart:_foreign_helper' show JS;
|
| import 'dart:_js_helper' show
|
| - fillLiteralMap, InternalMap, NoInline, NoThrows, patch;
|
| + fillLiteralMap, InternalMap, NoInline, NoThrows, patch, JsLinkedHashMap;
|
|
|
| @patch
|
| class HashMap<K, V> {
|
| @@ -492,7 +492,7 @@ class LinkedHashMap<K, V> {
|
| if (isValidKey == null) {
|
| if (hashCode == null) {
|
| if (equals == null) {
|
| - return new _LinkedHashMap<K, V>();
|
| + return new JsLinkedHashMap<K, V>.es6();
|
| }
|
| hashCode = _defaultHashCode;
|
| } else {
|
|
|