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 /// This file use methods that aren't used by dart2js.dart, but that we wish to | 5 /// This file use methods that aren't used by dart2js.dart, but that we wish to |
6 /// keep anyway. This might be general API that isn't currently in use, | 6 /// keep anyway. This might be general API that isn't currently in use, |
7 /// debugging aids, or API only used for testing (see TODO below). | 7 /// debugging aids, or API only used for testing (see TODO below). |
8 | 8 |
9 library dart2js.use_unused_api; | 9 library dart2js.use_unused_api; |
10 | 10 |
(...skipping 11 matching lines...) Expand all Loading... |
22 import 'diagnostics/source_span.dart' as diagnostics; | 22 import 'diagnostics/source_span.dart' as diagnostics; |
23 import 'elements/elements.dart' as elements; | 23 import 'elements/elements.dart' as elements; |
24 import 'elements/modelx.dart' as modelx; | 24 import 'elements/modelx.dart' as modelx; |
25 import 'elements/visitor.dart' as elements_visitor; | 25 import 'elements/visitor.dart' as elements_visitor; |
26 import 'filenames.dart' as filenames; | 26 import 'filenames.dart' as filenames; |
27 import 'inferrer/type_graph_inferrer.dart' as type_graph_inferrer; | 27 import 'inferrer/type_graph_inferrer.dart' as type_graph_inferrer; |
28 import 'io/location_provider.dart' as io; | 28 import 'io/location_provider.dart' as io; |
29 import 'io/source_map_builder.dart' as io; | 29 import 'io/source_map_builder.dart' as io; |
30 import 'js/js.dart' as js; | 30 import 'js/js.dart' as js; |
31 import 'js_backend/js_backend.dart' as js_backend; | 31 import 'js_backend/js_backend.dart' as js_backend; |
32 import 'js_emitter/full_emitter/emitter.dart' as full; | |
33 import 'js_emitter/js_emitter.dart' as js_emitter; | |
34 import 'js_emitter/program_builder/program_builder.dart' as program_builder; | |
35 import 'parser/partial_elements.dart' | 32 import 'parser/partial_elements.dart' |
36 show PartialClassElement, PartialFunctionElement; | 33 show PartialClassElement, PartialFunctionElement; |
37 import 'resolution/operators.dart' as operators; | 34 import 'resolution/operators.dart' as operators; |
38 import 'resolution/semantic_visitor.dart' as semantic_visitor; | 35 import 'resolution/semantic_visitor.dart' as semantic_visitor; |
39 import 'script.dart'; | 36 import 'script.dart'; |
40 import 'source_file_provider.dart' as source_file_provider; | 37 import 'source_file_provider.dart' as source_file_provider; |
41 import 'ssa/nodes.dart' as ssa; | 38 import 'ssa/nodes.dart' as ssa; |
42 import 'tree/tree.dart' as tree; | 39 import 'tree/tree.dart' as tree; |
43 import 'util/util.dart' as util; | 40 import 'util/util.dart' as util; |
44 import 'world.dart'; | 41 import 'world.dart'; |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 operators.UnaryOperator.fromKind(null); | 290 operators.UnaryOperator.fromKind(null); |
294 operators.BinaryOperator.fromKind(null); | 291 operators.BinaryOperator.fromKind(null); |
295 new semantic_visitor.BulkSendVisitor()..apply(null, null); | 292 new semantic_visitor.BulkSendVisitor()..apply(null, null); |
296 new semantic_visitor.TraversalVisitor(null).apply(null, null); | 293 new semantic_visitor.TraversalVisitor(null).apply(null, null); |
297 new semantic_visitor.BulkDeclarationVisitor().apply(null, null); | 294 new semantic_visitor.BulkDeclarationVisitor().apply(null, null); |
298 } | 295 } |
299 | 296 |
300 useDeferred([deferred_load.DeferredLoadTask task]) { | 297 useDeferred([deferred_load.DeferredLoadTask task]) { |
301 task.dump(); | 298 task.dump(); |
302 } | 299 } |
OLD | NEW |