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 dart2js; | 5 library dart2js; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 import 'dart:collection' show Queue; | 8 import 'dart:collection' show Queue; |
9 | 9 |
10 import 'dart:profiler' show | 10 import 'dart:profiler' show |
(...skipping 30 matching lines...) Expand all Loading... |
41 import 'types/types.dart' as ti; | 41 import 'types/types.dart' as ti; |
42 import 'resolution/resolution.dart'; | 42 import 'resolution/resolution.dart'; |
43 import 'resolution/class_members.dart' show MembersCreator; | 43 import 'resolution/class_members.dart' show MembersCreator; |
44 import 'source_file.dart' show SourceFile; | 44 import 'source_file.dart' show SourceFile; |
45 import 'js/js.dart' as js; | 45 import 'js/js.dart' as js; |
46 import 'deferred_load.dart' show DeferredLoadTask, OutputUnit; | 46 import 'deferred_load.dart' show DeferredLoadTask, OutputUnit; |
47 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask; | 47 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask; |
48 import 'dump_info.dart'; | 48 import 'dump_info.dart'; |
49 import 'tracer.dart' show Tracer; | 49 import 'tracer.dart' show Tracer; |
50 import 'cache_strategy.dart'; | 50 import 'cache_strategy.dart'; |
| 51 import 'compilation_info.dart'; |
51 | 52 |
52 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping; | 53 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping; |
53 export 'scanner/scannerlib.dart' show isUserDefinableOperator, | 54 export 'scanner/scannerlib.dart' show isUserDefinableOperator, |
54 isUnaryOperator, | 55 isUnaryOperator, |
55 isBinaryOperator, | 56 isBinaryOperator, |
56 isTernaryOperator, | 57 isTernaryOperator, |
57 isMinusOperator; | 58 isMinusOperator; |
58 export 'universe/universe.dart' show Selector, TypedSelector; | 59 export 'universe/universe.dart' show Selector, TypedSelector; |
59 export 'util/util.dart' | 60 export 'util/util.dart' |
60 show Spannable, | 61 show Spannable, |
61 CURRENT_ELEMENT_SPANNABLE, | 62 CURRENT_ELEMENT_SPANNABLE, |
62 NO_LOCATION_SPANNABLE; | 63 NO_LOCATION_SPANNABLE; |
63 export 'helpers/helpers.dart'; | 64 export 'helpers/helpers.dart'; |
64 | 65 |
65 part 'code_buffer.dart'; | 66 part 'code_buffer.dart'; |
66 part 'compile_time_constants.dart'; | 67 part 'compile_time_constants.dart'; |
67 part 'compiler.dart'; | 68 part 'compiler.dart'; |
68 part 'constants.dart'; | 69 part 'constants.dart'; |
69 part 'constant_system.dart'; | 70 part 'constant_system.dart'; |
70 part 'constant_system_dart.dart'; | 71 part 'constant_system_dart.dart'; |
71 part 'diagnostic_listener.dart'; | 72 part 'diagnostic_listener.dart'; |
72 part 'enqueue.dart'; | 73 part 'enqueue.dart'; |
73 part 'resolved_visitor.dart'; | 74 part 'resolved_visitor.dart'; |
74 part 'script.dart'; | 75 part 'script.dart'; |
75 part 'tree_validator.dart'; | 76 part 'tree_validator.dart'; |
76 part 'typechecker.dart'; | 77 part 'typechecker.dart'; |
77 part 'warnings.dart'; | 78 part 'warnings.dart'; |
78 part 'world.dart'; | 79 part 'world.dart'; |
OLD | NEW |