| 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 | 15 import '../common/names.dart' show |
| 16 Identifiers, | 16 Identifiers, |
| 17 Selectors; | 17 Selectors; |
| 18 import '../common/resolution.dart' show | 18 import '../common/resolution.dart' show |
| 19 Resolution; | 19 Resolution; |
| 20 import '../common/tasks.dart' show | 20 import '../common/tasks.dart' show |
| 21 CompilerTask; | 21 CompilerTask; |
| 22 import '../compiler.dart' show | 22 import '../compiler.dart' show |
| 23 Compiler; | 23 Compiler; |
| 24 import '../constant_system_dart.dart'; | 24 import '../constant_system_dart.dart'; |
| 25 import '../constants/constant_system.dart'; | 25 import '../constants/constant_system.dart'; |
| 26 import '../constants/expressions.dart'; | 26 import '../constants/expressions.dart'; |
| 27 import '../constants/values.dart'; | 27 import '../constants/values.dart'; |
| 28 import '../dart_types.dart'; | 28 import '../dart_types.dart'; |
| 29 import '../diagnostics/diagnostic_listener.dart' show |
| 30 DiagnosticReporter; |
| 29 import '../diagnostics/invariant.dart' show | 31 import '../diagnostics/invariant.dart' show |
| 30 invariant; | 32 invariant; |
| 31 import '../diagnostics/messages.dart'; | 33 import '../diagnostics/messages.dart'; |
| 32 import '../diagnostics/spannable.dart' show | 34 import '../diagnostics/spannable.dart' show |
| 33 CURRENT_ELEMENT_SPANNABLE, | 35 CURRENT_ELEMENT_SPANNABLE, |
| 34 Spannable; | 36 Spannable; |
| 35 import '../elements/elements.dart'; | 37 import '../elements/elements.dart'; |
| 36 import '../elements/modelx.dart' show | 38 import '../elements/modelx.dart' show |
| 37 ConstructorBodyElementX, | 39 ConstructorBodyElementX, |
| 38 ElementX, | 40 ElementX, |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 part 'interceptor_simplifier.dart'; | 75 part 'interceptor_simplifier.dart'; |
| 74 part 'invoke_dynamic_specializers.dart'; | 76 part 'invoke_dynamic_specializers.dart'; |
| 75 part 'nodes.dart'; | 77 part 'nodes.dart'; |
| 76 part 'optimize.dart'; | 78 part 'optimize.dart'; |
| 77 part 'types.dart'; | 79 part 'types.dart'; |
| 78 part 'types_propagation.dart'; | 80 part 'types_propagation.dart'; |
| 79 part 'validate.dart'; | 81 part 'validate.dart'; |
| 80 part 'variable_allocator.dart'; | 82 part 'variable_allocator.dart'; |
| 81 part 'value_range_analyzer.dart'; | 83 part 'value_range_analyzer.dart'; |
| 82 part 'value_set.dart'; | 84 part 'value_set.dart'; |
| OLD | NEW |