| 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 FunctionElementX, | 15 show BaseClassElementX, |
| 16 FunctionElementX, |
| 16 ErroneousElementX, | 17 ErroneousElementX, |
| 17 VariableElementX, | 18 VariableElementX, |
| 18 FieldParameterElementX, | 19 FieldParameterElementX, |
| 19 VariableListElementX, | 20 VariableListElementX, |
| 20 FunctionSignatureX, | 21 FunctionSignatureX, |
| 21 LabelElementX, | 22 LabelElementX, |
| 22 TargetElementX, | 23 TargetElementX, |
| 23 MixinApplicationElementX, | 24 MixinApplicationElementX, |
| 24 TypedefElementX, | 25 TypedefElementX, |
| 25 SynthesizedConstructorElementX; | 26 SynthesizedConstructorElementX; |
| 26 import '../util/util.dart'; | 27 import '../util/util.dart'; |
| 27 import '../scanner/scannerlib.dart' show PartialMetadataAnnotation; | 28 import '../scanner/scannerlib.dart' show PartialMetadataAnnotation; |
| 28 | 29 |
| 29 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; | 30 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; |
| 31 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; |
| 30 | 32 |
| 31 part 'members.dart'; | 33 part 'members.dart'; |
| 32 part 'scope.dart'; | 34 part 'scope.dart'; |
| OLD | NEW |