| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library resolution; | 5 library resolution; |
| 6 | 6 |
| 7 import 'dart:collection' show Queue; | 7 import 'dart:collection' show Queue; |
| 8 | 8 |
| 9 import '../constants/expressions.dart'; | 9 import '../constants/expressions.dart'; |
| 10 import '../constants/values.dart'; | 10 import '../constants/values.dart'; |
| 11 import '../dart_backend/dart_backend.dart' show DartBackend; | 11 import '../dart_backend/dart_backend.dart' show DartBackend; |
| 12 import '../dart_types.dart'; | 12 import '../dart_types.dart'; |
| 13 import '../dart2jslib.dart'; | 13 import '../dart2jslib.dart'; |
| 14 import '../tree/tree.dart'; | 14 import '../tree/tree.dart'; |
| 15 import '../scanner/scannerlib.dart'; | 15 import '../scanner/scannerlib.dart'; |
| 16 import '../elements/elements.dart'; | 16 import '../elements/elements.dart'; |
| 17 import '../elements/modelx.dart' | 17 |
| 18 show BaseClassElementX, | 18 import '../elements/modelx.dart' show |
| 19 BaseFunctionElementX, | 19 BaseClassElementX, |
| 20 ConstructorElementX, | 20 BaseFunctionElementX, |
| 21 ErroneousElementX, | 21 ConstructorElementX, |
| 22 FieldElementX, | 22 ErroneousElementX, |
| 23 FormalElementX, | 23 ErroneousFieldElementX, |
| 24 FunctionElementX, | 24 FieldElementX, |
| 25 FunctionSignatureX, | 25 FormalElementX, |
| 26 InitializingFormalElementX, | 26 FunctionElementX, |
| 27 LabelDefinitionX, | 27 FunctionSignatureX, |
| 28 LocalFunctionElementX, | 28 InitializingFormalElementX, |
| 29 LocalParameterElementX, | 29 JumpTargetX, |
| 30 LocalVariableElementX, | 30 LabelDefinitionX, |
| 31 MetadataAnnotationX, | 31 LocalFunctionElementX, |
| 32 MixinApplicationElementX, | 32 LocalParameterElementX, |
| 33 ParameterElementX, | 33 LocalVariableElementX, |
| 34 ParameterMetadataAnnotation, | 34 MetadataAnnotationX, |
| 35 SynthesizedConstructorElementX, | 35 MixinApplicationElementX, |
| 36 JumpTargetX, | 36 ParameterElementX, |
| 37 TypedefElementX, | 37 ParameterMetadataAnnotation, |
| 38 TypeVariableElementX, | 38 SynthesizedConstructorElementX, |
| 39 VariableElementX, | 39 TypeVariableElementX, |
| 40 VariableList; | 40 TypedefElementX, |
| 41 VariableElementX, |
| 42 VariableList; |
| 43 |
| 41 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; | 44 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; |
| 42 import '../util/util.dart'; | 45 import '../util/util.dart'; |
| 43 | 46 |
| 44 import 'class_members.dart' show MembersCreator; | 47 import 'class_members.dart' show MembersCreator; |
| 45 import 'enum_creator.dart'; | 48 import 'enum_creator.dart'; |
| 46 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; | 49 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; |
| 47 | 50 |
| 48 part 'members.dart'; | 51 part 'members.dart'; |
| 49 part 'registry.dart'; | 52 part 'registry.dart'; |
| 50 part 'scope.dart'; | 53 part 'scope.dart'; |
| 51 part 'signatures.dart'; | 54 part 'signatures.dart'; |
| OLD | NEW |