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 js_backend; | 5 library js_backend; |
6 | 6 |
7 import '../closure.dart'; | 7 import '../closure.dart'; |
8 import '../../compiler.dart' as api; | 8 import '../../compiler.dart' as api; |
9 import '../elements/elements.dart'; | 9 import '../elements/elements.dart'; |
10 import '../dart2jslib.dart' hide Selector; | 10 import '../dart2jslib.dart' hide Selector; |
| 11 import '../js/js.dart' as js; |
11 import '../native_handler.dart' as native; | 12 import '../native_handler.dart' as native; |
12 import 'runtime_types.dart'; | 13 import 'runtime_types.dart'; |
13 import '../source_file.dart'; | 14 import '../source_file.dart'; |
14 import '../source_map_builder.dart'; | 15 import '../source_map_builder.dart'; |
15 import '../ssa/ssa.dart'; | 16 import '../ssa/ssa.dart'; |
16 import '../tree/tree.dart'; | 17 import '../tree/tree.dart'; |
17 import '../universe/universe.dart'; | 18 import '../universe/universe.dart'; |
18 import '../util/characters.dart'; | 19 import '../util/characters.dart'; |
19 import '../util/util.dart'; | 20 import '../util/util.dart'; |
20 | 21 |
21 part 'backend.dart'; | 22 part 'backend.dart'; |
22 part 'constant_emitter.dart'; | 23 part 'constant_emitter.dart'; |
23 part 'constant_system_javascript.dart'; | 24 part 'constant_system_javascript.dart'; |
24 part 'emitter.dart'; | 25 part 'emitter.dart'; |
25 part 'emitter_no_eval.dart'; | 26 part 'emitter_no_eval.dart'; |
26 part 'namer.dart'; | 27 part 'namer.dart'; |
27 part 'minify_namer.dart'; | 28 part 'minify_namer.dart'; |
28 part 'native_emitter.dart'; | 29 part 'native_emitter.dart'; |
OLD | NEW |