| 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'; |
| 8 |
| 7 import '../closure.dart'; | 9 import '../closure.dart'; |
| 8 import '../js/js.dart' as js; | 10 import '../js/js.dart' as js; |
| 9 import '../dart2jslib.dart' hide Selector; | 11 import '../dart2jslib.dart' hide Selector; |
| 10 import '../source_file.dart'; | 12 import '../source_file.dart'; |
| 11 import '../source_map_builder.dart'; | 13 import '../source_map_builder.dart'; |
| 12 import '../elements/elements.dart'; | 14 import '../elements/elements.dart'; |
| 13 import '../js_backend/js_backend.dart'; | 15 import '../js_backend/js_backend.dart'; |
| 14 import '../native_handler.dart' as native; | 16 import '../native_handler.dart' as native; |
| 15 import '../tree/tree.dart'; | 17 import '../tree/tree.dart'; |
| 16 import '../types/types.dart'; | 18 import '../types/types.dart'; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 32 part 'invoke_dynamic_specializers.dart'; | 34 part 'invoke_dynamic_specializers.dart'; |
| 33 part 'js_names.dart'; | 35 part 'js_names.dart'; |
| 34 part 'nodes.dart'; | 36 part 'nodes.dart'; |
| 35 part 'optimize.dart'; | 37 part 'optimize.dart'; |
| 36 part 'types.dart'; | 38 part 'types.dart'; |
| 37 part 'types_propagation.dart'; | 39 part 'types_propagation.dart'; |
| 38 part 'validate.dart'; | 40 part 'validate.dart'; |
| 39 part 'variable_allocator.dart'; | 41 part 'variable_allocator.dart'; |
| 40 part 'value_range_analyzer.dart'; | 42 part 'value_range_analyzer.dart'; |
| 41 part 'value_set.dart'; | 43 part 'value_set.dart'; |
| OLD | NEW |