| 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 'dart:collection' show LinkedHashMap; | 7 import 'dart:collection' show LinkedHashMap; |
| 8 | 8 |
| 9 import '../closure.dart'; | 9 import '../closure.dart'; |
| 10 import '../../compiler.dart' as api; | 10 import '../../compiler.dart' as api; |
| 11 import '../elements/elements.dart'; | 11 import '../elements/elements.dart'; |
| 12 import '../elements/modelx.dart' show FunctionElementX; | 12 import '../elements/modelx.dart' show FunctionElementX; |
| 13 import '../dart2jslib.dart' hide Selector; | 13 import '../dart2jslib.dart' hide Selector; |
| 14 import '../dart_types.dart'; | 14 import '../dart_types.dart'; |
| 15 import '../js/js.dart' as js; | 15 import '../js/js.dart' as js; |
| 16 import '../native_handler.dart' as native; | 16 import '../native_handler.dart' as native; |
| 17 import '../source_file.dart'; | 17 import '../source_file.dart'; |
| 18 import '../source_map_builder.dart'; | 18 import '../source_map_builder.dart'; |
| 19 import '../ssa/ssa.dart'; | 19 import '../ssa/ssa.dart'; |
| 20 import '../tree/tree.dart'; | 20 import '../tree/tree.dart'; |
| 21 import '../universe/universe.dart'; | 21 import '../universe/universe.dart'; |
| 22 import '../util/characters.dart'; | 22 import '../util/characters.dart'; |
| 23 import '../util/util.dart'; | 23 import '../util/util.dart'; |
| 24 | 24 |
| 25 part 'backend.dart'; | 25 part 'backend.dart'; |
| 26 part 'constant_emitter.dart'; | 26 part 'constant_emitter.dart'; |
| 27 part 'constant_system_javascript.dart'; | 27 part 'constant_system_javascript.dart'; |
| 28 part 'emitter.dart'; | 28 part 'emitter.dart'; |
| 29 // TODO(8522): Restore --disallow-unsafe-eval. | 29 part 'emitter_no_eval.dart'; |
| 30 // part 'emitter_no_eval.dart'; | |
| 31 part 'minify_namer.dart'; | 30 part 'minify_namer.dart'; |
| 32 part 'namer.dart'; | 31 part 'namer.dart'; |
| 33 part 'native_emitter.dart'; | 32 part 'native_emitter.dart'; |
| 34 part 'runtime_types.dart'; | 33 part 'runtime_types.dart'; |
| OLD | NEW |