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