| 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 '../closure.dart'; | 9 import '../closure.dart'; |
| 10 import '../constant_system_dart.dart'; |
| 11 import '../constants/constant_system.dart'; |
| 10 import '../constants/expressions.dart'; | 12 import '../constants/expressions.dart'; |
| 11 import '../constants/values.dart'; | 13 import '../constants/values.dart'; |
| 12 import '../deferred_load.dart' show DeferredLoadTask; | 14 import '../deferred_load.dart' show DeferredLoadTask; |
| 13 import '../dart2jslib.dart' hide Selector, TypedSelector; | 15 import '../dart2jslib.dart' hide Selector, TypedSelector; |
| 14 import '../dart_types.dart'; | 16 import '../dart_types.dart'; |
| 15 import '../elements/elements.dart'; | 17 import '../elements/elements.dart'; |
| 16 import '../elements/modelx.dart' | 18 import '../elements/modelx.dart' |
| 17 show ElementX, | 19 show ElementX, |
| 18 VariableElementX, | 20 VariableElementX, |
| 19 ConstructorBodyElementX; | 21 ConstructorBodyElementX; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 40 part 'interceptor_simplifier.dart'; | 42 part 'interceptor_simplifier.dart'; |
| 41 part 'invoke_dynamic_specializers.dart'; | 43 part 'invoke_dynamic_specializers.dart'; |
| 42 part 'nodes.dart'; | 44 part 'nodes.dart'; |
| 43 part 'optimize.dart'; | 45 part 'optimize.dart'; |
| 44 part 'types.dart'; | 46 part 'types.dart'; |
| 45 part 'types_propagation.dart'; | 47 part 'types_propagation.dart'; |
| 46 part 'validate.dart'; | 48 part 'validate.dart'; |
| 47 part 'variable_allocator.dart'; | 49 part 'variable_allocator.dart'; |
| 48 part 'value_range_analyzer.dart'; | 50 part 'value_range_analyzer.dart'; |
| 49 part 'value_set.dart'; | 51 part 'value_set.dart'; |
| OLD | NEW |