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 'runtime_types.dart'; |
14 import 'scanner/scanner_implementation.dart'; | 15 import 'scanner/scanner_implementation.dart'; |
15 import 'scanner/scannerlib.dart'; | 16 import 'scanner/scannerlib.dart'; |
16 import 'ssa/ssa.dart'; | 17 import 'ssa/ssa.dart'; |
17 import 'string_validator.dart'; | 18 import 'string_validator.dart'; |
18 import 'source_file.dart'; | 19 import 'source_file.dart'; |
19 import 'tree/tree.dart'; | 20 import 'tree/tree.dart'; |
20 import 'universe/universe.dart'; | 21 import 'universe/universe.dart'; |
21 import 'util/characters.dart'; | 22 import 'util/characters.dart'; |
22 import 'util/util.dart'; | 23 import 'util/util.dart'; |
23 import '../compiler.dart' as api; | 24 import '../compiler.dart' as api; |
(...skipping 13 matching lines...) Expand all Loading... |
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 |