| Index: sdk/lib/_internal/compiler/implementation/universe/function_set.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/universe/function_set.dart b/sdk/lib/_internal/compiler/implementation/universe/function_set.dart
|
| index dc30ef10e267ba3a4cf2d0e38df8cc74b4506e45..4375528555718f4098a8e9901a15a520135e5021 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/universe/function_set.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/universe/function_set.dart
|
| @@ -73,7 +73,7 @@ class FunctionSetNode {
|
| // compact than a hash set. Once we get enough elements, we change
|
| // the representation to be a set to get faster contains checks.
|
| static const int MAX_ELEMENTS_IN_LIST = 8;
|
| - Collection<Element> elements = <Element>[];
|
| + var elements = <Element>[];
|
| bool isList = true;
|
|
|
| FunctionSetNode(this.name);
|
|
|