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 import '../elements/elements.dart'; | 9 import '../elements/elements.dart'; |
10 import '../dart2jslib.dart'; | 10 import '../dart2jslib.dart'; |
11 import '../library_loader.dart' show LoadedLibraries; | 11 import '../library_loader.dart' show LoadedLibraries; |
12 import '../dart_types.dart'; | 12 import '../dart_types.dart'; |
13 import '../tree/tree.dart'; | 13 import '../tree/tree.dart'; |
14 import '../compile_time_constants.dart'; | 14 import '../compile_time_constants.dart'; |
15 import '../constants/constant_system.dart'; | 15 import '../constants/constant_system.dart'; |
16 import '../constants/expressions.dart'; | 16 import '../constants/expressions.dart'; |
| 17 import '../constants/values.dart'; |
17 import '../util/util.dart'; | 18 import '../util/util.dart'; |
18 import '../mirror_renamer/mirror_renamer.dart'; | 19 import '../mirror_renamer/mirror_renamer.dart'; |
19 import 'backend_ast_to_frontend_ast.dart' as backend2frontend; | 20 import 'backend_ast_to_frontend_ast.dart' as backend2frontend; |
20 import '../../compiler.dart' show CompilerOutputProvider; | 21 import '../../compiler.dart' show CompilerOutputProvider; |
21 | 22 |
22 import '../scanner/scannerlib.dart' show StringToken, | 23 import '../scanner/scannerlib.dart' show StringToken, |
23 Keyword, | 24 Keyword, |
24 OPEN_PAREN_INFO, | 25 OPEN_PAREN_INFO, |
25 CLOSE_PAREN_INFO, | 26 CLOSE_PAREN_INFO, |
26 SEMICOLON_INFO, | 27 SEMICOLON_INFO, |
27 IDENTIFIER_INFO; | 28 IDENTIFIER_INFO; |
28 | 29 |
29 part 'backend.dart'; | 30 part 'backend.dart'; |
30 part 'renamer.dart'; | 31 part 'renamer.dart'; |
31 part 'placeholder_collector.dart'; | 32 part 'placeholder_collector.dart'; |
32 part 'outputter.dart'; | 33 part 'outputter.dart'; |
OLD | NEW |