OLD | NEW |
| (Empty) |
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 | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 library ssa; | |
6 | |
7 import 'dart:collection'; | |
8 | |
9 import '../closure.dart'; | |
10 import '../constants/expressions.dart'; | |
11 import '../constants/values.dart'; | |
12 import '../deferred_load.dart' show DeferredLoadTask; | |
13 import '../dart2jslib.dart' hide Selector, TypedSelector; | |
14 import '../dart_types.dart'; | |
15 import '../elements/elements.dart'; | |
16 import '../elements/modelx.dart' | |
17 show ElementX, | |
18 VariableElementX, | |
19 ConstructorBodyElementX; | |
20 import '../js/js.dart' as js; | |
21 import '../js_backend/js_backend.dart'; | |
22 import '../js_emitter/js_emitter.dart' show CodeEmitterTask; | |
23 import '../native/native.dart' as native; | |
24 import '../scanner/scannerlib.dart' | |
25 show PartialFunctionElement, Token, PLUS_TOKEN; | |
26 import '../source_file.dart'; | |
27 import '../source_map_builder.dart'; | |
28 import '../tree/tree.dart' as ast; | |
29 import '../types/types.dart'; | |
30 import '../universe/universe.dart'; | |
31 import '../util/util.dart'; | |
32 | |
33 part 'builder.dart'; | |
34 part 'codegen.dart'; | |
35 part 'codegen_helpers.dart'; | |
36 part 'interceptor_simplifier.dart'; | |
37 part 'invoke_dynamic_specializers.dart'; | |
38 part 'nodes.dart'; | |
39 part 'optimize.dart'; | |
40 part 'types.dart'; | |
41 part 'types_propagation.dart'; | |
42 part 'validate.dart'; | |
43 part 'variable_allocator.dart'; | |
44 part 'value_range_analyzer.dart'; | |
45 part 'value_set.dart'; | |
OLD | NEW |