OLD | NEW |
| (Empty) |
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 | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 library resolution; | |
6 | |
7 import 'dart:collection' show Queue; | |
8 | |
9 import '../constants/expressions.dart'; | |
10 import '../constants/values.dart'; | |
11 import '../dart_backend/dart_backend.dart' show DartBackend; | |
12 import '../dart_types.dart'; | |
13 import '../dart2jslib.dart'; | |
14 import '../tree/tree.dart'; | |
15 import '../elements/elements.dart'; | |
16 import '../elements/modelx.dart' | |
17 show BaseClassElementX, | |
18 ConstructorElementX, | |
19 ErroneousElementX, | |
20 FieldElementX, | |
21 FormalElementX, | |
22 FunctionElementX, | |
23 FunctionSignatureX, | |
24 InitializingFormalElementX, | |
25 LabelDefinitionX, | |
26 LocalFunctionElementX, | |
27 LocalParameterElementX, | |
28 LocalVariableElementX, | |
29 MetadataAnnotationX, | |
30 MixinApplicationElementX, | |
31 ParameterElementX, | |
32 ParameterMetadataAnnotation, | |
33 SynthesizedConstructorElementX, | |
34 JumpTargetX, | |
35 TypedefElementX, | |
36 TypeVariableElementX, | |
37 VariableElementX, | |
38 VariableList; | |
39 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; | |
40 import '../util/util.dart'; | |
41 | |
42 import 'class_members.dart' show MembersCreator; | |
43 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; | |
44 | |
45 part 'members.dart'; | |
46 part 'registry.dart'; | |
47 part 'scope.dart'; | |
48 part 'signatures.dart'; | |
OLD | NEW |