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 '../compile_time_constants.dart'; | 9 import '../compile_time_constants.dart'; |
10 import '../constants/expressions.dart'; | 10 import '../constants/expressions.dart'; |
(...skipping 17 matching lines...) Expand all Loading... |
28 FormalElementX, | 28 FormalElementX, |
29 FunctionElementX, | 29 FunctionElementX, |
30 FunctionSignatureX, | 30 FunctionSignatureX, |
31 InitializingFormalElementX, | 31 InitializingFormalElementX, |
32 JumpTargetX, | 32 JumpTargetX, |
33 LabelDefinitionX, | 33 LabelDefinitionX, |
34 LocalFunctionElementX, | 34 LocalFunctionElementX, |
35 LocalParameterElementX, | 35 LocalParameterElementX, |
36 LocalVariableElementX, | 36 LocalVariableElementX, |
37 MetadataAnnotationX, | 37 MetadataAnnotationX, |
| 38 MethodElementX, |
38 MixinApplicationElementX, | 39 MixinApplicationElementX, |
39 ParameterElementX, | 40 ParameterElementX, |
40 ParameterMetadataAnnotation, | 41 ParameterMetadataAnnotation, |
41 SynthesizedConstructorElementX, | 42 SynthesizedConstructorElementX, |
42 TypeVariableElementX, | 43 TypeVariableElementX, |
43 TypedefElementX, | 44 TypedefElementX, |
44 VariableElementX, | 45 VariableElementX, |
45 VariableList; | 46 VariableList; |
46 | 47 |
47 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; | 48 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; |
48 import '../util/util.dart'; | 49 import '../util/util.dart'; |
49 import '../universe/universe.dart' show CallStructure; | 50 import '../universe/universe.dart' show CallStructure; |
50 | 51 |
51 import 'class_members.dart' show MembersCreator; | 52 import 'class_members.dart' show MembersCreator; |
52 import 'enum_creator.dart'; | 53 import 'enum_creator.dart'; |
53 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; | 54 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; |
54 | 55 |
55 part 'members.dart'; | 56 part 'members.dart'; |
56 part 'registry.dart'; | 57 part 'registry.dart'; |
57 part 'scope.dart'; | 58 part 'scope.dart'; |
58 part 'signatures.dart'; | 59 part 'signatures.dart'; |
OLD | NEW |