| 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 '../core_types.dart'; |
| 12 import '../dart_backend/dart_backend.dart' show DartBackend; | 13 import '../dart_backend/dart_backend.dart' show DartBackend; |
| 13 import '../dart_types.dart'; | 14 import '../dart_types.dart'; |
| 14 import '../dart2jslib.dart' hide DynamicAccess; | 15 import '../dart2jslib.dart' hide DynamicAccess; |
| 15 import '../tree/tree.dart'; | 16 import '../tree/tree.dart'; |
| 16 import '../scanner/scannerlib.dart'; | 17 import '../scanner/scannerlib.dart'; |
| 17 import '../elements/elements.dart'; | 18 import '../elements/elements.dart'; |
| 18 | 19 |
| 19 import '../elements/modelx.dart' show | 20 import '../elements/modelx.dart' show |
| 20 BaseClassElementX, | 21 BaseClassElementX, |
| 21 BaseFunctionElementX, | 22 BaseFunctionElementX, |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 part 'members.dart'; | 63 part 'members.dart'; |
| 63 part 'registry.dart'; | 64 part 'registry.dart'; |
| 64 part 'resolution_common.dart'; | 65 part 'resolution_common.dart'; |
| 65 part 'resolution_result.dart'; | 66 part 'resolution_result.dart'; |
| 66 part 'scope.dart'; | 67 part 'scope.dart'; |
| 67 part 'signatures.dart'; | 68 part 'signatures.dart'; |
| 68 part 'tree_elements.dart'; | 69 part 'tree_elements.dart'; |
| 69 part 'typedefs.dart'; | 70 part 'typedefs.dart'; |
| 70 part 'type_resolver.dart'; | 71 part 'type_resolver.dart'; |
| 71 part 'variables.dart'; | 72 part 'variables.dart'; |
| OLD | NEW |