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 dart2js; | |
6 | |
7 import 'dart:async'; | |
8 import 'dart:collection' show Queue; | |
9 import 'dart:profiler' show | |
10 UserTag; | |
11 | |
12 import '../compiler.dart' as api; | |
13 import 'cache_strategy.dart'; | |
14 import 'closure.dart' as closureMapping; | |
15 import 'constants/expressions.dart'; | |
16 import 'constants/values.dart'; | |
17 import 'cps_ir/cps_ir_builder.dart' show IrBuilderTask; | |
18 import 'dart_backend/dart_backend.dart' as dart_backend; | |
19 import 'dart_types.dart'; | |
20 import 'deferred_load.dart' show DeferredLoadTask, OutputUnit; | |
21 import 'dump_info.dart'; | |
22 import 'elements/elements.dart'; | |
23 import 'elements/modelx.dart' | |
24 show ErroneousElementX, | |
25 ClassElementX, | |
26 CompilationUnitElementX, | |
27 LibraryElementX, | |
28 PrefixElementX, | |
29 VoidElementX, | |
30 AnalyzableElement, | |
31 DeferredLoaderGetterElementX; | |
32 import 'helpers/helpers.dart'; // Included for debug helpers. | |
33 import 'js/js.dart' as js; | |
34 import 'js_backend/js_backend.dart' as js_backend; | |
35 import 'library_loader.dart' | |
36 show LibraryLoader, | |
37 LibraryLoaderTask; | |
38 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask; | |
39 import 'native/native.dart' as native; | |
40 import 'ordered_typeset.dart'; | |
41 import 'patch_parser.dart'; | |
42 import 'resolution/class_members.dart' show MembersCreator; | |
43 import 'resolution/resolution.dart'; | |
44 import 'scanner/scannerlib.dart'; | |
45 import 'ssa/ssa.dart'; | |
46 import 'source_file.dart' show SourceFile; | |
47 import 'tracer.dart' show Tracer; | |
48 import 'tree/tree.dart'; | |
49 import 'types/types.dart' as ti; | |
50 import 'universe/universe.dart'; | |
51 import 'util/characters.dart' show $_; | |
52 import 'util/util.dart'; | |
53 | |
54 export 'helpers/helpers.dart'; | |
55 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping; | |
56 export 'scanner/scannerlib.dart' show isUserDefinableOperator, | |
57 isUnaryOperator, | |
58 isBinaryOperator, | |
59 isTernaryOperator, | |
60 isMinusOperator; | |
61 export 'universe/universe.dart' show Selector, TypedSelector; | |
62 export 'util/util.dart' | |
63 show Spannable, | |
64 CURRENT_ELEMENT_SPANNABLE, | |
65 NO_LOCATION_SPANNABLE; | |
66 | |
67 part 'code_buffer.dart'; | |
68 part 'compile_time_constants.dart'; | |
69 part 'compiler.dart'; | |
70 part 'constant_system.dart'; | |
71 part 'constant_system_dart.dart'; | |
72 part 'diagnostic_listener.dart'; | |
73 part 'enqueue.dart'; | |
74 part 'resolved_visitor.dart'; | |
75 part 'script.dart'; | |
76 part 'typechecker.dart'; | |
77 part 'warnings.dart'; | |
78 part 'world.dart'; | |
OLD | NEW |