| Index: sdk/lib/_internal/compiler/implementation/inferrer/type_graph_inferrer.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/inferrer/type_graph_inferrer.dart b/sdk/lib/_internal/compiler/implementation/inferrer/type_graph_inferrer.dart
|
| index 2eb6270eac9c12246c1014f513f8420f033c18a8..3c2a39ccf81c6f29a885eef917a695736c76bf85 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/inferrer/type_graph_inferrer.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/inferrer/type_graph_inferrer.dart
|
| @@ -4,7 +4,7 @@
|
|
|
| library type_graph_inferrer;
|
|
|
| -import 'dart:collection' show Queue, LinkedHashSet, IterableBase, HashMap;
|
| +import 'dart:collection' show Queue, IterableBase;
|
| import '../dart_types.dart' show DartType, InterfaceType, TypeKind;
|
| import '../elements/elements.dart';
|
| import '../tree/tree.dart' show LiteralList, Node;
|
| @@ -744,7 +744,7 @@ class TypeGraphInferrerEngine
|
| int length = mapping.selectors.length;
|
| max = length > max ? length : max;
|
| Set<Element> set = methodSizes.putIfAbsent(
|
| - length, () => new LinkedHashSet<Element>());
|
| + length, () => new Set<Element>());
|
| set.add(element);
|
| });
|
|
|
|
|