| 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 |
| 11 UserTag; | 11 UserTag; |
| 12 | 12 |
| 13 import 'closure.dart' as closureMapping; | 13 import 'closure.dart' as closureMapping; |
| 14 import 'dart_backend/dart_backend.dart' as dart_backend; | 14 import 'dart_backend/dart_backend.dart' as dart_backend; |
| 15 import 'dart_types.dart'; | 15 import 'dart_types.dart'; |
| 16 import 'elements/elements.dart'; | 16 import 'elements/elements.dart'; |
| 17 import 'elements/modelx.dart' | 17 import 'elements/modelx.dart' |
| 18 show ErroneousElementX, | 18 show ErroneousElementX, |
| 19 ClassElementX, | 19 ClassElementX, |
| 20 CompilationUnitElementX, | 20 CompilationUnitElementX, |
| 21 LibraryElementX, | 21 LibraryElementX, |
| 22 PrefixElementX, | 22 PrefixElementX, |
| 23 VoidElementX, | 23 VoidElementX, |
| 24 AnalyzableElement, | 24 AnalyzableElement, |
| 25 DeferredLoaderGetterElementX; | 25 DeferredLoaderGetterElementX; |
| 26 import 'helpers/helpers.dart'; | 26 import 'helpers/helpers.dart'; |
| 27 import 'js_backend/js_backend.dart' as js_backend; | 27 import 'js_backend/js_backend.dart' as js_backend; |
| 28 import 'library_loader.dart' |
| 29 show LibraryLoader, |
| 30 LibraryLoaderCallback, |
| 31 LibraryLoaderTask; |
| 28 import 'native_handler.dart' as native; | 32 import 'native_handler.dart' as native; |
| 29 import 'scanner/scannerlib.dart'; | 33 import 'scanner/scannerlib.dart'; |
| 30 import 'ssa/ssa.dart'; | 34 import 'ssa/ssa.dart'; |
| 31 import 'tree/tree.dart'; | 35 import 'tree/tree.dart'; |
| 32 import 'ir/ir_builder.dart' show IrBuilderTask; | 36 import 'ir/ir_builder.dart' show IrBuilderTask; |
| 33 import 'universe/universe.dart'; | 37 import 'universe/universe.dart'; |
| 34 import 'util/util.dart'; | 38 import 'util/util.dart'; |
| 35 import 'util/characters.dart' show $_; | 39 import 'util/characters.dart' show $_; |
| 36 import '../compiler.dart' as api; | 40 import '../compiler.dart' as api; |
| 37 import 'patch_parser.dart'; | 41 import 'patch_parser.dart'; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 60 export 'helpers/helpers.dart'; | 64 export 'helpers/helpers.dart'; |
| 61 | 65 |
| 62 part 'code_buffer.dart'; | 66 part 'code_buffer.dart'; |
| 63 part 'compile_time_constants.dart'; | 67 part 'compile_time_constants.dart'; |
| 64 part 'compiler.dart'; | 68 part 'compiler.dart'; |
| 65 part 'constants.dart'; | 69 part 'constants.dart'; |
| 66 part 'constant_system.dart'; | 70 part 'constant_system.dart'; |
| 67 part 'constant_system_dart.dart'; | 71 part 'constant_system_dart.dart'; |
| 68 part 'diagnostic_listener.dart'; | 72 part 'diagnostic_listener.dart'; |
| 69 part 'enqueue.dart'; | 73 part 'enqueue.dart'; |
| 70 part 'library_loader.dart'; | |
| 71 part 'resolved_visitor.dart'; | 74 part 'resolved_visitor.dart'; |
| 72 part 'script.dart'; | 75 part 'script.dart'; |
| 73 part 'tree_validator.dart'; | 76 part 'tree_validator.dart'; |
| 74 part 'typechecker.dart'; | 77 part 'typechecker.dart'; |
| 75 part 'warnings.dart'; | 78 part 'warnings.dart'; |
| 76 part 'world.dart'; | 79 part 'world.dart'; |
| OLD | NEW |