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 dart2js; | 5 library dart2js; |
6 | 6 |
7 import 'dart:uri'; | 7 import 'dart:uri'; |
8 | 8 |
9 import 'closure.dart' as closureMapping; | 9 import 'closure.dart' as closureMapping; |
10 import 'dart_backend/dart_backend.dart' as dart_backend; | 10 import 'dart_backend/dart_backend.dart' as dart_backend; |
11 import 'elements/elements.dart'; | 11 import 'elements/elements.dart'; |
12 import 'js_backend/js_backend.dart' as js_backend; | 12 import 'js_backend/js_backend.dart' as js_backend; |
13 import 'native_handler.dart' as native; | 13 import 'native_handler.dart' as native; |
14 import 'scanner/scanner_implementation.dart'; | 14 import 'scanner/scanner_implementation.dart'; |
15 import 'scanner/scannerlib.dart'; | 15 import 'scanner/scannerlib.dart'; |
16 import 'ssa/ssa.dart'; | 16 import 'ssa/ssa.dart'; |
17 import 'string_validator.dart'; | 17 import 'string_validator.dart'; |
18 import 'source_file.dart'; | 18 import 'source_file.dart'; |
19 import 'tree/tree.dart'; | 19 import 'tree/tree.dart'; |
20 import 'universe/universe.dart'; | 20 import 'universe/universe.dart'; |
21 import 'util/characters.dart'; | 21 import 'util/characters.dart'; |
22 import 'util/util.dart'; | 22 import 'util/util.dart'; |
23 import '../compiler.dart' as api; | 23 import '../compiler.dart' as api; |
24 import 'patch_parser.dart'; | 24 import 'patch_parser.dart'; |
25 import 'types/types.dart' as ti; | 25 import 'types/types.dart' as ti; |
26 import 'resolution/resolution.dart'; | 26 import 'resolution/resolution.dart'; |
| 27 import 'js/js.dart' as js; |
27 | 28 |
28 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping; | 29 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping; |
29 export 'scanner/scannerlib.dart' show SourceString, isUserDefinableOperator; | 30 export 'scanner/scannerlib.dart' show SourceString, isUserDefinableOperator; |
30 export 'universe/universe.dart' show Selector; | 31 export 'universe/universe.dart' show Selector; |
31 | 32 |
32 part 'code_buffer.dart'; | 33 part 'code_buffer.dart'; |
33 part 'compile_time_constants.dart'; | 34 part 'compile_time_constants.dart'; |
34 part 'compiler.dart'; | 35 part 'compiler.dart'; |
35 part 'constants.dart'; | 36 part 'constants.dart'; |
36 part 'constant_system.dart'; | 37 part 'constant_system.dart'; |
37 part 'constant_system_dart.dart'; | 38 part 'constant_system_dart.dart'; |
38 part 'diagnostic_listener.dart'; | 39 part 'diagnostic_listener.dart'; |
39 part 'enqueue.dart'; | 40 part 'enqueue.dart'; |
40 part 'library_loader.dart'; | 41 part 'library_loader.dart'; |
41 part 'resolved_visitor.dart'; | 42 part 'resolved_visitor.dart'; |
42 part 'script.dart'; | 43 part 'script.dart'; |
43 part 'tree_validator.dart'; | 44 part 'tree_validator.dart'; |
44 part 'typechecker.dart'; | 45 part 'typechecker.dart'; |
45 part 'warnings.dart'; | 46 part 'warnings.dart'; |
46 part 'world.dart'; | 47 part 'world.dart'; |
OLD | NEW |