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'; |
11 import '../constants/constant_system.dart'; | 11 import '../constants/constant_system.dart'; |
12 import '../constants/expressions.dart'; | 12 import '../constants/expressions.dart'; |
13 import '../constants/values.dart'; | 13 import '../constants/values.dart'; |
14 import '../deferred_load.dart' show DeferredLoadTask; | |
15 import '../dart2jslib.dart' hide Selector, TypedSelector; | 14 import '../dart2jslib.dart' hide Selector, TypedSelector; |
16 import '../dart_types.dart'; | 15 import '../dart_types.dart'; |
17 import '../elements/elements.dart'; | 16 import '../elements/elements.dart'; |
18 import '../elements/modelx.dart' | 17 import '../elements/modelx.dart' |
19 show ElementX, | 18 show ElementX, |
20 VariableElementX, | 19 VariableElementX, |
21 ConstructorBodyElementX; | 20 ConstructorBodyElementX; |
22 import '../helpers/helpers.dart'; | 21 |
23 import '../io/source_file.dart'; | |
24 import '../io/source_information.dart'; | 22 import '../io/source_information.dart'; |
25 import '../js/js.dart' as js; | 23 import '../js/js.dart' as js; |
26 import '../js_backend/js_backend.dart'; | 24 import '../js_backend/js_backend.dart'; |
27 import '../js_emitter/js_emitter.dart' show CodeEmitterTask, NativeEmitter; | 25 import '../js_emitter/js_emitter.dart' show CodeEmitterTask, NativeEmitter; |
28 import '../native/native.dart' as native; | 26 import '../native/native.dart' as native; |
29 import '../resolution/operators.dart'; | 27 import '../resolution/operators.dart'; |
30 import '../scanner/scannerlib.dart' | |
31 show PartialFunctionElement, Token, PLUS_TOKEN; | |
32 import '../tree/tree.dart' as ast; | 28 import '../tree/tree.dart' as ast; |
33 import '../types/types.dart'; | 29 import '../types/types.dart'; |
34 import '../types/constants.dart' show computeTypeMask; | 30 import '../types/constants.dart' show computeTypeMask; |
35 import '../universe/universe.dart'; | 31 import '../universe/universe.dart'; |
36 import '../util/util.dart'; | 32 import '../util/util.dart'; |
37 import '../js/rewrite_async.dart'; | 33 import '../js/rewrite_async.dart'; |
38 import 'package:_internal/compiler/js_lib/shared/embedded_names.dart'; | 34 import 'package:_internal/compiler/js_lib/shared/embedded_names.dart'; |
39 | 35 |
40 part 'builder.dart'; | 36 part 'builder.dart'; |
41 part 'codegen.dart'; | 37 part 'codegen.dart'; |
42 part 'codegen_helpers.dart'; | 38 part 'codegen_helpers.dart'; |
43 part 'interceptor_simplifier.dart'; | 39 part 'interceptor_simplifier.dart'; |
44 part 'invoke_dynamic_specializers.dart'; | 40 part 'invoke_dynamic_specializers.dart'; |
45 part 'nodes.dart'; | 41 part 'nodes.dart'; |
46 part 'optimize.dart'; | 42 part 'optimize.dart'; |
47 part 'types.dart'; | 43 part 'types.dart'; |
48 part 'types_propagation.dart'; | 44 part 'types_propagation.dart'; |
49 part 'validate.dart'; | 45 part 'validate.dart'; |
50 part 'variable_allocator.dart'; | 46 part 'variable_allocator.dart'; |
51 part 'value_range_analyzer.dart'; | 47 part 'value_range_analyzer.dart'; |
52 part 'value_set.dart'; | 48 part 'value_set.dart'; |
OLD | NEW |