| 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 'closure.dart' as closureMapping; | 10 import 'closure.dart' as closureMapping; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 import '../compiler.dart' as api; | 32 import '../compiler.dart' as api; |
| 33 import 'patch_parser.dart'; | 33 import 'patch_parser.dart'; |
| 34 import 'types/types.dart' as ti; | 34 import 'types/types.dart' as ti; |
| 35 import 'resolution/resolution.dart'; | 35 import 'resolution/resolution.dart'; |
| 36 import 'resolution/class_members.dart' show MembersCreator; | 36 import 'resolution/class_members.dart' show MembersCreator; |
| 37 import 'source_file.dart' show SourceFile; | 37 import 'source_file.dart' show SourceFile; |
| 38 import 'js/js.dart' as js; | 38 import 'js/js.dart' as js; |
| 39 import 'deferred_load.dart' show DeferredLoadTask; | 39 import 'deferred_load.dart' show DeferredLoadTask; |
| 40 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask; | 40 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask; |
| 41 import 'dump_info.dart'; | 41 import 'dump_info.dart'; |
| 42 import 'helpers/helpers.dart'; | |
| 43 import 'tracer.dart' show Tracer; | 42 import 'tracer.dart' show Tracer; |
| 44 | 43 |
| 45 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping; | 44 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping; |
| 46 export 'scanner/scannerlib.dart' show isUserDefinableOperator, | 45 export 'scanner/scannerlib.dart' show isUserDefinableOperator, |
| 47 isUnaryOperator, | 46 isUnaryOperator, |
| 48 isBinaryOperator, | 47 isBinaryOperator, |
| 49 isTernaryOperator, | 48 isTernaryOperator, |
| 50 isMinusOperator; | 49 isMinusOperator; |
| 51 export 'universe/universe.dart' show Selector, TypedSelector; | 50 export 'universe/universe.dart' show Selector, TypedSelector; |
| 52 export 'util/util.dart' | 51 export 'util/util.dart' |
| (...skipping 10 matching lines...) Expand all Loading... |
| 63 part 'constant_system_dart.dart'; | 62 part 'constant_system_dart.dart'; |
| 64 part 'diagnostic_listener.dart'; | 63 part 'diagnostic_listener.dart'; |
| 65 part 'enqueue.dart'; | 64 part 'enqueue.dart'; |
| 66 part 'library_loader.dart'; | 65 part 'library_loader.dart'; |
| 67 part 'resolved_visitor.dart'; | 66 part 'resolved_visitor.dart'; |
| 68 part 'script.dart'; | 67 part 'script.dart'; |
| 69 part 'tree_validator.dart'; | 68 part 'tree_validator.dart'; |
| 70 part 'typechecker.dart'; | 69 part 'typechecker.dart'; |
| 71 part 'warnings.dart'; | 70 part 'warnings.dart'; |
| 72 part 'world.dart'; | 71 part 'world.dart'; |
| OLD | NEW |