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