sbt/interface/src/main/java/xsbti/compile/CachedCompiler.java

14 lines
481 B
Java
Raw Normal View History

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);
}