c

xsbti.compile

CompileOptions

final class CompileOptions extends Serializable

Compilation options

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

Instance Constructors

  1. new CompileOptions(_classpath: Array[VirtualFile], _sources: Array[VirtualFile], _classesDirectory: Path, _scalacOptions: Array[String], _javacOptions: Array[String], _maxErrors: Int, _sourcePositionMapper: Function[Position, Position], _order: CompileOrder, _temporaryClassesDirectory: Path, _converter: FileConverter, _stamper: ReadStamps, _earlyOutput: Output)
    Attributes
    protected[compile]
  2. new CompileOptions(_classpath: Array[VirtualFile], _sources: Array[VirtualFile], _classesDirectory: Path, _scalacOptions: Array[String], _javacOptions: Array[String], _maxErrors: Int, _sourcePositionMapper: Function[Position, Position], _order: CompileOrder, _temporaryClassesDirectory: Optional[Path], _converter: Optional[FileConverter], _stamper: Optional[ReadStamps], _earlyOutput: Optional[Output])
    Attributes
    protected[compile]
  3. new CompileOptions(_classpath: Array[VirtualFile], _sources: Array[VirtualFile], _classesDirectory: Path, _scalacOptions: Array[String], _javacOptions: Array[String], _maxErrors: Int, _sourcePositionMapper: Function[Position, Position], _order: CompileOrder, _temporaryClassesDirectory: Path)
    Attributes
    protected[compile]
  4. new CompileOptions(_classpath: Array[VirtualFile], _sources: Array[VirtualFile], _classesDirectory: Path, _scalacOptions: Array[String], _javacOptions: Array[String], _maxErrors: Int, _sourcePositionMapper: Function[Position, Position], _order: CompileOrder, _temporaryClassesDirectory: Optional[Path])
    Attributes
    protected[compile]
  5. new CompileOptions(_classpath: Array[VirtualFile], _sources: Array[VirtualFile], _classesDirectory: Path, _scalacOptions: Array[String], _javacOptions: Array[String], _maxErrors: Int, _sourcePositionMapper: Function[Position, Position], _order: CompileOrder)
    Attributes
    protected[compile]
  6. new CompileOptions()
    Attributes
    protected[compile]

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 classesDirectory(): Path
  6. def classpath(): Array[VirtualFile]

    The classpath to use for compilation.

    The classpath to use for compilation. This will be modified according to the ClasspathOptions used to configure the ScalaCompiler.

  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  8. def converter(): Optional[FileConverter]

    FileConverter to convert between Path and VirtualFileRef.

  9. def earlyOutput(): Optional[Output]

    Output for pickle JAR used for build pipelining

  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(obj: Any): Boolean
    Definition Classes
    CompileOptions → AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    CompileOptions → AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. def javacOptions(): Array[String]

    The options to pass to the Java compiler other than the sources and classpath to use.

  17. def maxErrors(): Int
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. def order(): CompileOrder

    Controls the order in which Java and Scala sources are compiled.

  22. def scalacOptions(): Array[String]

    The options to pass to the Scala compiler other than the sources and classpath to use.

  23. def sourcePositionMapper(): Function[Position, Position]
  24. def sources(): Array[VirtualFile]

    All sources that should be recompiled.

    All sources that should be recompiled. This should include Scala and Java sources, which are identified by their extension.

  25. def stamper(): Optional[ReadStamps]

    ReadStamps to calculate timestamp or hash.

  26. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  27. def temporaryClassesDirectory(): Optional[Path]

    Points to a temporary classes directory where the compiler can put compilation products of any kind.

    Points to a temporary classes directory where the compiler can put compilation products of any kind. The lifetime of these compilation products is short and the temporary classes directory only needs to exist during one incremental compiler cycle.

  28. def toString(): String
    Definition Classes
    CompileOptions → AnyRef → Any
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  32. def withClassesDirectory(classesDirectory: Path): CompileOptions
  33. def withClasspath(classpath: Array[VirtualFile]): CompileOptions
  34. def withConverter(converter: FileConverter): CompileOptions
  35. def withConverter(converter: Optional[FileConverter]): CompileOptions
  36. def withEarlyOutput(earlyOutput: Output): CompileOptions
  37. def withEarlyOutput(earlyOutput: Optional[Output]): CompileOptions
  38. def withJavacOptions(javacOptions: Array[String]): CompileOptions
  39. def withMaxErrors(maxErrors: Int): CompileOptions
  40. def withOrder(order: CompileOrder): CompileOptions
  41. def withScalacOptions(scalacOptions: Array[String]): CompileOptions
  42. def withSourcePositionMapper(sourcePositionMapper: Function[Position, Position]): CompileOptions
  43. def withSources(sources: Array[VirtualFile]): CompileOptions
  44. def withStamper(stamper: ReadStamps): CompileOptions
  45. def withStamper(stamper: Optional[ReadStamps]): CompileOptions
  46. def withTemporaryClassesDirectory(temporaryClassesDirectory: Path): CompileOptions
  47. def withTemporaryClassesDirectory(temporaryClassesDirectory: Optional[Path]): CompileOptions

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped