| 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/expressions.dart'; | 11 import '../constants/expressions.dart'; |
| 11 import '../constants/values.dart'; | 12 import '../constants/values.dart'; |
| 12 import '../core_types.dart'; | 13 import '../core_types.dart'; |
| 13 import '../dart_backend/dart_backend.dart' show DartBackend; | 14 import '../dart_backend/dart_backend.dart' show DartBackend; |
| 14 import '../dart_types.dart'; | 15 import '../dart_types.dart'; |
| 15 import '../dart2jslib.dart' hide DynamicAccess; | 16 import '../dart2jslib.dart' hide DynamicAccess; |
| 16 import '../tree/tree.dart'; | 17 import '../tree/tree.dart'; |
| 17 import '../scanner/scannerlib.dart'; | 18 import '../scanner/scannerlib.dart'; |
| 18 import '../elements/elements.dart'; | 19 import '../elements/elements.dart'; |
| 19 | 20 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 part 'members.dart'; | 70 part 'members.dart'; |
| 70 part 'registry.dart'; | 71 part 'registry.dart'; |
| 71 part 'resolution_common.dart'; | 72 part 'resolution_common.dart'; |
| 72 part 'resolution_result.dart'; | 73 part 'resolution_result.dart'; |
| 73 part 'scope.dart'; | 74 part 'scope.dart'; |
| 74 part 'signatures.dart'; | 75 part 'signatures.dart'; |
| 75 part 'tree_elements.dart'; | 76 part 'tree_elements.dart'; |
| 76 part 'typedefs.dart'; | 77 part 'typedefs.dart'; |
| 77 part 'type_resolver.dart'; | 78 part 'type_resolver.dart'; |
| 78 part 'variables.dart'; | 79 part 'variables.dart'; |
| OLD | NEW |