| 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 'dart:collection'; | 7 import 'dart:collection'; |
| 8 | 8 |
| 9 import '../closure.dart'; | 9 import '../closure.dart'; |
| 10 import '../js/js.dart' as js; | 10 import '../js/js.dart' as js; |
| 11 import '../dart2jslib.dart' hide Selector, TypedSelector; | 11 import '../dart2jslib.dart' hide Selector, TypedSelector; |
| 12 import '../dart_types.dart'; | 12 import '../dart_types.dart'; |
| 13 import '../source_file.dart'; | 13 import '../source_file.dart'; |
| 14 import '../source_map_builder.dart'; | 14 import '../source_map_builder.dart'; |
| 15 import '../elements/elements.dart'; | 15 import '../elements/elements.dart'; |
| 16 import '../js_backend/js_backend.dart'; | 16 import '../js_backend/js_backend.dart'; |
| 17 import '../native_handler.dart' as native; | 17 import '../native_handler.dart' as native; |
| 18 import '../tree/tree.dart'; | 18 import '../tree/tree.dart'; |
| 19 import '../ir/ir_nodes.dart'; |
| 19 import '../types/types.dart'; | 20 import '../types/types.dart'; |
| 20 import '../universe/universe.dart'; | 21 import '../universe/universe.dart'; |
| 21 import '../util/util.dart'; | 22 import '../util/util.dart'; |
| 22 | 23 |
| 23 import '../scanner/scannerlib.dart' | 24 import '../scanner/scannerlib.dart' |
| 24 show PartialFunctionElement, Token, PLUS_TOKEN; | 25 show PartialFunctionElement, Token, PLUS_TOKEN; |
| 25 | 26 |
| 26 import '../elements/modelx.dart' | 27 import '../elements/modelx.dart' |
| 27 show ElementX, | 28 show ElementX, |
| 28 ConstructorBodyElementX; | 29 ConstructorBodyElementX; |
| 29 | 30 |
| 30 import '../js_emitter/js_emitter.dart' show CodeEmitterTask; | 31 import '../js_emitter/js_emitter.dart' show CodeEmitterTask; |
| 31 | 32 |
| 32 part 'builder.dart'; | 33 part 'builder.dart'; |
| 34 part 'from_ir_builder.dart'; |
| 35 part 'from_ir_inliner.dart'; |
| 33 part 'codegen.dart'; | 36 part 'codegen.dart'; |
| 34 part 'codegen_helpers.dart'; | 37 part 'codegen_helpers.dart'; |
| 35 part 'interceptor_simplifier.dart'; | 38 part 'interceptor_simplifier.dart'; |
| 36 part 'invoke_dynamic_specializers.dart'; | 39 part 'invoke_dynamic_specializers.dart'; |
| 37 part 'nodes.dart'; | 40 part 'nodes.dart'; |
| 38 part 'optimize.dart'; | 41 part 'optimize.dart'; |
| 39 part 'types.dart'; | 42 part 'types.dart'; |
| 40 part 'types_propagation.dart'; | 43 part 'types_propagation.dart'; |
| 41 part 'validate.dart'; | 44 part 'validate.dart'; |
| 42 part 'variable_allocator.dart'; | 45 part 'variable_allocator.dart'; |
| 43 part 'value_range_analyzer.dart'; | 46 part 'value_range_analyzer.dart'; |
| 44 part 'value_set.dart'; | 47 part 'value_set.dart'; |
| OLD | NEW |