| 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'; | 9 import '../dart2jslib.dart'; |
| 10 import '../dart_types.dart'; | 10 import '../dart_types.dart'; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 LabelElementX, | 21 LabelElementX, |
| 22 TargetElementX, | 22 TargetElementX, |
| 23 MixinApplicationElementX, | 23 MixinApplicationElementX, |
| 24 ParameterElementX, | 24 ParameterElementX, |
| 25 TypeVariableElementX, | 25 TypeVariableElementX, |
| 26 TypedefElementX, | 26 TypedefElementX, |
| 27 SynthesizedConstructorElementX, | 27 SynthesizedConstructorElementX, |
| 28 MetadataAnnotationX, | 28 MetadataAnnotationX, |
| 29 ParameterMetadataAnnotation, | 29 ParameterMetadataAnnotation, |
| 30 MetadataContainer; | 30 MetadataContainer; |
| 31 import '../helpers/helpers.dart'; |
| 31 import '../util/util.dart'; | 32 import '../util/util.dart'; |
| 32 | 33 |
| 33 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; | 34 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; |
| 34 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; | 35 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; |
| 35 import 'class_members.dart' show MembersCreator; | 36 import 'class_members.dart' show MembersCreator; |
| 36 import '../dart_backend/dart_backend.dart' show DartBackend; | 37 import '../dart_backend/dart_backend.dart' show DartBackend; |
| 37 | 38 |
| 38 part 'members.dart'; | 39 part 'members.dart'; |
| 39 part 'scope.dart'; | 40 part 'scope.dart'; |
| 40 part 'signatures.dart'; | 41 part 'signatures.dart'; |
| OLD | NEW |