| 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 '../common/backend_api.dart' show | 9 import '../common/backend_api.dart' show |
| 10 Backend; | 10 Backend; |
| 11 import '../common/registry.dart' show | 11 import '../common/registry.dart' show |
| 12 Registry; | 12 Registry; |
| 13 import '../common/tasks.dart' show | 13 import '../common/tasks.dart' show |
| 14 CompilerTask, | 14 CompilerTask, |
| 15 DeferredAction; | 15 DeferredAction; |
| 16 import '../compiler.dart' show | 16 import '../compiler.dart' show |
| 17 Compiler, | 17 Compiler, |
| 18 isPrivateName; | 18 isPrivateName; |
| 19 import '../compile_time_constants.dart'; | 19 import '../compile_time_constants.dart'; |
| 20 import '../constants/constructors.dart'; | 20 import '../constants/constructors.dart'; |
| 21 import '../constants/expressions.dart'; | 21 import '../constants/expressions.dart'; |
| 22 import '../constants/values.dart'; | 22 import '../constants/values.dart'; |
| 23 import '../core_types.dart'; | 23 import '../core_types.dart'; |
| 24 import '../dart_backend/dart_backend.dart' show DartBackend; | 24 import '../dart_backend/dart_backend.dart' show DartBackend; |
| 25 import '../dart_types.dart'; | 25 import '../dart_types.dart'; |
| 26 import '../diagnostics/invariant.dart' show | 26 import '../diagnostics/invariant.dart' show |
| 27 invariant; | 27 invariant; |
| 28 import '../diagnostics/messages.dart' show MessageKind; |
| 28 import '../diagnostics/spannable.dart' show | 29 import '../diagnostics/spannable.dart' show |
| 29 Spannable; | 30 Spannable; |
| 30 import '../enqueue.dart' show | 31 import '../enqueue.dart' show |
| 31 ResolutionEnqueuer, | 32 ResolutionEnqueuer, |
| 32 WorldImpact; | 33 WorldImpact; |
| 33 import '../tree/tree.dart'; | 34 import '../tree/tree.dart'; |
| 34 import '../scanner/scannerlib.dart'; | 35 import '../scanner/scannerlib.dart'; |
| 35 import '../elements/elements.dart'; | 36 import '../elements/elements.dart'; |
| 36 import '../elements/modelx.dart' show | 37 import '../elements/modelx.dart' show |
| 37 BaseClassElementX, | 38 BaseClassElementX, |
| (...skipping 18 matching lines...) Expand all Loading... |
| 56 MethodElementX, | 57 MethodElementX, |
| 57 MixinApplicationElementX, | 58 MixinApplicationElementX, |
| 58 ParameterElementX, | 59 ParameterElementX, |
| 59 ParameterMetadataAnnotation, | 60 ParameterMetadataAnnotation, |
| 60 SetterElementX, | 61 SetterElementX, |
| 61 SynthesizedConstructorElementX, | 62 SynthesizedConstructorElementX, |
| 62 TypeVariableElementX, | 63 TypeVariableElementX, |
| 63 TypedefElementX, | 64 TypedefElementX, |
| 64 VariableElementX, | 65 VariableElementX, |
| 65 VariableList; | 66 VariableList; |
| 66 import '../messages.dart' show MessageKind; | |
| 67 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; | 67 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; |
| 68 import '../types/types.dart' show TypeMask; | 68 import '../types/types.dart' show TypeMask; |
| 69 import '../util/util.dart'; | 69 import '../util/util.dart'; |
| 70 import '../universe/universe.dart' show | 70 import '../universe/universe.dart' show |
| 71 CallStructure, | 71 CallStructure, |
| 72 Selector, | 72 Selector, |
| 73 SelectorKind, | 73 SelectorKind, |
| 74 UniverseSelector; | 74 UniverseSelector; |
| 75 import '../world.dart' show World; | 75 import '../world.dart' show World; |
| 76 | 76 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 87 part 'members.dart'; | 87 part 'members.dart'; |
| 88 part 'registry.dart'; | 88 part 'registry.dart'; |
| 89 part 'resolution_common.dart'; | 89 part 'resolution_common.dart'; |
| 90 part 'resolution_result.dart'; | 90 part 'resolution_result.dart'; |
| 91 part 'scope.dart'; | 91 part 'scope.dart'; |
| 92 part 'signatures.dart'; | 92 part 'signatures.dart'; |
| 93 part 'tree_elements.dart'; | 93 part 'tree_elements.dart'; |
| 94 part 'typedefs.dart'; | 94 part 'typedefs.dart'; |
| 95 part 'type_resolver.dart'; | 95 part 'type_resolver.dart'; |
| 96 part 'variables.dart'; | 96 part 'variables.dart'; |
| OLD | NEW |