| 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 '../cps_ir/const_expression.dart'; |
| 10 import '../js/js.dart' as js; | 11 import '../js/js.dart' as js; |
| 11 import '../dart2jslib.dart' hide Selector, TypedSelector; | 12 import '../dart2jslib.dart' hide Selector, TypedSelector; |
| 12 import '../dart_types.dart'; | 13 import '../dart_types.dart'; |
| 13 import '../source_file.dart'; | 14 import '../source_file.dart'; |
| 14 import '../source_map_builder.dart'; | 15 import '../source_map_builder.dart'; |
| 15 import '../elements/elements.dart'; | 16 import '../elements/elements.dart'; |
| 16 import '../js_backend/js_backend.dart'; | 17 import '../js_backend/js_backend.dart'; |
| 17 import '../native_handler.dart' as native; | 18 import '../native_handler.dart' as native; |
| 18 import '../tree/tree.dart' as ast; | 19 import '../tree/tree.dart' as ast; |
| 19 import '../types/types.dart'; | 20 import '../types/types.dart'; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 37 part 'interceptor_simplifier.dart'; | 38 part 'interceptor_simplifier.dart'; |
| 38 part 'invoke_dynamic_specializers.dart'; | 39 part 'invoke_dynamic_specializers.dart'; |
| 39 part 'nodes.dart'; | 40 part 'nodes.dart'; |
| 40 part 'optimize.dart'; | 41 part 'optimize.dart'; |
| 41 part 'types.dart'; | 42 part 'types.dart'; |
| 42 part 'types_propagation.dart'; | 43 part 'types_propagation.dart'; |
| 43 part 'validate.dart'; | 44 part 'validate.dart'; |
| 44 part 'variable_allocator.dart'; | 45 part 'variable_allocator.dart'; |
| 45 part 'value_range_analyzer.dart'; | 46 part 'value_range_analyzer.dart'; |
| 46 part 'value_set.dart'; | 47 part 'value_set.dart'; |
| OLD | NEW |