| 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'; | 10 import '../constant_system_dart.dart'; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 import '../js_emitter/js_emitter.dart' show CodeEmitterTask, NativeEmitter; | 25 import '../js_emitter/js_emitter.dart' show CodeEmitterTask, NativeEmitter; |
| 26 import '../native/native.dart' as native; | 26 import '../native/native.dart' as native; |
| 27 import '../resolution/operators.dart'; | 27 import '../resolution/operators.dart'; |
| 28 import '../resolution/semantic_visitor.dart'; | 28 import '../resolution/semantic_visitor.dart'; |
| 29 import '../tree/tree.dart' as ast; | 29 import '../tree/tree.dart' as ast; |
| 30 import '../types/types.dart'; | 30 import '../types/types.dart'; |
| 31 import '../types/constants.dart' show computeTypeMask; | 31 import '../types/constants.dart' show computeTypeMask; |
| 32 import '../universe/universe.dart'; | 32 import '../universe/universe.dart'; |
| 33 import '../util/util.dart'; | 33 import '../util/util.dart'; |
| 34 import '../js/rewrite_async.dart'; | 34 import '../js/rewrite_async.dart'; |
| 35 import 'package:_internal/compiler/js_lib/shared/embedded_names.dart'; | 35 import 'package:js_runtime/shared/embedded_names.dart'; |
| 36 | 36 |
| 37 part 'builder.dart'; | 37 part 'builder.dart'; |
| 38 part 'codegen.dart'; | 38 part 'codegen.dart'; |
| 39 part 'codegen_helpers.dart'; | 39 part 'codegen_helpers.dart'; |
| 40 part 'interceptor_simplifier.dart'; | 40 part 'interceptor_simplifier.dart'; |
| 41 part 'invoke_dynamic_specializers.dart'; | 41 part 'invoke_dynamic_specializers.dart'; |
| 42 part 'nodes.dart'; | 42 part 'nodes.dart'; |
| 43 part 'optimize.dart'; | 43 part 'optimize.dart'; |
| 44 part 'types.dart'; | 44 part 'types.dart'; |
| 45 part 'types_propagation.dart'; | 45 part 'types_propagation.dart'; |
| 46 part 'validate.dart'; | 46 part 'validate.dart'; |
| 47 part 'variable_allocator.dart'; | 47 part 'variable_allocator.dart'; |
| 48 part 'value_range_analyzer.dart'; | 48 part 'value_range_analyzer.dart'; |
| 49 part 'value_set.dart'; | 49 part 'value_set.dart'; |
| OLD | NEW |