| 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 '../js/js.dart' as js; |
| 12 import '../native_handler.dart' as native; | 12 import '../native_handler.dart' as native; |
| 13 import '../source_file.dart'; | 13 import '../source_file.dart'; |
| 14 import '../source_map_builder.dart'; | 14 import '../source_map_builder.dart'; |
| 15 import '../ssa/ssa.dart'; | 15 import '../ssa/ssa.dart'; |
| 16 import '../tree/tree.dart'; | 16 import '../tree/tree.dart'; |
| 17 import '../universe/universe.dart'; | 17 import '../universe/universe.dart'; |
| 18 import '../util/characters.dart'; | 18 import '../util/characters.dart'; |
| 19 import '../util/util.dart'; | 19 import '../util/util.dart'; |
| 20 | 20 |
| 21 part 'backend.dart'; | 21 part 'backend.dart'; |
| 22 part 'constant_emitter.dart'; | 22 part 'constant_emitter.dart'; |
| 23 part 'constant_system_javascript.dart'; | 23 part 'constant_system_javascript.dart'; |
| 24 part 'emitter.dart'; | 24 part 'emitter.dart'; |
| 25 part 'emitter_no_eval.dart'; | 25 part 'emitter_no_eval.dart'; |
| 26 part 'minify_namer.dart'; |
| 26 part 'namer.dart'; | 27 part 'namer.dart'; |
| 27 part 'native_emitter.dart'; | 28 part 'native_emitter.dart'; |
| 28 part 'runtime_types.dart'; | 29 part 'runtime_types.dart'; |
| OLD | NEW |