Packages

object Trees

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Trees
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
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 BigIntLiteral(value: BigInt)(implicit pos: Position) extends Tree with Literal with Product with Serializable
  5. case class BinaryOp(op: Code, 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 %=

  6. class Block extends Tree
  7. case class BooleanLiteral(value: Boolean)(implicit pos: Position) extends Tree with Literal with Product with Serializable
  8. case class BracketSelect(qualifier: Tree, item: Tree)(implicit pos: Position) extends Tree with Product with Serializable
  9. case class Break(label: Option[Ident] = None)(implicit pos: Position) extends Tree with Product with Serializable
  10. case class ClassDef(className: Option[Ident], parentClass: Option[Tree], members: List[Tree])(implicit pos: Position) extends Tree with Product with Serializable
  11. case class ComputedName(tree: Tree) extends PropertyName with Product with Serializable
  12. case class Continue(label: Option[Ident] = None)(implicit pos: Position) extends Tree with Product with Serializable
  13. case class Debugger()(implicit pos: Position) extends Tree with Product with Serializable
  14. case class Delete(prop: Tree)(implicit pos: Position) extends Tree with Product with Serializable
  15. case class DoWhile(body: Tree, cond: Tree, label: Option[Ident] = None)(implicit pos: Position) extends Tree with Product with Serializable
  16. case class DocComment(text: String)(implicit pos: Position) extends Tree with Product with Serializable
  17. case class DotSelect(qualifier: Tree, item: Ident)(implicit pos: Position) extends Tree with Product with Serializable
  18. case class DoubleLiteral(value: Double)(implicit pos: Position) extends Tree with Literal with Product with Serializable
  19. case class Export(bindings: List[(Ident, ExportName)])(implicit pos: Position) extends Tree with Product with Serializable

    export statement.

    export statement.

    This corresponds to the following syntax:

    export { <binding1_1> as <binding1_2>, ..., <bindingN_1> as <bindingN_2> }

    The _1 parts of bindings are therefore the identifiers from the current module that are exported. The _2 parts are the names under which they are exported to other modules.

  20. case class ExportName(name: String)(implicit pos: Position) extends Product with Serializable

    The name of an ES module export.

    The name of an ES module export.

    It must be a valid IdentifierName, as tested by ExportName.isValidExportName.

  21. case class For(init: Tree, guard: Tree, update: Tree, body: Tree)(implicit pos: Position) extends Tree with Product with Serializable
  22. case class ForIn(lhs: Tree, obj: Tree, body: Tree)(implicit pos: Position) extends Tree with Product with Serializable
  23. case class Function(arrow: Boolean, args: List[ParamDef], body: Tree)(implicit pos: Position) extends Tree with Product with Serializable
  24. case class FunctionDef(name: Ident, args: List[ParamDef], body: Tree)(implicit pos: Position) extends Tree with Product with Serializable
  25. case class GetterDef(static: Boolean, name: PropertyName, body: Tree)(implicit pos: Position) extends Tree with Product with Serializable
  26. case class Ident(name: String, originalName: Option[String])(implicit pos: Position) extends PropertyName with Product with Serializable
  27. case class If(cond: Tree, thenp: Tree, elsep: Tree)(implicit pos: Position) extends Tree with Product with Serializable
  28. case class Import(bindings: List[(ExportName, Ident)], from: StringLiteral)(implicit pos: Position) extends Tree with Product with Serializable

    import statement, except namespace import.

    import statement, except namespace import.

    This corresponds to the following syntax:

    import { <binding1_1> as <binding1_2>, ..., <bindingN_1> as <bindingN_2> } from <from>

    The _1 parts of bindings are therefore the identifier names that are imported, as specified in export clauses of the module. The _2 parts are the names under which they are imported in the current module.

    Special cases:

    • When _1.name == _2.name, there is shorter syntax in ES, i.e., import { binding } from 'from'.
    • When _1.name == "default", it is equivalent to a default import.
  29. case class ImportNamespace(binding: Ident, from: StringLiteral)(implicit pos: Position) extends Tree with Product with Serializable

    Namespace import statement.

    Namespace import statement.

    This corresponds to the following syntax:

    import * as <binding> from <from>
  30. case class IncDec(prefix: Boolean, inc: Boolean, arg: Tree)(implicit pos: Position) extends Tree with Product with Serializable

    ++x, x++, --x or x--.

  31. case class IntLiteral(value: Int)(implicit pos: Position) extends Tree with Literal with Product with Serializable
  32. case class Labeled(label: Ident, body: Tree)(implicit pos: Position) extends Tree with Product with Serializable
  33. case class Let(name: Ident, mutable: Boolean, rhs: Option[Tree])(implicit pos: Position) extends Tree with LocalDef with Product with Serializable

    ES6 let or const (depending on the mutable flag).

  34. sealed trait Literal extends Tree

    Marker for literals.

    Marker for literals. Literals are always pure.

  35. sealed trait LocalDef extends Tree
  36. case class MethodDef(static: Boolean, name: PropertyName, args: List[ParamDef], body: Tree)(implicit pos: Position) extends Tree with Product with Serializable
  37. case class New(ctor: Tree, args: List[Tree])(implicit pos: Position) extends Tree with Product with Serializable
  38. case class Null()(implicit pos: Position) extends Tree with Literal with Product with Serializable
  39. case class ObjectConstr(fields: List[(PropertyName, Tree)])(implicit pos: Position) extends Tree with Product with Serializable
  40. case class ParamDef(name: Ident, rest: Boolean)(implicit pos: Position) extends Tree with LocalDef with Product with Serializable
  41. sealed trait PropertyName extends AnyRef
  42. case class Return(expr: Tree)(implicit pos: Position) extends Tree with Product with Serializable
  43. case class SetterDef(static: Boolean, name: PropertyName, param: ParamDef, body: Tree)(implicit pos: Position) extends Tree with Product with Serializable
  44. case class Skip()(implicit pos: Position) extends Tree with Product with Serializable
  45. case class Spread(items: Tree)(implicit pos: Position) extends Tree with Product with Serializable

    ...items, the "spread" operator of ECMAScript 6.

    ...items, the "spread" operator of ECMAScript 6.

    It is only valid in ECMAScript 6, in the args/items of a New, Apply, or ArrayConstr.

    items

    An iterable whose items will be spread

  46. case class StringLiteral(value: String)(implicit pos: Position) extends Tree with Literal with PropertyName with Product with Serializable
  47. case class Super()(implicit pos: Position) extends Tree with Product with Serializable
  48. case class Switch(selector: Tree, cases: List[(Tree, Tree)], default: Tree)(implicit pos: Position) extends Tree with Product with Serializable
  49. case class This()(implicit pos: Position) extends Tree with Product with Serializable
  50. case class Throw(expr: Tree)(implicit pos: Position) extends Tree with Product with Serializable
  51. sealed abstract class Tree extends AnyRef

    AST node of JavaScript.

  52. case class TryCatch(block: Tree, errVar: Ident, handler: Tree)(implicit pos: Position) extends Tree with Product with Serializable
  53. case class TryFinally(block: Tree, finalizer: Tree)(implicit pos: Position) extends Tree with Product with Serializable
  54. case class UnaryOp(op: Code, 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 --

  55. case class Undefined()(implicit pos: Position) extends Tree with Literal with Product with Serializable
  56. case class VarDef(name: Ident, rhs: Option[Tree])(implicit pos: Position) extends Tree with LocalDef with Product with Serializable
  57. case class VarRef(ident: Ident)(implicit pos: Position) extends Tree with Product with Serializable
  58. 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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  20. object BinaryOp extends Serializable
  21. object Block
  22. object ExportName extends Serializable
  23. object Ident extends Serializable
  24. object UnaryOp extends Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped