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 | 7 |
8 export 'common/tasks.dart' show | 8 export 'common/tasks.dart' show |
9 CompilerTask; | 9 CompilerTask; |
10 | 10 |
(...skipping 14 matching lines...) Expand all Loading... |
25 Types; | 25 Types; |
26 | 26 |
27 export 'diagnostics/invariant.dart' show | 27 export 'diagnostics/invariant.dart' show |
28 invariant; | 28 invariant; |
29 | 29 |
30 export 'diagnostics/spannable.dart' show | 30 export 'diagnostics/spannable.dart' show |
31 SpannableAssertionFailure; | 31 SpannableAssertionFailure; |
32 | 32 |
33 export 'elements/elements.dart' show | 33 export 'elements/elements.dart' show |
34 ClassElement, | 34 ClassElement, |
35 ClosureFieldElement, | |
36 CompilationUnitElement, | 35 CompilationUnitElement, |
37 Element, | 36 Element, |
38 Elements, | 37 Elements, |
39 FunctionElement, | 38 FunctionElement, |
40 FunctionSignature, | 39 FunctionSignature, |
41 LibraryElement, | 40 LibraryElement, |
42 MetadataAnnotation, | 41 MetadataAnnotation, |
43 MixinApplicationElement, | 42 MixinApplicationElement, |
44 TypedefElement, | 43 TypedefElement, |
45 VariableElement; | 44 VariableElement; |
46 | 45 |
47 export 'resolution/resolution.dart' show | |
48 TreeElements; | |
49 | |
50 export 'tree/tree.dart' show | 46 export 'tree/tree.dart' show |
51 Node; | 47 Node; |
52 | 48 |
53 export 'types/types.dart' show | 49 export 'types/types.dart' show |
54 TypeMask; | 50 TypeMask; |
55 | 51 |
56 export 'universe/universe.dart' show | 52 export 'universe/universe.dart' show |
57 CallStructure, | 53 CallStructure, |
58 Selector, | 54 Selector, |
59 SelectorKind; | 55 SelectorKind; |
60 | 56 |
61 export 'util/util.dart' show | 57 export 'util/util.dart' show |
62 Link; | 58 Link; |
OLD | NEW |