| 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 28 matching lines...) Expand all Loading... |
| 39 import '../js/js.dart' as js; | 39 import '../js/js.dart' as js; |
| 40 import '../js_backend/backend_helpers.dart' show | 40 import '../js_backend/backend_helpers.dart' show |
| 41 BackendHelpers; | 41 BackendHelpers; |
| 42 import '../js_backend/js_backend.dart'; | 42 import '../js_backend/js_backend.dart'; |
| 43 import '../js_emitter/js_emitter.dart' show | 43 import '../js_emitter/js_emitter.dart' show |
| 44 CodeEmitterTask, | 44 CodeEmitterTask, |
| 45 NativeEmitter; | 45 NativeEmitter; |
| 46 import '../native/native.dart' as native; | 46 import '../native/native.dart' as native; |
| 47 import '../resolution/operators.dart'; | 47 import '../resolution/operators.dart'; |
| 48 import '../resolution/semantic_visitor.dart'; | 48 import '../resolution/semantic_visitor.dart'; |
| 49 import '../resolution/send_resolver.dart' show | |
| 50 SendResolverMixin; | |
| 51 import '../resolution/tree_elements.dart' show | 49 import '../resolution/tree_elements.dart' show |
| 52 TreeElements; | 50 TreeElements; |
| 53 import '../tree/tree.dart' as ast; | 51 import '../tree/tree.dart' as ast; |
| 54 import '../types/types.dart'; | 52 import '../types/types.dart'; |
| 55 import '../types/constants.dart' show | 53 import '../types/constants.dart' show |
| 56 computeTypeMask; | 54 computeTypeMask; |
| 57 import '../universe/call_structure.dart' show | 55 import '../universe/call_structure.dart' show |
| 58 CallStructure; | 56 CallStructure; |
| 59 import '../universe/selector.dart' show | 57 import '../universe/selector.dart' show |
| 60 Selector; | 58 Selector; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 76 part 'interceptor_simplifier.dart'; | 74 part 'interceptor_simplifier.dart'; |
| 77 part 'invoke_dynamic_specializers.dart'; | 75 part 'invoke_dynamic_specializers.dart'; |
| 78 part 'nodes.dart'; | 76 part 'nodes.dart'; |
| 79 part 'optimize.dart'; | 77 part 'optimize.dart'; |
| 80 part 'types.dart'; | 78 part 'types.dart'; |
| 81 part 'types_propagation.dart'; | 79 part 'types_propagation.dart'; |
| 82 part 'validate.dart'; | 80 part 'validate.dart'; |
| 83 part 'variable_allocator.dart'; | 81 part 'variable_allocator.dart'; |
| 84 part 'value_range_analyzer.dart'; | 82 part 'value_range_analyzer.dart'; |
| 85 part 'value_set.dart'; | 83 part 'value_set.dart'; |
| OLD | NEW |