Exemplo n.º 1
0
 Recompiler(
     OutboxDir outboxDir,
     LauncherDir launcherDir,
     String inputModuleName,
     Options options,
     UnitCache unitCache,
     MinimalRebuildCacheManager minimalRebuildCacheManager) {
   this.outboxDir = outboxDir;
   this.launcherDir = launcherDir;
   this.inputModuleName = inputModuleName;
   this.options = options;
   this.unitCache = unitCache;
   this.minimalRebuildCacheManager = minimalRebuildCacheManager;
   this.serverPrefix = options.getPreferredHost() + ":" + options.getPort();
   compilerContext = compilerContextBuilder.build();
 }