org.scalajs.linker

LinkerOutput

final class LinkerOutput extends AnyRef

Output specification for a linker run.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. LinkerOutput
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

    Definition Classes
    Any
  14. val jsFile: WritableVirtualBinaryFile

    The JavaScript file a Linker writes to.

  15. val jsFileURI: Option[URI]

    URI to reach the JavaScript file from the source map.

    URI to reach the JavaScript file from the source map. This is typically a relative URI but is not required. A Linker may use this even if sourceMap is not set, but it is typically meaningless.

  16. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  19. val sourceMap: Option[WritableVirtualBinaryFile]

    The sourceMap file the linker writes to.

    The sourceMap file the linker writes to. A Linker may ignore this file. N.b. the StandardLinker will ignore it if StandardLinker.Config.sourceMap is false. Further, a Linker must not fail if this is not set, but rather not write a source map (even if it is configured to write a source map).

  20. val sourceMapURI: Option[URI]

    URI to reach the source map from the JavaScript file.

    URI to reach the source map from the JavaScript file. This is typically a relative URI but is not required. A Linker should ignore this, if sourceMap is not set or source map production is disabled.

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

    Definition Classes
    AnyRef
  22. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. def withJSFileURI(jsFileURI: URI): LinkerOutput

  27. def withSourceMap(sourceMap: WritableVirtualBinaryFile): LinkerOutput

  28. def withSourceMapURI(sourceMapURI: URI): LinkerOutput

Inherited from AnyRef

Inherited from Any

Ungrouped