org.scalajs.core.tools.javascript

Trees

object Trees

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

Type Members

  1. case class Apply(fun: Tree, args: List[Tree])(implicit pos: Position) extends Tree with Product with Serializable

    Syntactic apply.

    Syntactic apply. It is a method call if fun is a dot-select or bracket-select. It is a function call otherwise.

  2. case class ArrayConstr(items: List[Tree])(implicit pos: Position) extends Tree with Product with Serializable

  3. case class Assign(lhs: Tree, rhs: Tree)(implicit pos: Position) extends Tree with Product with Serializable

  4. case class BinaryOp(op: String, lhs: Tree, rhs: Tree)(implicit pos: Position) extends Tree with Product with Serializable

    Binary operation (always preserves pureness).

    Binary operation (always preserves pureness).

    Operations which do not preserve pureness are not allowed in this tree. These are notably +=, -=, *=, /= and %=

  5. class Block extends Tree

  6. case class BooleanLiteral(value: Boolean)(implicit pos: Position) extends Tree with Literal with Product with Serializable

  7. case class BracketSelect(qualifier: Tree, item: Tree)(implicit pos: Position) extends Tree with Product with Serializable

  8. case class Break(label: Option[Ident] = None)(implicit pos: Position) extends Tree with Product with Serializable

  9. case class Continue(label: Option[Ident] = None)(implicit pos: Position) extends Tree with Product with Serializable

  10. case class Debugger()(implicit pos: Position) extends Tree with Product with Serializable

  11. case class Delete(prop: Tree)(implicit pos: Position) extends Tree with Product with Serializable

  12. case class DoWhile(body: Tree, cond: Tree, label: Option[Ident] = None)(implicit pos: Position) extends Tree with Product with Serializable

  13. case class DocComment(text: String)(implicit pos: Position) extends Tree with Product with Serializable

  14. case class DotSelect(qualifier: Tree, item: Ident)(implicit pos: Position) extends Tree with Product with Serializable

  15. case class DoubleLiteral(value: Double)(implicit pos: Position) extends Tree with Literal with Product with Serializable

  16. case class Function(args: List[ParamDef], body: Tree)(implicit pos: Position) extends Tree with Product with Serializable

  17. case class Ident(name: String, originalName: Option[String])(implicit pos: Position) extends PropertyName with Product with Serializable

  18. case class If(cond: Tree, thenp: Tree, elsep: Tree)(implicit pos: Position) extends Tree with Product with Serializable

  19. case class IntLiteral(value: Int)(implicit pos: Position) extends Tree with Literal with Product with Serializable

  20. case class Labeled(label: Ident, body: Tree)(implicit pos: Position) extends Tree with Product with Serializable

  21. sealed trait Literal extends Tree

    Marker for literals.

    Marker for literals. Literals are always pure.

  22. case class New(ctor: Tree, args: List[Tree])(implicit pos: Position) extends Tree with Product with Serializable

  23. case class Null()(implicit pos: Position) extends Tree with Literal with Product with Serializable

  24. case class ObjectConstr(fields: List[(PropertyName, Tree)])(implicit pos: Position) extends Tree with Product with Serializable

  25. case class ParamDef(name: Ident, mutable: Boolean)(implicit pos: Position) extends Tree with Product with Serializable

  26. sealed trait PropertyName extends AnyRef

  27. case class Return(expr: Tree)(implicit pos: Position) extends Tree with Product with Serializable

  28. case class Skip()(implicit pos: Position) extends Tree with Product with Serializable

  29. case class StringLiteral(value: String)(implicit pos: Position) extends Tree with Literal with PropertyName with Product with Serializable

  30. case class Switch(selector: Tree, cases: List[(Tree, Tree)], default: Tree)(implicit pos: Position) extends Tree with Product with Serializable

  31. case class This()(implicit pos: Position) extends Tree with Product with Serializable

  32. case class Throw(expr: Tree)(implicit pos: Position) extends Tree with Product with Serializable

  33. sealed abstract class Tree extends AnyRef

    AST node of JavaScript.

  34. case class Try(block: Tree, errVar: Ident, handler: Tree, finalizer: Tree)(implicit pos: Position) extends Tree with Product with Serializable

  35. case class UnaryOp(op: String, lhs: Tree)(implicit pos: Position) extends Tree with Product with Serializable

    Unary operation (always preserves pureness).

    Unary operation (always preserves pureness).

    Operations which do not preserve pureness are not allowed in this tree. These are notably ++ and --

  36. case class Undefined()(implicit pos: Position) extends Tree with Literal with Product with Serializable

  37. case class VarDef(name: Ident, mutable: Boolean, rhs: Tree)(implicit pos: Position) extends Tree with Product with Serializable

  38. case class VarRef(ident: Ident, mutable: Boolean)(implicit pos: Position) extends Tree with Product with Serializable

  39. case class While(cond: Tree, body: Tree, label: Option[Ident] = None)(implicit pos: Position) extends Tree with Product with Serializable

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. object Block

  5. object EmptyTree extends Tree with Product with Serializable

  6. object Ident extends Serializable

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  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. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  18. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  19. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped