| 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 '../dart2jslib.dart' hide Diagnostic; | 9 import '../dart2jslib.dart' hide Diagnostic; |
| 10 import '../dart_types.dart'; | 10 import '../dart_types.dart'; |
| 11 import '../../compiler.dart' show Diagnostic; | 11 import '../../compiler.dart' show Diagnostic; |
| 12 import '../tree/tree.dart'; | 12 import '../tree/tree.dart'; |
| 13 import '../elements/elements.dart'; | 13 import '../elements/elements.dart'; |
| 14 import '../elements/modelx.dart' | 14 import '../elements/modelx.dart' |
| 15 show BaseClassElementX, | 15 show BaseClassElementX, |
| 16 FunctionElementX, | 16 FunctionElementX, |
| 17 ErroneousElementX, | 17 ErroneousElementX, |
| 18 VariableElementX, | 18 VariableElementX, |
| 19 FieldParameterElementX, | 19 FieldParameterElementX, |
| 20 VariableListElementX, | 20 VariableListElementX, |
| 21 FunctionSignatureX, | 21 FunctionSignatureX, |
| 22 LabelElementX, | 22 LabelElementX, |
| 23 TargetElementX, | 23 TargetElementX, |
| 24 MixinApplicationElementX, | 24 MixinApplicationElementX, |
| 25 TypeVariableElementX, |
| 25 TypedefElementX, | 26 TypedefElementX, |
| 26 SynthesizedConstructorElementX; | 27 SynthesizedConstructorElementX; |
| 27 import '../util/util.dart'; | 28 import '../util/util.dart'; |
| 28 import '../scanner/scannerlib.dart' show PartialMetadataAnnotation; | 29 import '../scanner/scannerlib.dart' show PartialMetadataAnnotation; |
| 29 | 30 |
| 30 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; | 31 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; |
| 31 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; | 32 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; |
| 32 | 33 |
| 33 part 'members.dart'; | 34 part 'members.dart'; |
| 34 part 'scope.dart'; | 35 part 'scope.dart'; |
| OLD | NEW |