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