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'; | |
10 | |
11 import '../closure.dart'; | 9 import '../closure.dart'; |
12 import '../constant_system_dart.dart'; | 10 import '../constant_system_dart.dart'; |
13 import '../constants/constant_system.dart'; | 11 import '../constants/constant_system.dart'; |
14 import '../constants/expressions.dart'; | 12 import '../constants/expressions.dart'; |
15 import '../constants/values.dart'; | 13 import '../constants/values.dart'; |
16 import '../dart2jslib.dart' hide Selector, TypedSelector; | 14 import '../dart2jslib.dart' hide Selector, TypedSelector; |
17 import '../dart_types.dart'; | 15 import '../dart_types.dart'; |
18 import '../elements/elements.dart'; | 16 import '../elements/elements.dart'; |
19 import '../elements/modelx.dart' | 17 import '../elements/modelx.dart' |
20 show ElementX, | 18 show ElementX, |
21 VariableElementX, | 19 VariableElementX, |
22 ConstructorBodyElementX; | 20 ConstructorBodyElementX; |
| 21 |
23 import '../io/source_information.dart'; | 22 import '../io/source_information.dart'; |
24 import '../js/js.dart' as js; | 23 import '../js/js.dart' as js; |
25 import '../js_backend/js_backend.dart'; | 24 import '../js_backend/js_backend.dart'; |
26 import '../js_emitter/js_emitter.dart' show | 25 import '../js_emitter/js_emitter.dart' show CodeEmitterTask, NativeEmitter; |
27 CodeEmitterTask, | |
28 NativeEmitter; | |
29 import '../messages.dart'; | |
30 import '../native/native.dart' as native; | 26 import '../native/native.dart' as native; |
31 import '../resolution/operators.dart'; | 27 import '../resolution/operators.dart'; |
32 import '../resolution/resolution.dart' show | |
33 TreeElements; | |
34 import '../resolution/semantic_visitor.dart'; | 28 import '../resolution/semantic_visitor.dart'; |
35 import '../tree/tree.dart' as ast; | 29 import '../tree/tree.dart' as ast; |
36 import '../types/types.dart'; | 30 import '../types/types.dart'; |
37 import '../types/constants.dart' show | 31 import '../types/constants.dart' show computeTypeMask; |
38 computeTypeMask; | |
39 import '../universe/universe.dart'; | 32 import '../universe/universe.dart'; |
40 import '../util/util.dart'; | 33 import '../util/util.dart'; |
41 import '../world.dart' show | 34 import '../js/rewrite_async.dart'; |
42 ClassWorld, | 35 import 'package:js_runtime/shared/embedded_names.dart'; |
43 World; | |
44 | 36 |
45 part 'builder.dart'; | 37 part 'builder.dart'; |
46 part 'codegen.dart'; | 38 part 'codegen.dart'; |
47 part 'codegen_helpers.dart'; | 39 part 'codegen_helpers.dart'; |
48 part 'interceptor_simplifier.dart'; | 40 part 'interceptor_simplifier.dart'; |
49 part 'invoke_dynamic_specializers.dart'; | 41 part 'invoke_dynamic_specializers.dart'; |
50 part 'nodes.dart'; | 42 part 'nodes.dart'; |
51 part 'optimize.dart'; | 43 part 'optimize.dart'; |
52 part 'types.dart'; | 44 part 'types.dart'; |
53 part 'types_propagation.dart'; | 45 part 'types_propagation.dart'; |
54 part 'validate.dart'; | 46 part 'validate.dart'; |
55 part 'variable_allocator.dart'; | 47 part 'variable_allocator.dart'; |
56 part 'value_range_analyzer.dart'; | 48 part 'value_range_analyzer.dart'; |
57 part 'value_set.dart'; | 49 part 'value_set.dart'; |
OLD | NEW |