sbt.compiler.CompilerInterfaceProvider.scala Maven / Gradle / Ivy
package sbt
package compiler
import java.io.File
trait CompilerInterfaceProvider
{
def apply(scalaInstance: xsbti.compile.ScalaInstance, log: Logger): File
}
object CompilerInterfaceProvider
{
def constant(file: File): CompilerInterfaceProvider = new CompilerInterfaceProvider {
def apply(scalaInstance: xsbti.compile.ScalaInstance, log: Logger): File = file
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy