| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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.common; | 5 library dart2js.common; |
| 6 | 6 |
| 7 export 'dart2jslib.dart' show | 7 export 'dart2jslib.dart' show |
| 8 CompilerTask, | 8 CompilerTask, |
| 9 Compiler, | 9 Compiler, |
| 10 Constant, | 10 Constant, |
| 11 ConstantEnvironment, | 11 ConstantHandler, |
| 12 InterceptorConstant, | 12 InterceptorConstant, |
| 13 MessageKind, | 13 MessageKind, |
| 14 NullConstant, | 14 NullConstant, |
| 15 Selector, | 15 Selector, |
| 16 TreeElements, | 16 TreeElements, |
| 17 TypeConstant, | 17 TypeConstant, |
| 18 invariant; | 18 invariant; |
| 19 | 19 |
| 20 export 'dart_types.dart' show | 20 export 'dart_types.dart' show |
| 21 DartType, | 21 DartType, |
| (...skipping 20 matching lines...) Expand all Loading... |
| 42 | 42 |
| 43 export 'types/types.dart' show | 43 export 'types/types.dart' show |
| 44 TypeMask; | 44 TypeMask; |
| 45 | 45 |
| 46 export 'universe/universe.dart' show | 46 export 'universe/universe.dart' show |
| 47 SelectorKind; | 47 SelectorKind; |
| 48 | 48 |
| 49 export 'util/util.dart' show | 49 export 'util/util.dart' show |
| 50 Link, | 50 Link, |
| 51 SpannableAssertionFailure; | 51 SpannableAssertionFailure; |
| OLD | NEW |