t

xsbti.compile

CachedCompiler

trait CachedCompiler extends AnyRef

Define the interface of a cached Scala compiler that can be run.

This cached compiler hides the implementation of a compiler by just defining two operations: #commandArguments(File[]) and DependencyChanges, AnalysisCallback, Logger, Reporter, CompileProgress).

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

Abstract Value Members

  1. abstract def commandArguments(sources: Array[File]): Array[String]

    * Return an array of arguments that represent a command-line like equivalent of a call to the Scala compiler, but without the command itself.

    * Return an array of arguments that represent a command-line like equivalent of a call to the Scala compiler, but without the command itself.

    sources

    The source files that the compiler must compile.

    returns

    The array of arguments of the Scala compiler.

  2. abstract def run(sources: Array[File], changes: DependencyChanges, callback: AnalysisCallback, logger: Logger, delegate: Reporter, progress: CompileProgress): Unit

    Run the cached Scala compiler with inputs of incremental compilation.

    Run the cached Scala compiler with inputs of incremental compilation.

    sources

    The source files to be compiled.

    changes

    The changes that have occurred since last compilation.

    callback

    The callback injected by the incremental compiler.

    logger

    The logger of the incremental compilation.

    delegate

    The reporter that informs on the compiler's output.

    progress

    The compiler progress associated with a Scala compiler.

    Annotations
    @Deprecated
    Deprecated

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped