| 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 CompilerOutputProvider; |
| 11 CompilerOutputProvider; | |
| 12 import '../common.dart'; | 11 import '../common.dart'; |
| 13 import '../common/backend_api.dart' show | 12 import '../common/backend_api.dart' show Backend, ImpactTransformer; |
| 14 Backend, | 13 import '../common/codegen.dart' show CodegenWorkItem; |
| 15 ImpactTransformer; | 14 import '../common/names.dart' show Selectors, Uris; |
| 16 import '../common/codegen.dart' show | 15 import '../common/registry.dart' show Registry; |
| 17 CodegenWorkItem; | 16 import '../common/resolution.dart' show Resolution, ResolutionImpact; |
| 18 import '../common/names.dart' show | 17 import '../common/tasks.dart' show CompilerTask; |
| 19 Selectors, | 18 import '../compiler.dart' show Compiler; |
| 20 Uris; | |
| 21 import '../common/registry.dart' show | |
| 22 Registry; | |
| 23 import '../common/resolution.dart' show | |
| 24 Resolution, | |
| 25 ResolutionImpact; | |
| 26 import '../common/tasks.dart' show | |
| 27 CompilerTask; | |
| 28 import '../compiler.dart' show | |
| 29 Compiler; | |
| 30 import '../compile_time_constants.dart'; | 19 import '../compile_time_constants.dart'; |
| 31 import '../constants/constant_system.dart'; | 20 import '../constants/constant_system.dart'; |
| 32 import '../constants/expressions.dart'; | 21 import '../constants/expressions.dart'; |
| 33 import '../constants/values.dart'; | 22 import '../constants/values.dart'; |
| 34 import '../dart_types.dart'; | 23 import '../dart_types.dart'; |
| 35 import '../elements/elements.dart'; | 24 import '../elements/elements.dart'; |
| 36 import '../enqueue.dart' show | 25 import '../enqueue.dart' show Enqueuer, ResolutionEnqueuer; |
| 37 Enqueuer, | 26 import '../library_loader.dart' show LoadedLibraries; |
| 38 ResolutionEnqueuer; | |
| 39 import '../library_loader.dart' show | |
| 40 LoadedLibraries; | |
| 41 import '../mirror_renamer/mirror_renamer.dart'; | 27 import '../mirror_renamer/mirror_renamer.dart'; |
| 42 import '../resolution/tree_elements.dart' show | 28 import '../resolution/tree_elements.dart' show TreeElements, TreeElementMapping; |
| 43 TreeElements, | 29 import '../tokens/keyword.dart' show Keyword; |
| 44 TreeElementMapping; | |
| 45 import '../tokens/keyword.dart' show | |
| 46 Keyword; | |
| 47 import '../tree/tree.dart'; | 30 import '../tree/tree.dart'; |
| 48 import '../universe/selector.dart' show | 31 import '../universe/selector.dart' show Selector; |
| 49 Selector; | 32 import '../universe/use.dart' show DynamicUse, TypeUse, TypeUseKind; |
| 50 import '../universe/use.dart' show | 33 import '../universe/world_impact.dart' show WorldImpact, TransformedWorldImpact; |
| 51 DynamicUse, | |
| 52 TypeUse, | |
| 53 TypeUseKind; | |
| 54 import '../universe/world_impact.dart' show | |
| 55 WorldImpact, | |
| 56 TransformedWorldImpact; | |
| 57 import '../util/util.dart'; | 34 import '../util/util.dart'; |
| 58 import 'backend_ast_to_frontend_ast.dart' as backend2frontend; | 35 import 'backend_ast_to_frontend_ast.dart' as backend2frontend; |
| 59 | 36 |
| 60 part 'backend.dart'; | 37 part 'backend.dart'; |
| 61 part 'renamer.dart'; | 38 part 'renamer.dart'; |
| 62 part 'placeholder_collector.dart'; | 39 part 'placeholder_collector.dart'; |
| 63 part 'outputter.dart'; | 40 part 'outputter.dart'; |
| OLD | NEW |