@@ -75,7 +75,6 @@ import 'universe/selector.dart' show Selector;
7575import 'universe/codegen_world_builder.dart' ;
7676import 'universe/resolution_world_builder.dart' ;
7777import 'universe/world_impact.dart' show WorldImpact, WorldImpactBuilderImpl;
78- import 'world.dart' show JClosedWorld;
7978import 'compiler_migrated.dart' ;
8079
8180/// Implementation of the compiler using a [api.CompilerInput] for supplying
@@ -598,16 +597,16 @@ class Compiler
598597 globalTypeInferenceResultsData);
599598 }
600599
601- Future <DataAndIndices <JsClosedWorld >> produceClosedWorld (
600+ Future <DataAndIndices <JClosedWorld >> produceClosedWorld (
602601 load_kernel.Output output, ModuleData moduleData) async {
603602 ir.Component component = output.component;
604- DataAndIndices <JsClosedWorld > closedWorldAndIndices;
603+ DataAndIndices <JClosedWorld > closedWorldAndIndices;
605604 if (options.readClosedWorldUri == null ) {
606605 Uri rootLibraryUri = output.rootLibraryUri;
607606 Iterable <Uri > libraries = output.libraries;
608- JsClosedWorld closedWorld =
607+ JClosedWorld closedWorld =
609608 computeClosedWorld (component, moduleData, rootLibraryUri, libraries);
610- closedWorldAndIndices = DataAndIndices <JsClosedWorld >(closedWorld, null );
609+ closedWorldAndIndices = DataAndIndices <JClosedWorld >(closedWorld, null );
611610 if (options.writeClosedWorldUri != null ) {
612611 serializationTask.serializeComponent (
613612 closedWorld.elementMap.programEnv.mainComponent);
@@ -633,15 +632,15 @@ class Compiler
633632 options.writeClosedWorldUri != null ;
634633
635634 bool shouldStopAfterClosedWorld (
636- DataAndIndices <JsClosedWorld > closedWorldAndIndices) =>
635+ DataAndIndices <JClosedWorld > closedWorldAndIndices) =>
637636 closedWorldAndIndices == null ||
638637 closedWorldAndIndices.data == null ||
639638 shouldStopAfterClosedWorldFromFlags;
640639
641640 Future <DataAndIndices <GlobalTypeInferenceResults >>
642641 produceGlobalTypeInferenceResults (
643- DataAndIndices <JsClosedWorld > closedWorldAndIndices) async {
644- JsClosedWorld closedWorld = closedWorldAndIndices.data;
642+ DataAndIndices <JClosedWorld > closedWorldAndIndices) async {
643+ JClosedWorld closedWorld = closedWorldAndIndices.data;
645644 DataAndIndices <GlobalTypeInferenceResults > globalTypeInferenceResults;
646645 if (options.readDataUri == null ) {
647646 if (options.experimentalInferrer) {
@@ -727,7 +726,7 @@ class Compiler
727726 if (shouldStopAfterModularAnalysis) return ;
728727
729728 // Compute closed world.
730- DataAndIndices <JsClosedWorld > closedWorldAndIndices =
729+ DataAndIndices <JClosedWorld > closedWorldAndIndices =
731730 await produceClosedWorld (output, moduleData);
732731 if (shouldStopAfterClosedWorld (closedWorldAndIndices)) return ;
733732
0 commit comments