| 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, LinkedHashMap; | 8 import 'dart:collection' show Queue, LinkedHashMap; |
| 9 | 9 |
| 10 import 'closure.dart' as closureMapping; | 10 import 'closure.dart' as closureMapping; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 import 'tree/tree.dart'; | 25 import 'tree/tree.dart'; |
| 26 import 'universe/universe.dart'; | 26 import 'universe/universe.dart'; |
| 27 import 'util/util.dart'; | 27 import 'util/util.dart'; |
| 28 import '../compiler.dart' as api; | 28 import '../compiler.dart' as api; |
| 29 import 'patch_parser.dart'; | 29 import 'patch_parser.dart'; |
| 30 import 'types/types.dart' as ti; | 30 import 'types/types.dart' as ti; |
| 31 import 'resolution/resolution.dart'; | 31 import 'resolution/resolution.dart'; |
| 32 import 'source_file.dart' show SourceFile; | 32 import 'source_file.dart' show SourceFile; |
| 33 import 'js/js.dart' as js; | 33 import 'js/js.dart' as js; |
| 34 import 'deferred_load.dart' show DeferredLoadTask; | 34 import 'deferred_load.dart' show DeferredLoadTask; |
| 35 import 'inferrer/container_tracer.dart' show ContainerTracer; | |
| 36 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask; | 35 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask; |
| 37 | 36 |
| 38 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping; | 37 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping; |
| 39 export 'scanner/scannerlib.dart' show SourceString, | 38 export 'scanner/scannerlib.dart' show SourceString, |
| 40 isUserDefinableOperator, | 39 isUserDefinableOperator, |
| 41 isUnaryOperator, | 40 isUnaryOperator, |
| 42 isBinaryOperator, | 41 isBinaryOperator, |
| 43 isTernaryOperator, | 42 isTernaryOperator, |
| 44 isMinusOperator; | 43 isMinusOperator; |
| 45 export 'universe/universe.dart' show Selector, TypedSelector; | 44 export 'universe/universe.dart' show Selector, TypedSelector; |
| 46 | 45 |
| 47 part 'code_buffer.dart'; | 46 part 'code_buffer.dart'; |
| 48 part 'compile_time_constants.dart'; | 47 part 'compile_time_constants.dart'; |
| 49 part 'compiler.dart'; | 48 part 'compiler.dart'; |
| 50 part 'constants.dart'; | 49 part 'constants.dart'; |
| 51 part 'constant_system.dart'; | 50 part 'constant_system.dart'; |
| 52 part 'constant_system_dart.dart'; | 51 part 'constant_system_dart.dart'; |
| 53 part 'diagnostic_listener.dart'; | 52 part 'diagnostic_listener.dart'; |
| 54 part 'enqueue.dart'; | 53 part 'enqueue.dart'; |
| 55 part 'library_loader.dart'; | 54 part 'library_loader.dart'; |
| 56 part 'resolved_visitor.dart'; | 55 part 'resolved_visitor.dart'; |
| 57 part 'script.dart'; | 56 part 'script.dart'; |
| 58 part 'tree_validator.dart'; | 57 part 'tree_validator.dart'; |
| 59 part 'typechecker.dart'; | 58 part 'typechecker.dart'; |
| 60 part 'warnings.dart'; | 59 part 'warnings.dart'; |
| 61 part 'world.dart'; | 60 part 'world.dart'; |
| OLD | NEW |