| 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 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 WorldImpact; | 45 WorldImpact; |
| 46 import '../library_loader.dart' show | 46 import '../library_loader.dart' show |
| 47 LoadedLibraries; | 47 LoadedLibraries; |
| 48 import '../mirror_renamer/mirror_renamer.dart'; | 48 import '../mirror_renamer/mirror_renamer.dart'; |
| 49 import '../resolution/tree_elements.dart' show | 49 import '../resolution/tree_elements.dart' show |
| 50 TreeElements, | 50 TreeElements, |
| 51 TreeElementMapping; | 51 TreeElementMapping; |
| 52 import '../tokens/keyword.dart' show | 52 import '../tokens/keyword.dart' show |
| 53 Keyword; | 53 Keyword; |
| 54 import '../tree/tree.dart'; | 54 import '../tree/tree.dart'; |
| 55 import '../universe/selector.dart' show |
| 56 Selector; |
| 55 import '../universe/universe.dart' show | 57 import '../universe/universe.dart' show |
| 56 Selector, | |
| 57 UniverseSelector; | 58 UniverseSelector; |
| 58 import '../util/util.dart'; | 59 import '../util/util.dart'; |
| 59 import 'backend_ast_to_frontend_ast.dart' as backend2frontend; | 60 import 'backend_ast_to_frontend_ast.dart' as backend2frontend; |
| 60 | 61 |
| 61 part 'backend.dart'; | 62 part 'backend.dart'; |
| 62 part 'renamer.dart'; | 63 part 'renamer.dart'; |
| 63 part 'placeholder_collector.dart'; | 64 part 'placeholder_collector.dart'; |
| 64 part 'outputter.dart'; | 65 part 'outputter.dart'; |
| OLD | NEW |