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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 ParameterElementX, | 42 ParameterElementX, |
43 ParameterMetadataAnnotation, | 43 ParameterMetadataAnnotation, |
44 SetterElementX, | 44 SetterElementX, |
45 SynthesizedConstructorElementX, | 45 SynthesizedConstructorElementX, |
46 TypeVariableElementX, | 46 TypeVariableElementX, |
47 TypedefElementX, | 47 TypedefElementX, |
48 VariableElementX, | 48 VariableElementX, |
49 VariableList; | 49 VariableList; |
50 | 50 |
51 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; | 51 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; |
52 import '../types/types.dart' show TypeMask; | |
53 import '../util/util.dart'; | 52 import '../util/util.dart'; |
54 import '../universe/universe.dart' show | 53 import '../universe/universe.dart' show CallStructure, SelectorKind; |
55 CallStructure, | |
56 SelectorKind, | |
57 UniverseSelector; | |
58 | 54 |
59 import 'access_semantics.dart'; | 55 import 'access_semantics.dart'; |
60 import 'class_members.dart' show MembersCreator; | 56 import 'class_members.dart' show MembersCreator; |
61 import 'enum_creator.dart'; | 57 import 'enum_creator.dart'; |
62 import 'operators.dart'; | 58 import 'operators.dart'; |
63 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; | 59 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; |
64 import 'send_structure.dart'; | 60 import 'send_structure.dart'; |
65 | 61 |
66 part 'class_hierarchy.dart'; | 62 part 'class_hierarchy.dart'; |
67 part 'constructors.dart'; | 63 part 'constructors.dart'; |
68 part 'label_scope.dart'; | 64 part 'label_scope.dart'; |
69 part 'members.dart'; | 65 part 'members.dart'; |
70 part 'registry.dart'; | 66 part 'registry.dart'; |
71 part 'resolution_common.dart'; | 67 part 'resolution_common.dart'; |
72 part 'resolution_result.dart'; | 68 part 'resolution_result.dart'; |
73 part 'scope.dart'; | 69 part 'scope.dart'; |
74 part 'signatures.dart'; | 70 part 'signatures.dart'; |
75 part 'tree_elements.dart'; | 71 part 'tree_elements.dart'; |
76 part 'typedefs.dart'; | 72 part 'typedefs.dart'; |
77 part 'type_resolver.dart'; | 73 part 'type_resolver.dart'; |
78 part 'variables.dart'; | 74 part 'variables.dart'; |
OLD | NEW |