| Index: sdk/lib/_internal/compiler/implementation/js_emitter/type_test_emitter.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/js_emitter/type_test_emitter.dart b/sdk/lib/_internal/compiler/implementation/js_emitter/type_test_emitter.dart
|
| index 90829b892fd7aa9fc1a6aba1ac3564ec6284dab3..5644edba756093572b1f14daff97913227b01679 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/js_emitter/type_test_emitter.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/js_emitter/type_test_emitter.dart
|
| @@ -233,8 +233,7 @@ class TypeTestEmitter extends CodeEmitterHelper {
|
| // a set of variable points and use this to detect statically/dynamically
|
| // known subtype relations.
|
| Map<FunctionType, bool> getFunctionTypeChecksOn(DartType type) {
|
| - Map<FunctionType, bool> functionTypeMap =
|
| - new LinkedHashMap<FunctionType, bool>();
|
| + Map<FunctionType, bool> functionTypeMap = new Map<FunctionType, bool>();
|
| for (FunctionType functionType in checkedFunctionTypes) {
|
| if (compiler.types.isSubtype(type, functionType)) {
|
| functionTypeMap[functionType] = true;
|
|
|