
xsbti.compile.CachedCompiler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compiler-interface Show documentation
Show all versions of compiler-interface Show documentation
Incremental compiler of Scala
package xsbti.compile;
import xsbti.AnalysisCallback;
import xsbti.Logger;
import xsbti.Reporter;
import java.io.File;
public interface CachedCompiler
{
/** Returns an array of arguments representing the nearest command line equivalent of a call to run but without the command name itself.*/
String[] commandArguments(File[] sources);
void run(File[] sources, DependencyChanges cpChanges, AnalysisCallback callback, Logger log, Reporter delegate, CompileProgress progress);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy