| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 import 'ssa/ssa.dart'; | 57 import 'ssa/ssa.dart'; |
| 58 import 'io/source_file.dart' show SourceFile; | 58 import 'io/source_file.dart' show SourceFile; |
| 59 import 'tracer.dart' show Tracer; | 59 import 'tracer.dart' show Tracer; |
| 60 import 'tree/tree.dart'; | 60 import 'tree/tree.dart'; |
| 61 import 'types/types.dart' as ti; | 61 import 'types/types.dart' as ti; |
| 62 import 'universe/universe.dart'; | 62 import 'universe/universe.dart'; |
| 63 import 'universe/class_set.dart'; | 63 import 'universe/class_set.dart'; |
| 64 import 'util/characters.dart' show $_; | 64 import 'util/characters.dart' show $_; |
| 65 import 'util/uri_extras.dart' as uri_extras show relativize; | 65 import 'util/uri_extras.dart' as uri_extras show relativize; |
| 66 import 'util/util.dart'; | 66 import 'util/util.dart'; |
| 67 import 'warnings.dart'; |
| 67 | 68 |
| 68 export 'helpers/helpers.dart'; | 69 export 'helpers/helpers.dart'; |
| 69 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping; | 70 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping; |
| 70 export 'scanner/scannerlib.dart' show isUserDefinableOperator, | 71 export 'scanner/scannerlib.dart' show isUserDefinableOperator, |
| 71 isUnaryOperator, | 72 isUnaryOperator, |
| 72 isBinaryOperator, | 73 isBinaryOperator, |
| 73 isTernaryOperator, | 74 isTernaryOperator, |
| 74 isMinusOperator; | 75 isMinusOperator; |
| 75 export 'universe/universe.dart' show CallStructure, Selector, TypedSelector; | 76 export 'universe/universe.dart' show CallStructure, Selector, TypedSelector; |
| 76 export 'util/util.dart' | 77 export 'util/util.dart' |
| 77 show Spannable, | 78 show Spannable, |
| 78 CURRENT_ELEMENT_SPANNABLE, | 79 CURRENT_ELEMENT_SPANNABLE, |
| 79 NO_LOCATION_SPANNABLE; | 80 NO_LOCATION_SPANNABLE; |
| 81 export 'warnings.dart'; |
| 80 | 82 |
| 81 part 'compiler.dart'; | 83 part 'compiler.dart'; |
| 82 part 'diagnostic_listener.dart'; | 84 part 'diagnostic_listener.dart'; |
| 83 part 'enqueue.dart'; | 85 part 'enqueue.dart'; |
| 84 part 'resolved_visitor.dart'; | 86 part 'resolved_visitor.dart'; |
| 85 part 'script.dart'; | 87 part 'script.dart'; |
| 86 part 'typechecker.dart'; | 88 part 'typechecker.dart'; |
| 87 part 'warnings.dart'; | |
| 88 part 'world.dart'; | 89 part 'world.dart'; |
| OLD | NEW |