| 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 import 'dart:profiler' show | 9 import 'dart:profiler' show |
| 10 UserTag; | 10 UserTag; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 LibraryElementX, | 27 LibraryElementX, |
| 28 PrefixElementX, | 28 PrefixElementX, |
| 29 VoidElementX, | 29 VoidElementX, |
| 30 AnalyzableElement, | 30 AnalyzableElement, |
| 31 DeferredLoaderGetterElementX; | 31 DeferredLoaderGetterElementX; |
| 32 import 'helpers/helpers.dart'; // Included for debug helpers. | 32 import 'helpers/helpers.dart'; // Included for debug helpers. |
| 33 import 'js/js.dart' as js; | 33 import 'js/js.dart' as js; |
| 34 import 'js_backend/js_backend.dart' as js_backend; | 34 import 'js_backend/js_backend.dart' as js_backend; |
| 35 import 'library_loader.dart' | 35 import 'library_loader.dart' |
| 36 show LibraryLoader, | 36 show LibraryLoader, |
| 37 LibraryLoaderTask; | 37 LibraryLoaderTask, |
| 38 LoadedLibraries; |
| 38 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask; | 39 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask; |
| 39 import 'native/native.dart' as native; | 40 import 'native/native.dart' as native; |
| 40 import 'ordered_typeset.dart'; | 41 import 'ordered_typeset.dart'; |
| 41 import 'patch_parser.dart'; | 42 import 'patch_parser.dart'; |
| 42 import 'resolution/class_members.dart' show MembersCreator; | 43 import 'resolution/class_members.dart' show MembersCreator; |
| 43 import 'resolution/resolution.dart'; | 44 import 'resolution/resolution.dart'; |
| 44 import 'scanner/scannerlib.dart'; | 45 import 'scanner/scannerlib.dart'; |
| 45 import 'ssa/ssa.dart'; | 46 import 'ssa/ssa.dart'; |
| 46 import 'source_file.dart' show SourceFile; | 47 import 'source_file.dart' show SourceFile; |
| 47 import 'tracer.dart' show Tracer; | 48 import 'tracer.dart' show Tracer; |
| 48 import 'tree/tree.dart'; | 49 import 'tree/tree.dart'; |
| 49 import 'types/types.dart' as ti; | 50 import 'types/types.dart' as ti; |
| 50 import 'universe/universe.dart'; | 51 import 'universe/universe.dart'; |
| 51 import 'util/characters.dart' show $_; | 52 import 'util/characters.dart' show $_; |
| 53 import 'util/uri_extras.dart' as uri_extras show relativize; |
| 52 import 'util/util.dart'; | 54 import 'util/util.dart'; |
| 53 | 55 |
| 54 export 'helpers/helpers.dart'; | 56 export 'helpers/helpers.dart'; |
| 55 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping; | 57 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping; |
| 56 export 'scanner/scannerlib.dart' show isUserDefinableOperator, | 58 export 'scanner/scannerlib.dart' show isUserDefinableOperator, |
| 57 isUnaryOperator, | 59 isUnaryOperator, |
| 58 isBinaryOperator, | 60 isBinaryOperator, |
| 59 isTernaryOperator, | 61 isTernaryOperator, |
| 60 isMinusOperator; | 62 isMinusOperator; |
| 61 export 'universe/universe.dart' show Selector, TypedSelector; | 63 export 'universe/universe.dart' show Selector, TypedSelector; |
| 62 export 'util/util.dart' | 64 export 'util/util.dart' |
| 63 show Spannable, | 65 show Spannable, |
| 64 CURRENT_ELEMENT_SPANNABLE, | 66 CURRENT_ELEMENT_SPANNABLE, |
| 65 NO_LOCATION_SPANNABLE; | 67 NO_LOCATION_SPANNABLE; |
| 66 | 68 |
| 67 part 'code_buffer.dart'; | 69 part 'code_buffer.dart'; |
| 68 part 'compile_time_constants.dart'; | 70 part 'compile_time_constants.dart'; |
| 69 part 'compiler.dart'; | 71 part 'compiler.dart'; |
| 70 part 'constant_system.dart'; | 72 part 'constant_system.dart'; |
| 71 part 'constant_system_dart.dart'; | 73 part 'constant_system_dart.dart'; |
| 72 part 'diagnostic_listener.dart'; | 74 part 'diagnostic_listener.dart'; |
| 73 part 'enqueue.dart'; | 75 part 'enqueue.dart'; |
| 74 part 'resolved_visitor.dart'; | 76 part 'resolved_visitor.dart'; |
| 75 part 'script.dart'; | 77 part 'script.dart'; |
| 76 part 'typechecker.dart'; | 78 part 'typechecker.dart'; |
| 77 part 'warnings.dart'; | 79 part 'warnings.dart'; |
| 78 part 'world.dart'; | 80 part 'world.dart'; |
| OLD | NEW |