| Index: dart/pkg/compiler/lib/src/resolution/resolution.dart
|
| diff --git a/dart/pkg/compiler/lib/src/resolution/resolution.dart b/dart/pkg/compiler/lib/src/resolution/resolution.dart
|
| index 8c1f86771a53882a2de340119c954ee7835f1d43..a4e517ef41ef76a60674b100ef36fe418303d7ec 100644
|
| --- a/dart/pkg/compiler/lib/src/resolution/resolution.dart
|
| +++ b/dart/pkg/compiler/lib/src/resolution/resolution.dart
|
| @@ -14,30 +14,33 @@ import '../dart2jslib.dart';
|
| import '../tree/tree.dart';
|
| import '../scanner/scannerlib.dart';
|
| import '../elements/elements.dart';
|
| -import '../elements/modelx.dart'
|
| - show BaseClassElementX,
|
| - BaseFunctionElementX,
|
| - ConstructorElementX,
|
| - ErroneousElementX,
|
| - FieldElementX,
|
| - FormalElementX,
|
| - FunctionElementX,
|
| - FunctionSignatureX,
|
| - InitializingFormalElementX,
|
| - LabelDefinitionX,
|
| - LocalFunctionElementX,
|
| - LocalParameterElementX,
|
| - LocalVariableElementX,
|
| - MetadataAnnotationX,
|
| - MixinApplicationElementX,
|
| - ParameterElementX,
|
| - ParameterMetadataAnnotation,
|
| - SynthesizedConstructorElementX,
|
| - JumpTargetX,
|
| - TypedefElementX,
|
| - TypeVariableElementX,
|
| - VariableElementX,
|
| - VariableList;
|
| +
|
| +import '../elements/modelx.dart' show
|
| + BaseClassElementX,
|
| + BaseFunctionElementX,
|
| + ConstructorElementX,
|
| + ErroneousElementX,
|
| + ErroneousFieldElementX,
|
| + FieldElementX,
|
| + FormalElementX,
|
| + FunctionElementX,
|
| + FunctionSignatureX,
|
| + InitializingFormalElementX,
|
| + JumpTargetX,
|
| + LabelDefinitionX,
|
| + LocalFunctionElementX,
|
| + LocalParameterElementX,
|
| + LocalVariableElementX,
|
| + MetadataAnnotationX,
|
| + MixinApplicationElementX,
|
| + ParameterElementX,
|
| + ParameterMetadataAnnotation,
|
| + SynthesizedConstructorElementX,
|
| + TypeVariableElementX,
|
| + TypedefElementX,
|
| + VariableElementX,
|
| + VariableList;
|
| +
|
| import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder;
|
| import '../util/util.dart';
|
|
|
|
|