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 BaseFunctionElementX, | |
19 ConstructorElementX, | |
20 ErroneousElementX, | |
21 FieldElementX, | |
22 FormalElementX, | |
23 FunctionElementX, | |
24 FunctionSignatureX, | |
25 InitializingFormalElementX, | |
26 LabelDefinitionX, | |
27 LocalFunctionElementX, | |
28 LocalParameterElementX, | |
29 LocalVariableElementX, | |
30 MetadataAnnotationX, | |
31 MixinApplicationElementX, | |
32 ParameterElementX, | |
33 ParameterMetadataAnnotation, | |
34 SynthesizedConstructorElementX, | |
35 JumpTargetX, | |
36 TypedefElementX, | |
37 TypeVariableElementX, | |
38 VariableElementX, | |
39 VariableList; | |
40 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; | |
41 import '../util/util.dart'; | |
42 | |
43 import 'class_members.dart' show MembersCreator; | |
44 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; | |
45 | |
46 part 'members.dart'; | |
47 part 'registry.dart'; | |
48 part 'scope.dart'; | |
49 part 'signatures.dart'; | |
OLD | NEW |