Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(169)

Side by Side Diff: sdk/lib/_internal/compiler/implementation/common.dart

Issue 694353007: Move dart2js from sdk/lib/_internal/compiler to pkg/compiler (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 library dart2js.common;
6
7 export 'constants/values.dart' show
8 ConstantValue,
9 InterceptorConstantValue,
10 NullConstantValue,
11 TypeConstantValue;
12
13 export 'dart2jslib.dart' show
14 CompilerTask,
15 Compiler,
16 ConstantEnvironment,
17 MessageKind,
18 Selector,
19 TreeElements,
20 invariant;
21
22 export 'dart_types.dart' show
23 DartType,
24 FunctionType,
25 InterfaceType,
26 TypeVariableType,
27 Types;
28
29 export 'elements/elements.dart' show
30 ClassElement,
31 ClosureFieldElement,
32 CompilationUnitElement,
33 Element,
34 Elements,
35 FunctionElement,
36 FunctionSignature,
37 LibraryElement,
38 MetadataAnnotation,
39 MixinApplicationElement,
40 TypedefElement,
41 VariableElement;
42
43 export 'tree/tree.dart' show
44 Node;
45
46 export 'types/types.dart' show
47 TypeMask;
48
49 export 'universe/universe.dart' show
50 SelectorKind;
51
52 export 'util/util.dart' show
53 Link,
54 SpannableAssertionFailure;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698