| 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 29 matching lines...) Expand all Loading... |
| 40 LoadedLibraries; | 40 LoadedLibraries; |
| 41 import '../mirror_renamer/mirror_renamer.dart'; | 41 import '../mirror_renamer/mirror_renamer.dart'; |
| 42 import '../resolution/tree_elements.dart' show | 42 import '../resolution/tree_elements.dart' show |
| 43 TreeElements, | 43 TreeElements, |
| 44 TreeElementMapping; | 44 TreeElementMapping; |
| 45 import '../tokens/keyword.dart' show | 45 import '../tokens/keyword.dart' show |
| 46 Keyword; | 46 Keyword; |
| 47 import '../tree/tree.dart'; | 47 import '../tree/tree.dart'; |
| 48 import '../universe/selector.dart' show | 48 import '../universe/selector.dart' show |
| 49 Selector; | 49 Selector; |
| 50 import '../universe/universe.dart' show | 50 import '../universe/use.dart' show |
| 51 UniverseSelector; | 51 DynamicUse; |
| 52 import '../universe/world_impact.dart' show | 52 import '../universe/world_impact.dart' show |
| 53 WorldImpact, | 53 WorldImpact, |
| 54 TransformedWorldImpact; | 54 TransformedWorldImpact; |
| 55 import '../util/util.dart'; | 55 import '../util/util.dart'; |
| 56 import 'backend_ast_to_frontend_ast.dart' as backend2frontend; | 56 import 'backend_ast_to_frontend_ast.dart' as backend2frontend; |
| 57 | 57 |
| 58 part 'backend.dart'; | 58 part 'backend.dart'; |
| 59 part 'renamer.dart'; | 59 part 'renamer.dart'; |
| 60 part 'placeholder_collector.dart'; | 60 part 'placeholder_collector.dart'; |
| 61 part 'outputter.dart'; | 61 part 'outputter.dart'; |
| OLD | NEW |