mirror of https://github.com/sbt/sbt.git
11 lines
252 B
Java
11 lines
252 B
Java
|
|
package xsbti.compile;
|
||
|
|
|
||
|
|
import xsbti.Logger;
|
||
|
|
import xsbti.Reporter;
|
||
|
|
|
||
|
|
public interface GlobalsCache
|
||
|
|
{
|
||
|
|
public CachedCompiler apply(String[] args, boolean forceNew, CachedCompilerProvider provider, Logger log, Reporter reporter);
|
||
|
|
public void clear();
|
||
|
|
}
|