org.scalajs.jsenv.rhino

RhinoJSEnv

final class RhinoJSEnv extends LinkingUnitComJSEnv

A JS environment using a modified Rhino interpreter (deprecated).

As of Scala.js 0.6.13, RhinoJSEnv is deprecated. It will be removed in Scala.js 1.0.0.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. RhinoJSEnv
  2. LinkingUnitComJSEnv
  3. ComJSEnv
  4. LinkingUnitAsyncJSEnv
  5. AsyncJSEnv
  6. LinkingUnitJSEnv
  7. JSEnv
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RhinoJSEnv(semantics: Semantics = Semantics.Defaults, withDOM: Boolean = false)

    Annotations
    @deprecated
    Deprecated

    (Since version 0.6.13)

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 asyncRunner(preLibs: Seq[ResolvedJSDependency], linkingUnit: LinkingUnit, postLibs: Seq[ResolvedJSDependency], code: VirtualJSFile): AsyncJSRunner

    Definition Classes
    RhinoJSEnvLinkingUnitAsyncJSEnv
  8. def asyncRunner(libs: Seq[ResolvedJSDependency], code: VirtualJSFile): AsyncJSRunner

    Definition Classes
    RhinoJSEnvAsyncJSEnv
  9. final def asyncRunner(code: VirtualJSFile): AsyncJSRunner

    Definition Classes
    AsyncJSEnv
  10. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def comRunner(preLibs: Seq[ResolvedJSDependency], linkingUnit: LinkingUnit, postLibs: Seq[ResolvedJSDependency], code: VirtualJSFile): ComJSRunner

    Definition Classes
    RhinoJSEnvLinkingUnitComJSEnv
  12. def comRunner(libs: Seq[ResolvedJSDependency], code: VirtualJSFile): ComJSRunner

    Definition Classes
    RhinoJSEnvComJSEnv
  13. final def comRunner(code: VirtualJSFile): ComJSRunner

    Definition Classes
    ComJSEnv
  14. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

    Definition Classes
    Any
  20. def jsRunner(preLibs: Seq[ResolvedJSDependency], linkingUnit: LinkingUnit, postLibs: Seq[ResolvedJSDependency], code: VirtualJSFile): JSRunner

    Prepare a runner for the code in the virtual file.

    Prepare a runner for the code in the virtual file.

    Definition Classes
    RhinoJSEnvLinkingUnitJSEnv
  21. def jsRunner(libs: Seq[ResolvedJSDependency], code: VirtualJSFile): JSRunner

    Executes code in an environment where the Scala.

    Executes code in an environment where the Scala.js library is set up to load its classes lazily.

    Other .js scripts in the inputs are executed eagerly before the provided code is called.

    Definition Classes
    RhinoJSEnvJSEnv
  22. final def jsRunner(code: VirtualJSFile): JSRunner

    Prepare a runner without any libraries.

    Prepare a runner without any libraries.

    Strictly equivalent to:

    this.jsRunner(Nil, code)
    Definition Classes
    JSEnv
  23. def loadLibs(libs: Seq[ResolvedJSDependency]): LinkingUnitComJSEnv

    Return this JSEnv with the given libraries already loaded.

    Return this JSEnv with the given libraries already loaded.

    The following two are equivalent:

    jsEnv.loadLibs(a).jsRunner(b, c)
    jsEnv.jsRunner(a ++ b, c)
    Definition Classes
    LinkingUnitComJSEnvComJSEnvLinkingUnitAsyncJSEnvAsyncJSEnvLinkingUnitJSEnvJSEnv
  24. def loadLinkingUnit(linkingUnit: LinkingUnit): ComJSEnv

    Returns a JSEnv with the given LinkingUnit already loaded.

    Returns a JSEnv with the given LinkingUnit already loaded.

    Note that any subsequent libraries will be inserted after the LinkingUnit.

    Hence, the following are equivalent:

    jsEnv.loadUnit(a).jsRunner(b, c)
    jsEnv.jsRunner(Nil, a, b, c)

    If you need to load libraries before, you can use the loadLibs method:

    jsEnv.loadLibs(a).loadUnit(b).jsRunner(c, d)
    // equivalent to
    jsEnv.jsRunner(a, b, c, d)
    Definition Classes
    RhinoJSEnvLinkingUnitComJSEnvLinkingUnitAsyncJSEnvLinkingUnitJSEnv
  25. def name: String

    Human-readable name for this JSEnv

    Human-readable name for this JSEnv

    Definition Classes
    RhinoJSEnvJSEnv
  26. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  29. val sourceMap: Boolean

  30. val symbolRequirements: SymbolRequirement

    Symbols this LinkingUnitJSEnv needs present in the LinkingUnit it receives.

    Symbols this LinkingUnitJSEnv needs present in the LinkingUnit it receives.

    Definition Classes
    RhinoJSEnvLinkingUnitJSEnv
  31. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  32. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. def withSourceMap(sourceMap: Boolean): RhinoJSEnv

Inherited from LinkingUnitComJSEnv

Inherited from ComJSEnv

Inherited from LinkingUnitAsyncJSEnv

Inherited from AsyncJSEnv

Inherited from LinkingUnitJSEnv

Inherited from JSEnv

Inherited from AnyRef

Inherited from Any

Ungrouped