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/constructors.dart'; | 10 import '../constants/constructors.dart'; |
11 import '../constants/expressions.dart'; | 11 import '../constants/expressions.dart'; |
12 import '../constants/values.dart'; | 12 import '../constants/values.dart'; |
13 import '../core_types.dart'; | 13 import '../core_types.dart'; |
14 import '../dart_backend/dart_backend.dart' show DartBackend; | 14 import '../dart_backend/dart_backend.dart' show DartBackend; |
15 import '../dart_types.dart'; | 15 import '../dart_types.dart'; |
16 import '../dart2jslib.dart' hide DynamicAccess; | 16 import '../dart2jslib.dart' hide DynamicAccess; |
| 17 import '../enqueue.dart' show |
| 18 ResolutionEnqueuer, |
| 19 WorldImpact; |
17 import '../tree/tree.dart'; | 20 import '../tree/tree.dart'; |
18 import '../scanner/scannerlib.dart'; | 21 import '../scanner/scannerlib.dart'; |
19 import '../elements/elements.dart'; | 22 import '../elements/elements.dart'; |
20 | |
21 import '../elements/modelx.dart' show | 23 import '../elements/modelx.dart' show |
22 BaseClassElementX, | 24 BaseClassElementX, |
23 BaseFunctionElementX, | 25 BaseFunctionElementX, |
24 ConstructorElementX, | 26 ConstructorElementX, |
25 ErroneousConstructorElementX, | 27 ErroneousConstructorElementX, |
26 ErroneousElementX, | 28 ErroneousElementX, |
27 ErroneousFieldElementX, | 29 ErroneousFieldElementX, |
28 ErroneousInitializingFormalElementX, | 30 ErroneousInitializingFormalElementX, |
29 FieldElementX, | 31 FieldElementX, |
30 FormalElementX, | 32 FormalElementX, |
(...skipping 10 matching lines...) Expand all Loading... |
41 MethodElementX, | 43 MethodElementX, |
42 MixinApplicationElementX, | 44 MixinApplicationElementX, |
43 ParameterElementX, | 45 ParameterElementX, |
44 ParameterMetadataAnnotation, | 46 ParameterMetadataAnnotation, |
45 SetterElementX, | 47 SetterElementX, |
46 SynthesizedConstructorElementX, | 48 SynthesizedConstructorElementX, |
47 TypeVariableElementX, | 49 TypeVariableElementX, |
48 TypedefElementX, | 50 TypedefElementX, |
49 VariableElementX, | 51 VariableElementX, |
50 VariableList; | 52 VariableList; |
51 | 53 import '../messages.dart' show MessageKind; |
52 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; | 54 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; |
53 import '../types/types.dart' show TypeMask; | 55 import '../types/types.dart' show TypeMask; |
54 import '../util/util.dart'; | 56 import '../util/util.dart'; |
55 import '../universe/universe.dart' show | 57 import '../universe/universe.dart' show |
56 CallStructure, | 58 CallStructure, |
| 59 Selector, |
57 SelectorKind, | 60 SelectorKind, |
58 UniverseSelector; | 61 UniverseSelector; |
| 62 import '../world.dart' show World; |
59 | 63 |
60 import 'access_semantics.dart'; | 64 import 'access_semantics.dart'; |
61 import 'class_members.dart' show MembersCreator; | 65 import 'class_members.dart' show MembersCreator; |
62 import 'enum_creator.dart'; | 66 import 'enum_creator.dart'; |
63 import 'operators.dart'; | 67 import 'operators.dart'; |
64 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; | 68 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; |
65 import 'send_structure.dart'; | 69 import 'send_structure.dart'; |
66 | 70 |
67 part 'class_hierarchy.dart'; | 71 part 'class_hierarchy.dart'; |
68 part 'constructors.dart'; | 72 part 'constructors.dart'; |
69 part 'label_scope.dart'; | 73 part 'label_scope.dart'; |
70 part 'members.dart'; | 74 part 'members.dart'; |
71 part 'registry.dart'; | 75 part 'registry.dart'; |
72 part 'resolution_common.dart'; | 76 part 'resolution_common.dart'; |
73 part 'resolution_result.dart'; | 77 part 'resolution_result.dart'; |
74 part 'scope.dart'; | 78 part 'scope.dart'; |
75 part 'signatures.dart'; | 79 part 'signatures.dart'; |
76 part 'tree_elements.dart'; | 80 part 'tree_elements.dart'; |
77 part 'typedefs.dart'; | 81 part 'typedefs.dart'; |
78 part 'type_resolver.dart'; | 82 part 'type_resolver.dart'; |
79 part 'variables.dart'; | 83 part 'variables.dart'; |
OLD | NEW |