Index: pkg/compiler/lib/src/compiler.dart |
diff --git a/pkg/compiler/lib/src/compiler.dart b/pkg/compiler/lib/src/compiler.dart |
index 86526202c70b87005199f9ffc053f2c2440ba004..2461937a49d187c9efccc504a2f7a7e6385d8be2 100644 |
--- a/pkg/compiler/lib/src/compiler.dart |
+++ b/pkg/compiler/lib/src/compiler.dart |
@@ -73,7 +73,7 @@ import 'typechecker.dart' show TypeCheckerTask; |
import 'types/types.dart' show GlobalTypeInferenceTask; |
import 'types/masks.dart' show CommonMasks; |
import 'universe/selector.dart' show Selector; |
-import 'universe/universe.dart' show Universe; |
+import 'universe/universe.dart' show ResolutionUniverse, CodegenUniverse; |
import 'universe/use.dart' show StaticUse; |
import 'universe/world_impact.dart' show ImpactStrategy, WorldImpact; |
import 'util/util.dart' show Link, Setlet; |
@@ -327,8 +327,8 @@ abstract class Compiler implements LibraryLoaderListener { |
resolution, backend.constantCompilerTask, openWorld, measurer); |
} |
- Universe get resolverWorld => enqueuer.resolution.universe; |
- Universe get codegenWorld => enqueuer.codegen.universe; |
+ ResolutionUniverse get resolverWorld => enqueuer.resolution.universe; |
Harry Terkelsen
2016/09/19 18:07:10
also change the names to resolverUniverse and code
Johnni Winther
2016/09/21 09:13:04
I'll wait with that until the unification of world
|
+ CodegenUniverse get codegenWorld => enqueuer.codegen.universe; |
bool get analyzeAll => options.analyzeAll || compileAll; |