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 | |
10 import '../../compiler.dart' show CompilerOutputProvider; | |
11 import '../elements/elements.dart'; | 9 import '../elements/elements.dart'; |
12 import '../dart2jslib.dart'; | 10 import '../dart2jslib.dart'; |
| 11 import '../library_loader.dart' show LoadedLibraries; |
13 import '../dart_types.dart'; | 12 import '../dart_types.dart'; |
14 import '../diagnostic_listener.dart'; | 13 import '../tree/tree.dart'; |
15 import '../compile_time_constants.dart'; | 14 import '../compile_time_constants.dart'; |
16 import '../constants/constant_system.dart'; | 15 import '../constants/constant_system.dart'; |
17 import '../constants/expressions.dart'; | 16 import '../constants/expressions.dart'; |
18 import '../constants/values.dart'; | 17 import '../constants/values.dart'; |
19 import '../enqueue.dart' show | 18 import '../universe/universe.dart' show UniverseSelector; |
20 Enqueuer, | 19 import '../util/util.dart'; |
21 ResolutionEnqueuer, | |
22 WorldImpact; | |
23 import '../library_loader.dart' show LoadedLibraries; | |
24 import '../messages.dart' show MessageKind; | |
25 import '../mirror_renamer/mirror_renamer.dart'; | 20 import '../mirror_renamer/mirror_renamer.dart'; |
26 import '../resolution/resolution.dart' show | |
27 TreeElements, | |
28 TreeElementMapping; | |
29 import '../scanner/scannerlib.dart' show | |
30 StringToken, | |
31 Keyword, | |
32 OPEN_PAREN_INFO, | |
33 CLOSE_PAREN_INFO, | |
34 SEMICOLON_INFO, | |
35 IDENTIFIER_INFO; | |
36 import '../tree/tree.dart'; | |
37 import '../universe/universe.dart' show | |
38 Selector, | |
39 UniverseSelector; | |
40 import '../util/util.dart'; | |
41 import 'backend_ast_to_frontend_ast.dart' as backend2frontend; | 21 import 'backend_ast_to_frontend_ast.dart' as backend2frontend; |
| 22 import '../../compiler.dart' show CompilerOutputProvider; |
| 23 |
| 24 import '../scanner/scannerlib.dart' show StringToken, |
| 25 Keyword, |
| 26 OPEN_PAREN_INFO, |
| 27 CLOSE_PAREN_INFO, |
| 28 SEMICOLON_INFO, |
| 29 IDENTIFIER_INFO; |
42 | 30 |
43 part 'backend.dart'; | 31 part 'backend.dart'; |
44 part 'renamer.dart'; | 32 part 'renamer.dart'; |
45 part 'placeholder_collector.dart'; | 33 part 'placeholder_collector.dart'; |
46 part 'outputter.dart'; | 34 part 'outputter.dart'; |
OLD | NEW |