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 11 matching lines...) Expand all Loading... |
22 BaseFunctionElementX, | 22 BaseFunctionElementX, |
23 ConstructorElementX, | 23 ConstructorElementX, |
24 ErroneousConstructorElementX, | 24 ErroneousConstructorElementX, |
25 ErroneousElementX, | 25 ErroneousElementX, |
26 ErroneousFieldElementX, | 26 ErroneousFieldElementX, |
27 ErroneousInitializingFormalElementX, | 27 ErroneousInitializingFormalElementX, |
28 FieldElementX, | 28 FieldElementX, |
29 FormalElementX, | 29 FormalElementX, |
30 FunctionElementX, | 30 FunctionElementX, |
31 FunctionSignatureX, | 31 FunctionSignatureX, |
| 32 GetterElementX, |
32 InitializingFormalElementX, | 33 InitializingFormalElementX, |
33 JumpTargetX, | 34 JumpTargetX, |
34 LabelDefinitionX, | 35 LabelDefinitionX, |
35 LocalFunctionElementX, | 36 LocalFunctionElementX, |
36 LocalParameterElementX, | 37 LocalParameterElementX, |
37 LocalVariableElementX, | 38 LocalVariableElementX, |
38 MetadataAnnotationX, | 39 MetadataAnnotationX, |
39 MethodElementX, | 40 MethodElementX, |
40 MixinApplicationElementX, | 41 MixinApplicationElementX, |
41 ParameterElementX, | 42 ParameterElementX, |
42 ParameterMetadataAnnotation, | 43 ParameterMetadataAnnotation, |
| 44 SetterElementX, |
43 SynthesizedConstructorElementX, | 45 SynthesizedConstructorElementX, |
44 TypeVariableElementX, | 46 TypeVariableElementX, |
45 TypedefElementX, | 47 TypedefElementX, |
46 VariableElementX, | 48 VariableElementX, |
47 VariableList; | 49 VariableList; |
48 | 50 |
49 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; | 51 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; |
50 import '../util/util.dart'; | 52 import '../util/util.dart'; |
51 import '../universe/universe.dart' show CallStructure, SelectorKind; | 53 import '../universe/universe.dart' show CallStructure, SelectorKind; |
52 | 54 |
(...skipping 10 matching lines...) Expand all Loading... |
63 part 'members.dart'; | 65 part 'members.dart'; |
64 part 'registry.dart'; | 66 part 'registry.dart'; |
65 part 'resolution_common.dart'; | 67 part 'resolution_common.dart'; |
66 part 'resolution_result.dart'; | 68 part 'resolution_result.dart'; |
67 part 'scope.dart'; | 69 part 'scope.dart'; |
68 part 'signatures.dart'; | 70 part 'signatures.dart'; |
69 part 'tree_elements.dart'; | 71 part 'tree_elements.dart'; |
70 part 'typedefs.dart'; | 72 part 'typedefs.dart'; |
71 part 'type_resolver.dart'; | 73 part 'type_resolver.dart'; |
72 part 'variables.dart'; | 74 part 'variables.dart'; |
OLD | NEW |