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 ConstantEnvironment, |
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, |
22 FunctionType, | 22 FunctionType, |
23 InterfaceType, | 23 InterfaceType, |
24 TypeVariableType, | 24 TypeVariableType, |
25 Types; | 25 Types; |
26 | 26 |
27 export 'elements/elements.dart' show | 27 export 'elements/elements.dart' show |
28 ClassElement, | 28 ClassElement, |
29 ClosureFieldElement, | 29 ClosureFieldElement, |
| 30 CompilationUnitElement, |
30 Element, | 31 Element, |
31 Elements, | 32 Elements, |
32 FunctionElement, | 33 FunctionElement, |
33 FunctionSignature, | 34 FunctionSignature, |
34 LibraryElement, | 35 LibraryElement, |
35 MetadataAnnotation, | 36 MetadataAnnotation, |
36 MixinApplicationElement, | 37 MixinApplicationElement, |
37 TypedefElement, | 38 TypedefElement, |
38 VariableElement; | 39 VariableElement; |
39 | 40 |
40 export 'tree/tree.dart' show | 41 export 'tree/tree.dart' show |
41 Node; | 42 Node; |
42 | 43 |
43 export 'types/types.dart' show | 44 export 'types/types.dart' show |
44 TypeMask; | 45 TypeMask; |
45 | 46 |
46 export 'universe/universe.dart' show | 47 export 'universe/universe.dart' show |
47 SelectorKind; | 48 SelectorKind; |
48 | 49 |
49 export 'util/util.dart' show | 50 export 'util/util.dart' show |
50 Link, | 51 Link, |
51 SpannableAssertionFailure; | 52 SpannableAssertionFailure; |
OLD | NEW |