All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sbt.compiler.CompilerInterfaceProvider.scala Maven / Gradle / Ivy

There is a newer version: 0.13.15
Show newest version
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 - 2025 Weber Informatics LLC | Privacy Policy