Package

org.scalajs

linker

Permalink

package linker

Visibility
  1. Public
  2. All

Type Members

  1. sealed abstract class CheckedBehavior extends AnyRef

    Permalink
  2. final class ClearableLinker extends GenLinker

    Permalink

    A box around a GenLinker to support clearing.

    A box around a GenLinker to support clearing.

    This further supports:

    • batch mode (clearing after every operation)
    • clearing if linker throws

    This class is not thread-safe.

  3. trait GenLinker extends AnyRef

    Permalink

    Common supertrait of Linker and ClearableLinker.

    Common supertrait of Linker and ClearableLinker.

    Essentially anything that has the link and linkUnit methods.

  4. final class LinkedClass extends AnyRef

    Permalink

    A ClassDef after linking.

    A ClassDef after linking.

    Note that the version in the LinkedClass does not cover staticMethods, memberMethods and exportedMembers as they have their individual versions. (The collections themselves are not versioned).

    Moreover, the version is relative to the identity of a LinkedClass. The definition of identity varies as linked classes progress through the linking pipeline, but it only gets stronger, i.e., if two linked classes are id-different at phase P, then they must also be id-different at phase P+1. The converse is not true. This guarantees that versions can be used reliably to determine at phase P+1 whether a linked class coming from phase P must be reprocessed.

  5. final class Linker extends GenLinker

    Permalink

    The Scala.js linker

  6. class LinkingException extends Exception

    Permalink

    Thrown by the linker when linking cannot be performed.

  7. final class LinkingUnit extends AnyRef

    Permalink
  8. sealed abstract class ModuleInitializer extends AnyRef

    Permalink

    A module initializer for a Scala.js application.

    A module initializer for a Scala.js application.

    When linking a Scala.js application, a sequence of ModuleInitializers can be given. Those module initializers will be executed at the startup of the application. More specifically, the top-level code of the ECMAScript 2015 module emitted for the application will invoke the specified module initializers in the specified order, after having initialized everything else (notably static initializers).

    Instances of ModuleInitializer can be created with methods of the ModuleInitializer companion object.

  9. sealed abstract class ModuleKind extends AnyRef

    Permalink

    Kind of module structure emitted for the Scala.js output.

  10. final class Semantics extends AnyRef

    Permalink
  11. final class Versioned[+T] extends AnyRef

    Permalink

    A versioned thing, accompanied by its version.

    A versioned thing, accompanied by its version.

    Note that, as used in LinkingUnit, the version is relative to the identity of the versioned thing. The definition of identity varies as items progress through the linking pipeline, but it only gets stronger, i.e., if two items are id-different at phase P, then they must also be id-different at phase P+1. The converse is not true. This guarantees that versions can be reliably used to determine at phase P+1 whether the given item coming from phase P must be reprocessed.

Value Members

  1. object CheckedBehavior

    Permalink
  2. object Linker

    Permalink
  3. object ModuleInitializer

    Permalink

    Factory for ModuleInitializers.

  4. object ModuleKind

    Permalink
  5. object Semantics

    Permalink
  6. object StandardLinker

    Permalink
  7. object StandardLinkerPlatformExtensions

    Permalink
  8. package analyzer

    Permalink
  9. package backend

    Permalink
  10. package checker

    Permalink
  11. package frontend

    Permalink
  12. package irio

    Permalink
  13. package standard

    Permalink

Ungrouped