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

Unified Diff: pkg/compiler/lib/src/common.dart

Issue 1348063002: Make the universe parts into small libraries. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pkg/compiler/lib/src/common/codegen.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/common.dart
diff --git a/pkg/compiler/lib/src/common.dart b/pkg/compiler/lib/src/common.dart
index b997eda1d5ffe65fda6a8660a7fcba158b2e56cf..13830f361e64c226bf25d0a20d6a74f37dd8e02e 100644
--- a/pkg/compiler/lib/src/common.dart
+++ b/pkg/compiler/lib/src/common.dart
@@ -5,6 +5,9 @@
library dart2js.common;
+export 'common/names.dart' show
+ Names;
+
export 'common/tasks.dart' show
CompilerTask;
@@ -53,10 +56,11 @@ export 'tree/tree.dart' show
export 'types/types.dart' show
TypeMask;
-export 'universe/universe.dart' show
- CallStructure,
- Selector,
- SelectorKind;
+export 'universe/call_structure.dart' show
+ CallStructure;
+
+export 'universe/selector.dart' show
+ Selector;
export 'util/util.dart' show
Link;
« no previous file with comments | « no previous file | pkg/compiler/lib/src/common/codegen.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698