Class

sbt.internal.inc

RawCompiler

Related Doc: package inc

Permalink

class RawCompiler extends AnyRef

Provide a basic interface to the Scala Compiler that does not analyze dependencies nor does any kind of incremental compilation.

This interface is called in the same virtual machine where it's instantiated. It's useful for raw compilation of sources, such as those of the compiler interface (bridge) and plugin code.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RawCompiler
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RawCompiler(scalaInstance: xsbti.compile.ScalaInstance, cp: ClasspathOptions, log: Logger)

    Permalink

    scalaInstance

    The Scala instance to which we create a compiler.

    cp

    The classpath options that dictate which classpath entries to use.

    log

    The logger where the Scalac compiler creation is reported.

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def apply(sources: Seq[File], classpath: Seq[File], outputDirectory: File, options: Seq[String]): Unit

    Permalink

    Run the compiler with the usual compiler inputs.

    Run the compiler with the usual compiler inputs.

    This method supports both Scalac and Dotty. To use a concrete compiler, you need to pass the ScalaInstance associated with it.

    sources

    The sources to be compiled.

    classpath

    The classpath to be used at compile time.

    outputDirectory

    The directory in which the class files are placed.

    options

    The auxiliary options to Scala compilers.

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def checkForFailure(reporter: AnyRef, args: Array[String]): Unit

    Permalink
    Attributes
    protected
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def compilerArguments: CompilerArguments

    Permalink

    Return the correct compiler arguments for the given ScalaInstance and ClasspathOptions.

    Return the correct compiler arguments for the given ScalaInstance and ClasspathOptions. Keep in mind that these compiler arguments are specific to a concrete Scala version.

  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. val scalaInstance: xsbti.compile.ScalaInstance

    Permalink

    The Scala instance to which we create a compiler.

  19. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  20. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  21. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped