scala.scalajs.tools.classpath

PartialIRClasspath

class PartialIRClasspath extends PartialClasspath

A PartialClasspath whose scalaJSCode consists only of IR

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

Instance Constructors

  1. new PartialIRClasspath(dependencies: collection.immutable.Traversable[JSDependencyManifest], availableLibs: Map[String, VirtualJSFile], scalaJSIR: collection.immutable.Traversable[VirtualScalaJSIRFile], version: Option[String])

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. def append(that: PartialClasspath): PartialClasspath

    Appends another PartialClasspath to this one.

    Appends another PartialClasspath to this one. This means:

    • Concatenate/merge dependencies
    • Merge availableLibs (libs in that shadow libs in this)
    • Concatenate scalaJSCode (maintaining order)

    Also have a look at PartialIRClasspath#merge

    Definition Classes
    PartialClasspath
  5. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  6. val availableLibs: Map[String, VirtualJSFile]

    Definition Classes
    PartialClasspath
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. val dependencies: collection.immutable.Traversable[JSDependencyManifest]

    Definition Classes
    PartialClasspath
  9. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

    Definition Classes
    Any
  15. def merge(that: PartialIRClasspath): PartialIRClasspath

    The same as append, but does not preserve order between the IR files of both PartialIRClasspaths.

    The same as append, but does not preserve order between the IR files of both PartialIRClasspaths. This is always safe (if append is safe), since we can establish a safe order using ancestor count.

    It is **strongly** advisable to use merge over append whenever possible, since append needs to read the scalaJSCode property which triggers a packaging step.

  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. def resolve(filter: DependencyFilter): CompleteIRClasspath

    Construct a CompleteClasspath out of this PartialClasspath by:

    Construct a CompleteClasspath out of this PartialClasspath by:

    • Resolving library dependencies (and failing if they are not met)
    • Adding the CoreJSLib

    PartialIRClasspath overrides this to return a CompleteIRClasspath

    Definition Classes
    PartialIRClasspathPartialClasspath
  20. def resolveDependencies(filter: DependencyFilter): List[(VirtualJSFile, ResolutionInfo)]

    Constructs an ordered list of JS libraries to include.

    Constructs an ordered list of JS libraries to include. Fails if:

    • Dependencies have cycles
    • Not all dependencies are available
    Attributes
    protected
    Definition Classes
    PartialClasspath
  21. def scalaJSCode: collection.immutable.Seq[VirtualJSFile]

    Orders and desugars the contained IR.

    Orders and desugars the contained IR.

    Consider using ScalaJSPackager for a canonical way to do so. It allows to persist the resulting file and create a source map.

    Definition Classes
    PartialIRClasspathPartialClasspath
  22. val scalaJSIR: collection.immutable.Traversable[VirtualScalaJSIRFile]

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

    Definition Classes
    AnyRef
  24. def toString(): String

    Definition Classes
    AnyRef → Any
  25. val version: Option[String]

    Definition Classes
    PartialClasspath
  26. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from PartialClasspath

Inherited from AnyRef

Inherited from Any

Ungrouped