| 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 'package:js_runtime/shared/embedded_names.dart'; | 9 import 'package:js_runtime/shared/embedded_names.dart'; |
| 10 | 10 |
| 11 import '../closure.dart'; | 11 import '../closure.dart'; |
| 12 import '../common/codegen.dart' show | 12 import '../common/codegen.dart' show |
| 13 CodegenRegistry, | 13 CodegenRegistry, |
| 14 CodegenWorkItem; | 14 CodegenWorkItem; |
| 15 import '../common/names.dart' show |
| 16 Identifiers, |
| 17 Selectors; |
| 15 import '../common/tasks.dart' show | 18 import '../common/tasks.dart' show |
| 16 CompilerTask; | 19 CompilerTask; |
| 17 import '../compiler.dart' show | 20 import '../compiler.dart' show |
| 18 Compiler; | 21 Compiler; |
| 19 import '../constant_system_dart.dart'; | 22 import '../constant_system_dart.dart'; |
| 20 import '../constants/constant_system.dart'; | 23 import '../constants/constant_system.dart'; |
| 21 import '../constants/expressions.dart'; | 24 import '../constants/expressions.dart'; |
| 22 import '../constants/values.dart'; | 25 import '../constants/values.dart'; |
| 23 import '../dart_types.dart'; | 26 import '../dart_types.dart'; |
| 24 import '../diagnostics/invariant.dart' show | 27 import '../diagnostics/invariant.dart' show |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 part 'interceptor_simplifier.dart'; | 64 part 'interceptor_simplifier.dart'; |
| 62 part 'invoke_dynamic_specializers.dart'; | 65 part 'invoke_dynamic_specializers.dart'; |
| 63 part 'nodes.dart'; | 66 part 'nodes.dart'; |
| 64 part 'optimize.dart'; | 67 part 'optimize.dart'; |
| 65 part 'types.dart'; | 68 part 'types.dart'; |
| 66 part 'types_propagation.dart'; | 69 part 'types_propagation.dart'; |
| 67 part 'validate.dart'; | 70 part 'validate.dart'; |
| 68 part 'variable_allocator.dart'; | 71 part 'variable_allocator.dart'; |
| 69 part 'value_range_analyzer.dart'; | 72 part 'value_range_analyzer.dart'; |
| 70 part 'value_set.dart'; | 73 part 'value_set.dart'; |
| OLD | NEW |