| 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 |
| 13 CodegenRegistry, |
| 14 CodegenWorkItem; |
| 15 import '../common/tasks.dart' show |
| 16 CompilerTask; |
| 17 import '../compiler.dart' show |
| 18 Compiler; |
| 12 import '../constant_system_dart.dart'; | 19 import '../constant_system_dart.dart'; |
| 13 import '../constants/constant_system.dart'; | 20 import '../constants/constant_system.dart'; |
| 14 import '../constants/expressions.dart'; | 21 import '../constants/expressions.dart'; |
| 15 import '../constants/values.dart'; | 22 import '../constants/values.dart'; |
| 16 import '../dart2jslib.dart' hide Selector, TypedSelector; | |
| 17 import '../dart_types.dart'; | 23 import '../dart_types.dart'; |
| 24 import '../diagnostics/invariant.dart' show |
| 25 invariant; |
| 26 import '../diagnostics/spannable.dart' show |
| 27 CURRENT_ELEMENT_SPANNABLE, |
| 28 Spannable; |
| 18 import '../elements/elements.dart'; | 29 import '../elements/elements.dart'; |
| 19 import '../elements/modelx.dart' | 30 import '../elements/modelx.dart' show |
| 20 show ElementX, | 31 ConstructorBodyElementX, |
| 21 VariableElementX, | 32 ElementX, |
| 22 ConstructorBodyElementX; | 33 VariableElementX; |
| 23 import '../io/source_information.dart'; | 34 import '../io/source_information.dart'; |
| 24 import '../js/js.dart' as js; | 35 import '../js/js.dart' as js; |
| 25 import '../js_backend/js_backend.dart'; | 36 import '../js_backend/js_backend.dart'; |
| 26 import '../js_emitter/js_emitter.dart' show | 37 import '../js_emitter/js_emitter.dart' show |
| 27 CodeEmitterTask, | 38 CodeEmitterTask, |
| 28 NativeEmitter; | 39 NativeEmitter; |
| 29 import '../messages.dart'; | 40 import '../messages.dart'; |
| 30 import '../native/native.dart' as native; | 41 import '../native/native.dart' as native; |
| 31 import '../resolution/operators.dart'; | 42 import '../resolution/operators.dart'; |
| 32 import '../resolution/resolution.dart' show | 43 import '../resolution/resolution.dart' show |
| (...skipping 15 matching lines...) Expand all Loading... |
| 48 part 'interceptor_simplifier.dart'; | 59 part 'interceptor_simplifier.dart'; |
| 49 part 'invoke_dynamic_specializers.dart'; | 60 part 'invoke_dynamic_specializers.dart'; |
| 50 part 'nodes.dart'; | 61 part 'nodes.dart'; |
| 51 part 'optimize.dart'; | 62 part 'optimize.dart'; |
| 52 part 'types.dart'; | 63 part 'types.dart'; |
| 53 part 'types_propagation.dart'; | 64 part 'types_propagation.dart'; |
| 54 part 'validate.dart'; | 65 part 'validate.dart'; |
| 55 part 'variable_allocator.dart'; | 66 part 'variable_allocator.dart'; |
| 56 part 'value_range_analyzer.dart'; | 67 part 'value_range_analyzer.dart'; |
| 57 part 'value_set.dart'; | 68 part 'value_set.dart'; |
| OLD | NEW |