| 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 14 matching lines...) Expand all Loading... |
| 25 show ErroneousElementX, | 25 show ErroneousElementX, |
| 26 ClassElementX, | 26 ClassElementX, |
| 27 CompilationUnitElementX, | 27 CompilationUnitElementX, |
| 28 FunctionElementX, | 28 FunctionElementX, |
| 29 LibraryElementX, | 29 LibraryElementX, |
| 30 PrefixElementX, | 30 PrefixElementX, |
| 31 VoidElementX, | 31 VoidElementX, |
| 32 AnalyzableElement, | 32 AnalyzableElement, |
| 33 DeferredLoaderGetterElementX; | 33 DeferredLoaderGetterElementX; |
| 34 import 'helpers/helpers.dart'; // Included for debug helpers. | 34 import 'helpers/helpers.dart'; // Included for debug helpers. |
| 35 import 'io/code_output.dart' show CodeBuffer; |
| 35 import 'js/js.dart' as js; | 36 import 'js/js.dart' as js; |
| 36 import 'js_backend/js_backend.dart' as js_backend; | 37 import 'js_backend/js_backend.dart' as js_backend; |
| 37 import 'library_loader.dart' | 38 import 'library_loader.dart' |
| 38 show LibraryLoader, | 39 show LibraryLoader, |
| 39 LibraryLoaderTask, | 40 LibraryLoaderTask, |
| 40 LoadedLibraries; | 41 LoadedLibraries; |
| 41 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask; | 42 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask; |
| 42 import 'native/native.dart' as native; | 43 import 'native/native.dart' as native; |
| 43 import 'ordered_typeset.dart'; | 44 import 'ordered_typeset.dart'; |
| 44 import 'patch_parser.dart'; | 45 import 'patch_parser.dart'; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 62 isUnaryOperator, | 63 isUnaryOperator, |
| 63 isBinaryOperator, | 64 isBinaryOperator, |
| 64 isTernaryOperator, | 65 isTernaryOperator, |
| 65 isMinusOperator; | 66 isMinusOperator; |
| 66 export 'universe/universe.dart' show Selector, TypedSelector; | 67 export 'universe/universe.dart' show Selector, TypedSelector; |
| 67 export 'util/util.dart' | 68 export 'util/util.dart' |
| 68 show Spannable, | 69 show Spannable, |
| 69 CURRENT_ELEMENT_SPANNABLE, | 70 CURRENT_ELEMENT_SPANNABLE, |
| 70 NO_LOCATION_SPANNABLE; | 71 NO_LOCATION_SPANNABLE; |
| 71 | 72 |
| 72 part 'code_buffer.dart'; | |
| 73 part 'compile_time_constants.dart'; | 73 part 'compile_time_constants.dart'; |
| 74 part 'compiler.dart'; | 74 part 'compiler.dart'; |
| 75 part 'constant_system.dart'; | 75 part 'constant_system.dart'; |
| 76 part 'constant_system_dart.dart'; | 76 part 'constant_system_dart.dart'; |
| 77 part 'diagnostic_listener.dart'; | 77 part 'diagnostic_listener.dart'; |
| 78 part 'enqueue.dart'; | 78 part 'enqueue.dart'; |
| 79 part 'resolved_visitor.dart'; | 79 part 'resolved_visitor.dart'; |
| 80 part 'script.dart'; | 80 part 'script.dart'; |
| 81 part 'typechecker.dart'; | 81 part 'typechecker.dart'; |
| 82 part 'warnings.dart'; | 82 part 'warnings.dart'; |
| 83 part 'world.dart'; | 83 part 'world.dart'; |
| OLD | NEW |