| 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 28 matching lines...) Expand all Loading... |
| 39 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask; | 39 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask; |
| 40 import 'dump_info.dart'; | 40 import 'dump_info.dart'; |
| 41 | 41 |
| 42 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping; | 42 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping; |
| 43 export 'scanner/scannerlib.dart' show isUserDefinableOperator, | 43 export 'scanner/scannerlib.dart' show isUserDefinableOperator, |
| 44 isUnaryOperator, | 44 isUnaryOperator, |
| 45 isBinaryOperator, | 45 isBinaryOperator, |
| 46 isTernaryOperator, | 46 isTernaryOperator, |
| 47 isMinusOperator; | 47 isMinusOperator; |
| 48 export 'universe/universe.dart' show Selector, TypedSelector; | 48 export 'universe/universe.dart' show Selector, TypedSelector; |
| 49 export 'util/util.dart' show Spannable; | 49 export 'util/util.dart' |
| 50 | 50 show Spannable, |
| 51 CURRENT_ELEMENT_SPANNABLE, |
| 52 NO_LOCATION_SPANNABLE; |
| 51 | 53 |
| 52 part 'code_buffer.dart'; | 54 part 'code_buffer.dart'; |
| 53 part 'compile_time_constants.dart'; | 55 part 'compile_time_constants.dart'; |
| 54 part 'compiler.dart'; | 56 part 'compiler.dart'; |
| 55 part 'constants.dart'; | 57 part 'constants.dart'; |
| 56 part 'constant_system.dart'; | 58 part 'constant_system.dart'; |
| 57 part 'constant_system_dart.dart'; | 59 part 'constant_system_dart.dart'; |
| 58 part 'diagnostic_listener.dart'; | 60 part 'diagnostic_listener.dart'; |
| 59 part 'enqueue.dart'; | 61 part 'enqueue.dart'; |
| 60 part 'library_loader.dart'; | 62 part 'library_loader.dart'; |
| 61 part 'resolved_visitor.dart'; | 63 part 'resolved_visitor.dart'; |
| 62 part 'script.dart'; | 64 part 'script.dart'; |
| 63 part 'tree_validator.dart'; | 65 part 'tree_validator.dart'; |
| 64 part 'typechecker.dart'; | 66 part 'typechecker.dart'; |
| 65 part 'warnings.dart'; | 67 part 'warnings.dart'; |
| 66 part 'world.dart'; | 68 part 'world.dart'; |
| OLD | NEW |