| 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 import '../common/registry.dart' show | 19 import '../common/registry.dart' show |
| 19 Registry; | 20 Registry; |
| 20 import '../common/resolution.dart' show | 21 import '../common/resolution.dart' show |
| 21 ResolutionCallbacks; | 22 ResolutionCallbacks; |
| 22 import '../common/tasks.dart' show | 23 import '../common/tasks.dart' show |
| 23 CompilerTask; | 24 CompilerTask; |
| 24 import '../compiler.dart' show | 25 import '../compiler.dart' show |
| 25 Compiler, | 26 Compiler, |
| 26 isPrivateName; | 27 isPrivateName; |
| 27 import '../compile_time_constants.dart'; | 28 import '../compile_time_constants.dart'; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 39 Spannable, | 40 Spannable, |
| 40 SpannableAssertionFailure; | 41 SpannableAssertionFailure; |
| 41 import '../elements/elements.dart'; | 42 import '../elements/elements.dart'; |
| 42 import '../enqueue.dart' show | 43 import '../enqueue.dart' show |
| 43 Enqueuer, | 44 Enqueuer, |
| 44 ResolutionEnqueuer, | 45 ResolutionEnqueuer, |
| 45 WorldImpact; | 46 WorldImpact; |
| 46 import '../library_loader.dart' show | 47 import '../library_loader.dart' show |
| 47 LoadedLibraries; | 48 LoadedLibraries; |
| 48 import '../mirror_renamer/mirror_renamer.dart'; | 49 import '../mirror_renamer/mirror_renamer.dart'; |
| 49 import '../resolution/operators.dart' show | |
| 50 BinaryOperator; | |
| 51 import '../resolution/tree_elements.dart' show | 50 import '../resolution/tree_elements.dart' show |
| 52 TreeElements, | 51 TreeElements, |
| 53 TreeElementMapping; | 52 TreeElementMapping; |
| 54 import '../scanner/scannerlib.dart' show | 53 import '../scanner/scannerlib.dart' show |
| 55 StringToken, | 54 StringToken, |
| 56 Keyword, | 55 Keyword, |
| 57 OPEN_PAREN_INFO, | 56 OPEN_PAREN_INFO, |
| 58 CLOSE_PAREN_INFO, | 57 CLOSE_PAREN_INFO, |
| 59 SEMICOLON_INFO, | 58 SEMICOLON_INFO, |
| 60 IDENTIFIER_INFO; | 59 IDENTIFIER_INFO; |
| 61 import '../tree/tree.dart'; | 60 import '../tree/tree.dart'; |
| 62 import '../universe/universe.dart' show | 61 import '../universe/universe.dart' show |
| 63 Selector, | 62 Selector, |
| 64 UniverseSelector; | 63 UniverseSelector; |
| 65 import '../util/util.dart'; | 64 import '../util/util.dart'; |
| 66 import 'backend_ast_to_frontend_ast.dart' as backend2frontend; | 65 import 'backend_ast_to_frontend_ast.dart' as backend2frontend; |
| 67 | 66 |
| 68 part 'backend.dart'; | 67 part 'backend.dart'; |
| 69 part 'renamer.dart'; | 68 part 'renamer.dart'; |
| 70 part 'placeholder_collector.dart'; | 69 part 'placeholder_collector.dart'; |
| 71 part 'outputter.dart'; | 70 part 'outputter.dart'; |
| OLD | NEW |