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'; |
11 import '../constants/values.dart'; | 11 import '../constants/values.dart'; |
12 import '../dart_backend/dart_backend.dart' show DartBackend; | 12 import '../dart_backend/dart_backend.dart' show DartBackend; |
13 import '../dart_types.dart'; | 13 import '../dart_types.dart'; |
14 import '../dart2jslib.dart'; | 14 import '../dart2jslib.dart' hide DynamicAccess; |
15 import '../tree/tree.dart'; | 15 import '../tree/tree.dart'; |
16 import '../scanner/scannerlib.dart'; | 16 import '../scanner/scannerlib.dart'; |
17 import '../elements/elements.dart'; | 17 import '../elements/elements.dart'; |
18 | 18 |
19 import '../elements/modelx.dart' show | 19 import '../elements/modelx.dart' show |
20 BaseClassElementX, | 20 BaseClassElementX, |
21 BaseFunctionElementX, | 21 BaseFunctionElementX, |
22 ConstructorElementX, | 22 ConstructorElementX, |
23 ErroneousConstructorElementX, | 23 ErroneousConstructorElementX, |
24 ErroneousElementX, | 24 ErroneousElementX, |
(...skipping 17 matching lines...) Expand all Loading... |
42 SynthesizedConstructorElementX, | 42 SynthesizedConstructorElementX, |
43 TypeVariableElementX, | 43 TypeVariableElementX, |
44 TypedefElementX, | 44 TypedefElementX, |
45 VariableElementX, | 45 VariableElementX, |
46 VariableList; | 46 VariableList; |
47 | 47 |
48 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; | 48 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; |
49 import '../util/util.dart'; | 49 import '../util/util.dart'; |
50 import '../universe/universe.dart' show CallStructure; | 50 import '../universe/universe.dart' show CallStructure; |
51 | 51 |
| 52 import 'access_semantics.dart'; |
52 import 'class_members.dart' show MembersCreator; | 53 import 'class_members.dart' show MembersCreator; |
53 import 'enum_creator.dart'; | 54 import 'enum_creator.dart'; |
| 55 import 'operators.dart'; |
54 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; | 56 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; |
55 import 'send_structure.dart'; | 57 import 'send_structure.dart'; |
56 | 58 |
57 part 'members.dart'; | 59 part 'members.dart'; |
58 part 'registry.dart'; | 60 part 'registry.dart'; |
59 part 'scope.dart'; | 61 part 'scope.dart'; |
60 part 'signatures.dart'; | 62 part 'signatures.dart'; |
OLD | NEW |