| 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 ssa; | 5 library ssa; |
| 6 | 6 |
| 7 import '../closure.dart'; | 7 import '../closure.dart'; |
| 8 import '../js/js.dart' as js; | 8 import '../js/js.dart' as js; |
| 9 import '../dart2jslib.dart' hide Selector; | 9 import '../dart2jslib.dart' hide Selector; |
| 10 import '../source_file.dart'; | 10 import '../source_file.dart'; |
| 11 import '../source_map_builder.dart'; | 11 import '../source_map_builder.dart'; |
| 12 import '../elements/elements.dart'; | 12 import '../elements/elements.dart'; |
| 13 import '../js_backend/js_backend.dart'; | 13 import '../js_backend/js_backend.dart'; |
| 14 import '../native_handler.dart' as native; | 14 import '../native_handler.dart' as native; |
| 15 import '../js_backend/runtime_types.dart'; | |
| 16 import '../tree/tree.dart'; | 15 import '../tree/tree.dart'; |
| 17 import '../types/types.dart'; | 16 import '../types/types.dart'; |
| 18 import '../universe/universe.dart'; | 17 import '../universe/universe.dart'; |
| 19 import '../util/util.dart'; | 18 import '../util/util.dart'; |
| 20 import '../util/characters.dart'; | 19 import '../util/characters.dart'; |
| 21 | 20 |
| 22 import '../scanner/scannerlib.dart' show PartialFunctionElement, | 21 import '../scanner/scannerlib.dart' show PartialFunctionElement, |
| 23 Token, | 22 Token, |
| 24 PLUS_TOKEN; | 23 PLUS_TOKEN; |
| 25 | 24 |
| 26 part 'bailout.dart'; | 25 part 'bailout.dart'; |
| 27 part 'builder.dart'; | 26 part 'builder.dart'; |
| 28 part 'codegen.dart'; | 27 part 'codegen.dart'; |
| 29 part 'codegen_helpers.dart'; | 28 part 'codegen_helpers.dart'; |
| 30 part 'js_names.dart'; | 29 part 'js_names.dart'; |
| 31 part 'nodes.dart'; | 30 part 'nodes.dart'; |
| 32 part 'optimize.dart'; | 31 part 'optimize.dart'; |
| 33 part 'types.dart'; | 32 part 'types.dart'; |
| 34 part 'types_propagation.dart'; | 33 part 'types_propagation.dart'; |
| 35 part 'validate.dart'; | 34 part 'validate.dart'; |
| 36 part 'variable_allocator.dart'; | 35 part 'variable_allocator.dart'; |
| 37 part 'value_range_analyzer.dart'; | 36 part 'value_range_analyzer.dart'; |
| 38 part 'value_set.dart'; | 37 part 'value_set.dart'; |
| OLD | NEW |