| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 import '../resolution/operators.dart'; | 45 import '../resolution/operators.dart'; |
| 46 import '../resolution/semantic_visitor.dart'; | 46 import '../resolution/semantic_visitor.dart'; |
| 47 import '../resolution/send_resolver.dart' show | 47 import '../resolution/send_resolver.dart' show |
| 48 SendResolverMixin; | 48 SendResolverMixin; |
| 49 import '../resolution/tree_elements.dart' show | 49 import '../resolution/tree_elements.dart' show |
| 50 TreeElements; | 50 TreeElements; |
| 51 import '../tree/tree.dart' as ast; | 51 import '../tree/tree.dart' as ast; |
| 52 import '../types/types.dart'; | 52 import '../types/types.dart'; |
| 53 import '../types/constants.dart' show | 53 import '../types/constants.dart' show |
| 54 computeTypeMask; | 54 computeTypeMask; |
| 55 import '../universe/universe.dart'; | 55 import '../universe/call_structure.dart' show |
| 56 CallStructure; |
| 57 import '../universe/selector.dart' show |
| 58 Selector; |
| 59 import '../universe/side_effects.dart' show |
| 60 SideEffects; |
| 61 import '../universe/universe.dart' show |
| 62 UniverseSelector; |
| 56 import '../util/util.dart'; | 63 import '../util/util.dart'; |
| 57 import '../world.dart' show | 64 import '../world.dart' show |
| 58 ClassWorld, | 65 ClassWorld, |
| 59 World; | 66 World; |
| 60 | 67 |
| 61 part 'builder.dart'; | 68 part 'builder.dart'; |
| 62 part 'codegen.dart'; | 69 part 'codegen.dart'; |
| 63 part 'codegen_helpers.dart'; | 70 part 'codegen_helpers.dart'; |
| 64 part 'interceptor_simplifier.dart'; | 71 part 'interceptor_simplifier.dart'; |
| 65 part 'invoke_dynamic_specializers.dart'; | 72 part 'invoke_dynamic_specializers.dart'; |
| 66 part 'nodes.dart'; | 73 part 'nodes.dart'; |
| 67 part 'optimize.dart'; | 74 part 'optimize.dart'; |
| 68 part 'types.dart'; | 75 part 'types.dart'; |
| 69 part 'types_propagation.dart'; | 76 part 'types_propagation.dart'; |
| 70 part 'validate.dart'; | 77 part 'validate.dart'; |
| 71 part 'variable_allocator.dart'; | 78 part 'variable_allocator.dart'; |
| 72 part 'value_range_analyzer.dart'; | 79 part 'value_range_analyzer.dart'; |
| 73 part 'value_set.dart'; | 80 part 'value_set.dart'; |
| OLD | NEW |