| 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 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 import '../diagnostics/spannable.dart' show | 34 import '../diagnostics/spannable.dart' show |
| 35 CURRENT_ELEMENT_SPANNABLE, | 35 CURRENT_ELEMENT_SPANNABLE, |
| 36 Spannable; | 36 Spannable; |
| 37 import '../elements/elements.dart'; | 37 import '../elements/elements.dart'; |
| 38 import '../elements/modelx.dart' show | 38 import '../elements/modelx.dart' show |
| 39 ConstructorBodyElementX, | 39 ConstructorBodyElementX, |
| 40 ElementX, | 40 ElementX, |
| 41 VariableElementX; | 41 VariableElementX; |
| 42 import '../io/source_information.dart'; | 42 import '../io/source_information.dart'; |
| 43 import '../js/js.dart' as js; | 43 import '../js/js.dart' as js; |
| 44 import '../js_backend/backend_helpers.dart' show |
| 45 BackendHelpers; |
| 44 import '../js_backend/js_backend.dart'; | 46 import '../js_backend/js_backend.dart'; |
| 45 import '../js_emitter/js_emitter.dart' show | 47 import '../js_emitter/js_emitter.dart' show |
| 46 CodeEmitterTask, | 48 CodeEmitterTask, |
| 47 NativeEmitter; | 49 NativeEmitter; |
| 48 import '../native/native.dart' as native; | 50 import '../native/native.dart' as native; |
| 49 import '../resolution/operators.dart'; | 51 import '../resolution/operators.dart'; |
| 50 import '../resolution/semantic_visitor.dart'; | 52 import '../resolution/semantic_visitor.dart'; |
| 51 import '../resolution/send_resolver.dart' show | 53 import '../resolution/send_resolver.dart' show |
| 52 SendResolverMixin; | 54 SendResolverMixin; |
| 53 import '../resolution/tree_elements.dart' show | 55 import '../resolution/tree_elements.dart' show |
| (...skipping 21 matching lines...) Expand all Loading... |
| 75 part 'interceptor_simplifier.dart'; | 77 part 'interceptor_simplifier.dart'; |
| 76 part 'invoke_dynamic_specializers.dart'; | 78 part 'invoke_dynamic_specializers.dart'; |
| 77 part 'nodes.dart'; | 79 part 'nodes.dart'; |
| 78 part 'optimize.dart'; | 80 part 'optimize.dart'; |
| 79 part 'types.dart'; | 81 part 'types.dart'; |
| 80 part 'types_propagation.dart'; | 82 part 'types_propagation.dart'; |
| 81 part 'validate.dart'; | 83 part 'validate.dart'; |
| 82 part 'variable_allocator.dart'; | 84 part 'variable_allocator.dart'; |
| 83 part 'value_range_analyzer.dart'; | 85 part 'value_range_analyzer.dart'; |
| 84 part 'value_set.dart'; | 86 part 'value_set.dart'; |
| OLD | NEW |