Class

sbt.internal.inc

IncrementalCompilerImpl

Related Doc: package inc

Permalink

class IncrementalCompilerImpl extends IncrementalCompiler

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

Instance Constructors

  1. new IncrementalCompilerImpl()

    Permalink

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. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def compile(scalaCompiler: ScalaCompiler, javaCompiler: JavaCompiler, sources: Array[File], classpath: Array[File], output: Output, cache: GlobalsCache, scalaOptions: Array[String], javaOptions: Array[String], previousAnalysis: Optional[CompileAnalysis], previousSetup: Optional[MiniSetup], perClasspathEntryLookup: PerClasspathEntryLookup, reporter: Reporter, compileOrder: CompileOrder, skip: Boolean, progress: Optional[CompileProgress], incrementalOptions: IncOptions, extra: Array[T2[String, String]], logger: Logger): CompileResult

    Permalink

    Performs an incremental compilation based on xsbti.compile.Inputs.

    Performs an incremental compilation based on xsbti.compile.Inputs.

    This is a Scala implementation of xsbti.compile.IncrementalCompiler, check the docs for more information on the specification of this method.

    scalaCompiler

    The Scala compiler to compile Scala sources.

    javaCompiler

    The Java compiler to compile Java sources.

    sources

    An array of Java and Scala source files to be compiled.

    classpath

    An array of files representing classpath entries.

    output

    An instance of Output to store the compiler outputs.

    cache

    Directory where previous cached compilers are stored.

    scalaOptions

    An array of options/settings for the Scala compiler.

    javaOptions

    An array of options for the Java compiler.

    previousAnalysis

    Optional previous incremental compilation analysis.

    previousSetup

    Optional previous incremental compilation setup.

    perClasspathEntryLookup

    Lookup of data structures and operations for a given classpath entry.

    reporter

    An instance of Reporter to report compiler output.

    compileOrder

    The order in which Java and Scala sources should be compiled.

    skip

    Flag to ignore this compilation run and return previous one.

    progress

    An instance of CompileProgress to keep track of the current compilation progress.

    incrementalOptions

    An Instance of IncOptions that configures the incremental compiler behaviour.

    extra

    An array of sbt tuples with extra options.

    logger

    An instance of Logger that logs Zinc output.

    returns

    An instance of xsbti.compile.CompileResult that holds information about the results of the compilation. The returned xsbti.compile.CompileResult must be used for subsequent compilations that depend on the same inputs, check its api and its field xsbti.compile.CompileAnalysis.

    Definition Classes
    IncrementalCompilerImpl → IncrementalCompiler
  7. def compile(in: Inputs, logger: Logger): CompileResult

    Permalink

    Performs an incremental compilation based on xsbti.compile.Inputs.

    Performs an incremental compilation based on xsbti.compile.Inputs.

    This is a Scala implementation of xsbti.compile.IncrementalCompiler, check the docs for more information on the specification of this method.

    in

    An instance of xsbti.compile.Inputs that collect all the inputs required to run the compiler (from sources and classpath, to compilation order, previous results, current setup, etc).

    logger

    An instance of xsbti.Logger to log Zinc output.

    returns

    An instance of xsbti.compile.CompileResult that holds information about the results of the compilation. The returned xsbti.compile.CompileResult must be used for subsequent compilations that depend on the same inputs, check its api and its field xsbti.compile.CompileAnalysis.

    Definition Classes
    IncrementalCompilerImpl → IncrementalCompiler
  8. def compilers(javaTools: JavaTools, scalac: ScalaCompiler): Compilers

    Permalink
  9. def compilers(instance: xsbti.compile.ScalaInstance, cpOptions: ClasspathOptions, javaHome: Option[File], scalac: ScalaCompiler): Compilers

    Permalink
  10. def emptyPreviousResult: PreviousResult

    Permalink
  11. final def eq(arg0: AnyRef): Boolean

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  16. def inputs(classpath: Array[File], sources: Array[File], classesDirectory: File, scalacOptions: Array[String], javacOptions: Array[String], maxErrors: Int, sourcePositionMappers: Array[Function[Position, Optional[Position]]], order: CompileOrder, compilers: Compilers, setup: Setup, pr: PreviousResult): Inputs

    Permalink
  17. def inputs(options: CompileOptions, compilers: Compilers, setup: Setup, pr: PreviousResult): Inputs

    Permalink
  18. final def isInstanceOf[T0]: Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef
  22. def previousResult(result: CompileResult): PreviousResult

    Permalink
  23. def setup(lookup: PerClasspathEntryLookup, skip: Boolean, cacheFile: File, cache: GlobalsCache, incOptions: IncOptions, reporter: Reporter, optionProgress: Option[CompileProgress], extra: Array[T2[String, String]]): Setup

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

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

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

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

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

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

Inherited from IncrementalCompiler

Inherited from AnyRef

Inherited from Any

Ungrouped