| Index: pkg/compiler/lib/src/universe/use.dart
|
| diff --git a/pkg/compiler/lib/src/universe/use.dart b/pkg/compiler/lib/src/universe/use.dart
|
| index 197a622fa866959a84e81a5a2d05f64d3cd4e6d6..57d27e51f012c6c4682fbaecbafa65db140a4c26 100644
|
| --- a/pkg/compiler/lib/src/universe/use.dart
|
| +++ b/pkg/compiler/lib/src/universe/use.dart
|
| @@ -19,12 +19,7 @@ library dart2js.universe.use;
|
| import '../closure.dart' show BoxFieldElement;
|
| import '../common.dart';
|
| import '../elements/types.dart';
|
| -import '../elements/elements.dart'
|
| - show
|
| - ConstructorBodyElement,
|
| - Element,
|
| - Entity,
|
| - LocalFunctionElement;
|
| +import '../elements/elements.dart' show ConstructorBodyElement, Element;
|
| import '../elements/entities.dart';
|
| import '../util/util.dart' show Hashing;
|
| import '../world.dart' show World;
|
| @@ -323,7 +318,7 @@ class StaticUse {
|
| }
|
|
|
| /// Read of a local function [element].
|
| - factory StaticUse.closure(LocalFunctionElement element) {
|
| + factory StaticUse.closure(Local element) {
|
| return new StaticUse.internal(element, StaticUseKind.CLOSURE);
|
| }
|
|
|
|
|