| 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 |
| 10 Backend; |
| 11 import '../common/registry.dart' show |
| 12 Registry; |
| 13 import '../common/tasks.dart' show |
| 14 CompilerTask, |
| 15 DeferredAction; |
| 16 import '../compiler.dart' show |
| 17 Compiler, |
| 18 isPrivateName; |
| 9 import '../compile_time_constants.dart'; | 19 import '../compile_time_constants.dart'; |
| 10 import '../constants/constructors.dart'; | 20 import '../constants/constructors.dart'; |
| 11 import '../constants/expressions.dart'; | 21 import '../constants/expressions.dart'; |
| 12 import '../constants/values.dart'; | 22 import '../constants/values.dart'; |
| 13 import '../core_types.dart'; | 23 import '../core_types.dart'; |
| 14 import '../dart_backend/dart_backend.dart' show DartBackend; | 24 import '../dart_backend/dart_backend.dart' show DartBackend; |
| 15 import '../dart_types.dart'; | 25 import '../dart_types.dart'; |
| 16 import '../dart2jslib.dart' hide DynamicAccess; | 26 import '../diagnostics/invariant.dart' show |
| 27 invariant; |
| 28 import '../diagnostics/spannable.dart' show |
| 29 Spannable; |
| 17 import '../enqueue.dart' show | 30 import '../enqueue.dart' show |
| 18 ResolutionEnqueuer, | 31 ResolutionEnqueuer, |
| 19 WorldImpact; | 32 WorldImpact; |
| 20 import '../tree/tree.dart'; | 33 import '../tree/tree.dart'; |
| 21 import '../scanner/scannerlib.dart'; | 34 import '../scanner/scannerlib.dart'; |
| 22 import '../elements/elements.dart'; | 35 import '../elements/elements.dart'; |
| 23 import '../elements/modelx.dart' show | 36 import '../elements/modelx.dart' show |
| 24 BaseClassElementX, | 37 BaseClassElementX, |
| 25 BaseFunctionElementX, | 38 BaseFunctionElementX, |
| 26 ConstructorElementX, | 39 ConstructorElementX, |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 part 'members.dart'; | 87 part 'members.dart'; |
| 75 part 'registry.dart'; | 88 part 'registry.dart'; |
| 76 part 'resolution_common.dart'; | 89 part 'resolution_common.dart'; |
| 77 part 'resolution_result.dart'; | 90 part 'resolution_result.dart'; |
| 78 part 'scope.dart'; | 91 part 'scope.dart'; |
| 79 part 'signatures.dart'; | 92 part 'signatures.dart'; |
| 80 part 'tree_elements.dart'; | 93 part 'tree_elements.dart'; |
| 81 part 'typedefs.dart'; | 94 part 'typedefs.dart'; |
| 82 part 'type_resolver.dart'; | 95 part 'type_resolver.dart'; |
| 83 part 'variables.dart'; | 96 part 'variables.dart'; |
| OLD | NEW |