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 dart_backend; | 5 library dart_backend; |
6 | 6 |
7 import 'dart:async' show Future; | 7 import 'dart:async' show Future; |
8 import 'dart:math' show max; | 8 import 'dart:math' show max; |
9 | 9 |
10 import '../../compiler.dart' show | 10 import '../../compiler.dart' show |
11 CompilerOutputProvider; | 11 CompilerOutputProvider; |
12 import '../common/backend_api.dart' show | 12 import '../common/backend_api.dart' show |
13 Backend; | 13 Backend; |
14 import '../common/codegen.dart' show | 14 import '../common/codegen.dart' show |
15 CodegenWorkItem; | 15 CodegenWorkItem; |
16 import '../common/names.dart' show | 16 import '../common/names.dart' show |
17 Selectors, | 17 Selectors, |
18 Uris; | 18 Uris; |
19 import '../common/registry.dart' show | 19 import '../common/registry.dart' show |
20 Registry; | 20 Registry; |
21 import '../common/resolution.dart' show | 21 import '../common/resolution.dart' show |
22 Resolution, | 22 Resolution, |
23 ResolutionCallbacks; | 23 ResolutionCallbacks, |
| 24 ResolutionWorldImpact, |
| 25 TransformedWorldImpact; |
24 import '../common/tasks.dart' show | 26 import '../common/tasks.dart' show |
25 CompilerTask; | 27 CompilerTask; |
26 import '../compiler.dart' show | 28 import '../compiler.dart' show |
27 Compiler; | 29 Compiler; |
28 import '../compile_time_constants.dart'; | 30 import '../compile_time_constants.dart'; |
29 import '../constants/constant_system.dart'; | 31 import '../constants/constant_system.dart'; |
30 import '../constants/expressions.dart'; | 32 import '../constants/expressions.dart'; |
31 import '../constants/values.dart'; | 33 import '../constants/values.dart'; |
32 import '../dart_types.dart'; | 34 import '../dart_types.dart'; |
33 import '../diagnostics/diagnostic_listener.dart'; | 35 import '../diagnostics/diagnostic_listener.dart'; |
(...skipping 23 matching lines...) Expand all Loading... |
57 Selector; | 59 Selector; |
58 import '../universe/universe.dart' show | 60 import '../universe/universe.dart' show |
59 UniverseSelector; | 61 UniverseSelector; |
60 import '../util/util.dart'; | 62 import '../util/util.dart'; |
61 import 'backend_ast_to_frontend_ast.dart' as backend2frontend; | 63 import 'backend_ast_to_frontend_ast.dart' as backend2frontend; |
62 | 64 |
63 part 'backend.dart'; | 65 part 'backend.dart'; |
64 part 'renamer.dart'; | 66 part 'renamer.dart'; |
65 part 'placeholder_collector.dart'; | 67 part 'placeholder_collector.dart'; |
66 part 'outputter.dart'; | 68 part 'outputter.dart'; |
OLD | NEW |