| 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 |
| 8 export 'common/tasks.dart' show |
| 9 CompilerTask; |
| 10 |
| 11 export 'compiler.dart' show |
| 12 Compiler; |
| 13 |
| 7 export 'constants/values.dart' show | 14 export 'constants/values.dart' show |
| 8 ConstantValue, | 15 ConstantValue, |
| 9 InterceptorConstantValue, | 16 InterceptorConstantValue, |
| 10 NullConstantValue, | 17 NullConstantValue, |
| 11 TypeConstantValue; | 18 TypeConstantValue; |
| 12 | 19 |
| 13 export 'dart2jslib.dart' show | |
| 14 CompilerTask, | |
| 15 Compiler, | |
| 16 invariant; | |
| 17 | |
| 18 export 'dart_types.dart' show | 20 export 'dart_types.dart' show |
| 19 DartType, | 21 DartType, |
| 20 FunctionType, | 22 FunctionType, |
| 21 InterfaceType, | 23 InterfaceType, |
| 22 TypeVariableType, | 24 TypeVariableType, |
| 23 Types; | 25 Types; |
| 24 | 26 |
| 27 export 'diagnostics/invariant.dart' show |
| 28 invariant; |
| 29 |
| 30 export 'diagnostics/spannable.dart' show |
| 31 SpannableAssertionFailure; |
| 32 |
| 25 export 'elements/elements.dart' show | 33 export 'elements/elements.dart' show |
| 26 ClassElement, | 34 ClassElement, |
| 27 ClosureFieldElement, | 35 ClosureFieldElement, |
| 28 CompilationUnitElement, | 36 CompilationUnitElement, |
| 29 Element, | 37 Element, |
| 30 Elements, | 38 Elements, |
| 31 FunctionElement, | 39 FunctionElement, |
| 32 FunctionSignature, | 40 FunctionSignature, |
| 33 LibraryElement, | 41 LibraryElement, |
| 34 MetadataAnnotation, | 42 MetadataAnnotation, |
| 35 MixinApplicationElement, | 43 MixinApplicationElement, |
| 36 TypedefElement, | 44 TypedefElement, |
| 37 VariableElement; | 45 VariableElement; |
| 38 | 46 |
| 39 export 'resolution/resolution.dart' show | 47 export 'resolution/resolution.dart' show |
| 40 TreeElements; | 48 TreeElements; |
| 41 | 49 |
| 42 export 'tree/tree.dart' show | 50 export 'tree/tree.dart' show |
| 43 Node; | 51 Node; |
| 44 | 52 |
| 45 export 'types/types.dart' show | 53 export 'types/types.dart' show |
| 46 TypeMask; | 54 TypeMask; |
| 47 | 55 |
| 48 export 'universe/universe.dart' show | 56 export 'universe/universe.dart' show |
| 49 CallStructure, | 57 CallStructure, |
| 50 Selector, | 58 Selector, |
| 51 SelectorKind; | 59 SelectorKind; |
| 52 | 60 |
| 53 export 'util/util.dart' show | 61 export 'util/util.dart' show |
| 54 Link, | 62 Link; |
| 55 SpannableAssertionFailure; | |
| OLD | NEW |