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