| 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; | 7 import 'dart:collection' show Queue, LinkedHashMap, LinkedHashSet; |
| 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 FunctionElementX, |
| 16 ErroneousElementX, | 16 ErroneousElementX, |
| 17 VariableElementX, | 17 VariableElementX, |
| 18 FieldParameterElementX, | 18 FieldParameterElementX, |
| 19 VariableListElementX, | 19 VariableListElementX, |
| 20 FunctionSignatureX, | 20 FunctionSignatureX, |
| 21 LabelElementX, | 21 LabelElementX, |
| 22 TargetElementX, | 22 TargetElementX, |
| 23 MixinApplicationElementX; | 23 MixinApplicationElementX; |
| 24 import '../util/util.dart'; | 24 import '../util/util.dart'; |
| 25 import '../scanner/scannerlib.dart' show PartialMetadataAnnotation; | 25 import '../scanner/scannerlib.dart' show PartialMetadataAnnotation; |
| 26 | 26 |
| 27 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; | 27 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; |
| 28 | 28 |
| 29 part 'members.dart'; | 29 part 'members.dart'; |
| 30 part 'scope.dart'; | 30 part 'scope.dart'; |
| OLD | NEW |