| 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', prefix: 'js'); | 8 import '../js/js.dart' as js; |
| 9 #import('../leg.dart'); | 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', prefix: 'native'); | 14 import '../native_handler.dart' as native; |
| 15 #import('../runtime_types.dart'); | 15 import '../runtime_types.dart'; |
| 16 #import('../scanner/scannerlib.dart'); | 16 import '../tree/tree.dart'; |
| 17 #import('../tree/tree.dart'); | 17 import '../types/types.dart'; |
| 18 #import('../types/types.dart'); | 18 import '../universe/universe.dart'; |
| 19 #import('../universe/universe.dart'); | 19 import '../util/util.dart'; |
| 20 #import('../util/util.dart'); | 20 import '../util/characters.dart'; |
| 21 #import('../util/characters.dart'); | |
| 22 | 21 |
| 23 #source('bailout.dart'); | 22 import '../scanner/scannerlib.dart' show PartialFunctionElement, |
| 24 #source('builder.dart'); | 23 Token, |
| 25 #source('codegen.dart'); | 24 PLUS_TOKEN; |
| 26 #source('codegen_helpers.dart'); | 25 |
| 27 #source('js_names.dart'); | 26 part 'bailout.dart'; |
| 28 #source('nodes.dart'); | 27 part 'builder.dart'; |
| 29 #source('optimize.dart'); | 28 part 'codegen.dart'; |
| 30 #source('types.dart'); | 29 part 'codegen_helpers.dart'; |
| 31 #source('types_propagation.dart'); | 30 part 'js_names.dart'; |
| 32 #source('validate.dart'); | 31 part 'nodes.dart'; |
| 33 #source('variable_allocator.dart'); | 32 part 'optimize.dart'; |
| 34 #source('value_range_analyzer.dart'); | 33 part 'types.dart'; |
| 35 #source('value_set.dart'); | 34 part 'types_propagation.dart'; |
| 35 part 'validate.dart'; |
| 36 part 'variable_allocator.dart'; |
| 37 part 'value_range_analyzer.dart'; |
| 38 part 'value_set.dart'; |
| OLD | NEW |