Class

scala.tools.nsc.ast

TreeGen

Related Doc: package ast

Permalink

abstract class TreeGen extends reflect.internal.TreeGen with TreeDSL

XXX to resolve: TreeGen only assumes global is a SymbolTable, but TreeDSL at the moment expects a Global. Can we get by with SymbolTable?

Source
TreeGen.scala
Linear Supertypes
TreeDSL, reflect.internal.TreeGen, AnyRef, Any
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TreeGen
  2. TreeDSL
  3. TreeGen
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TreeGen()

    Permalink

Type Members

  1. class GetVarTraverser extends reflect.internal.SymbolTable.Traverser

    Permalink
    Definition Classes
    TreeGen

Abstract Value Members

  1. abstract val global: Global

    Permalink
    Definition Classes
    TreeGenTreeDSL → TreeGen

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink

    Test two objects for inequality.

    Test two objects for inequality.

    returns

    true if !(this == that), false otherwise.

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink

    Equivalent to x.hashCode except for boxed numeric types and null.

    Equivalent to x.hashCode except for boxed numeric types and null. For numerics, it returns a hash value which is consistent with value equality: if two value type instances compare as true, then ## will produce the same hash value for each of them. For null returns a hashcode where null.hashCode throws a NullPointerException.

    returns

    a hash value consistent with ==

    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from TreeGen to any2stringadd[TreeGen] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (TreeGen, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from TreeGen to ArrowAssoc[TreeGen] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink

    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    AnyRef → Any
  6. object CODE

    Permalink
    Definition Classes
    TreeDSL
  7. object Filter

    Permalink
    Definition Classes
    TreeGen
  8. object Yield

    Permalink
    Definition Classes
    TreeGen
  9. final def asInstanceOf[T0]: T0

    Permalink

    Cast the receiver object to be of type T0.

    Cast the receiver object to be of type T0.

    Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression 1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expression List(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested type.

    returns

    the receiver object.

    Definition Classes
    Any
    Exceptions thrown

    ClassCastException if the receiver object is not an instance of the erasure of type T0.

  10. def clone(): AnyRef

    Permalink

    Create a copy of the receiver object.

    Create a copy of the receiver object.

    The default implementation of the clone method is platform dependent.

    returns

    a copy of the receiver object.

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
    Note

    not specified by SLS as a member of AnyRef

  11. def convertToSelectFromType(qual: Global.Tree, origName: Global.Name): Global.Tree with Serializable

    Permalink

    Try to convert Select(qual, name) to a SelectFromTypeTree.

  12. def convertToTypeName(tree: Global.Tree): Option[Global.RefTree]

    Permalink

    Translate names in Select/Ident nodes to type names.

  13. def ensuring(cond: (TreeGen) ⇒ Boolean, msg: ⇒ Any): TreeGen

    Permalink
    Implicit information
    This member is added by an implicit conversion from TreeGen to Ensuring[TreeGen] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: (TreeGen) ⇒ Boolean): TreeGen

    Permalink
    Implicit information
    This member is added by an implicit conversion from TreeGen to Ensuring[TreeGen] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean, msg: ⇒ Any): TreeGen

    Permalink
    Implicit information
    This member is added by an implicit conversion from TreeGen to Ensuring[TreeGen] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean): TreeGen

    Permalink
    Implicit information
    This member is added by an implicit conversion from TreeGen to Ensuring[TreeGen] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. final def eq(arg0: AnyRef): Boolean

    Permalink

    Tests whether the argument (that) is a reference to the receiver object (this).

    Tests whether the argument (that) is a reference to the receiver object (this).

    The eq method implements an equivalence relation on non-null instances of AnyRef, and has three additional properties:

    • It is consistent: for any non-null instances x and y of type AnyRef, multiple invocations of x.eq(y) consistently returns true or consistently returns false.
    • For any non-null instance x of type AnyRef, x.eq(null) and null.eq(x) returns false.
    • null.eq(null) returns true.

    When overriding the equals or hashCode methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).

    returns

    true if the argument is a reference to the receiver object; false otherwise.

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

    Permalink

    The equality method for reference types.

    The equality method for reference types. Default implementation delegates to eq.

    See also equals in scala.Any.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    AnyRef → Any
  19. def evalOnce(expr: Global.Tree, owner: Global.Symbol, unit: Global.CompilationUnit)(within: (() ⇒ Global.Tree) ⇒ Global.Tree): Global.Tree

    Permalink

    Used in situations where you need to access value of an expression several times

  20. def evalOnceAll(exprs: List[Global.Tree], owner: Global.Symbol, unit: Global.CompilationUnit)(within: (List[() ⇒ Global.Tree]) ⇒ Global.Tree): Global.Tree

    Permalink
  21. def finalize(): Unit

    Permalink

    Called by the garbage collector on the receiver object when there are no more references to the object.

    Called by the garbage collector on the receiver object when there are no more references to the object.

    The details of when and if the finalize method is invoked, as well as the interaction between finalize and non-local returns and exceptions, are all platform dependent.

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
    Note

    not specified by SLS as a member of AnyRef

  22. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from TreeGen to StringFormat[TreeGen] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  23. final def getClass(): Class[_]

    Permalink

    A representation that corresponds to the dynamic class of the receiver object.

    A representation that corresponds to the dynamic class of the receiver object.

    The nature of the representation is platform dependent.

    returns

    a representation that corresponds to the dynamic class of the receiver object.

    Definition Classes
    AnyRef → Any
    Note

    not specified by SLS as a member of AnyRef

  24. def hashCode(): Int

    Permalink

    The hashCode method for reference types.

    The hashCode method for reference types. See hashCode in scala.Any.

    returns

    the hash code value for this object.

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

    Permalink

    Test whether the dynamic type of the receiver object is T0.

    Test whether the dynamic type of the receiver object is T0.

    Note that the result of the test is modulo Scala's erasure semantics. Therefore the expression 1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the specified type.

    returns

    true if the receiver object is an instance of erasure of type T0; false otherwise.

    Definition Classes
    Any
  26. def maybeMkAsInstanceOf(tree: Global.Tree, pt: Global.Type, tpe: Global.Type, beforeRefChecks: Boolean): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  27. def mkAnd(tree1: Global.Tree, tree2: Global.Tree): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  28. def mkAnonymousNew(stats: List[Global.Tree]): Global.Tree

    Permalink

    Creates a tree representing new Object { stats }.

    Creates a tree representing new Object { stats }. To make sure an anonymous subclass of Object is created, if there are no stats, a () is added.

  29. def mkAppliedTypeForCase(clazz: Global.Symbol): Global.Tree

    Permalink
  30. def mkAppliedTypeTree(fun: Global.Tree, targs: List[Global.Tree]): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  31. def mkApplyIfNeeded(qual: Global.Tree): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  32. def mkAsInstanceOf(value: Global.Tree, tpe: Global.Type, any: Boolean, wrapInApply: Boolean): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  33. def mkAssign(lhs: Global.Tree, rhs: Global.Tree): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  34. def mkAssignAndReturn(lhs: Global.Symbol, rhs: Global.Tree): Global.Tree

    Permalink
  35. def mkAttributedIdent(sym: Global.Symbol): Global.RefTree

    Permalink
    Definition Classes
    TreeGen
  36. def mkAttributedQualifier(tpe: Global.Type, termSym: Global.Symbol): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  37. def mkAttributedQualifier(tpe: Global.Type): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  38. def mkAttributedRef(sym: Global.Symbol): Global.RefTree

    Permalink
    Definition Classes
    TreeGen
  39. def mkAttributedRef(pre: Global.Type, sym: Global.Symbol): Global.RefTree

    Permalink
    Definition Classes
    TreeGen
  40. def mkAttributedSelect(qual: Global.Tree, sym: Global.Symbol): Global.RefTree

    Permalink
    Definition Classes
    TreeGen
  41. def mkAttributedStableRef(sym: Global.Symbol): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  42. def mkAttributedStableRef(pre: Global.Type, sym: Global.Symbol): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  43. def mkAttributedThis(sym: Global.Symbol): Global.This

    Permalink
    Definition Classes
    TreeGen
  44. def mkAttributedTypeApply(target: Global.Tree, method: Global.Symbol, targs: List[Global.Type]): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  45. def mkBindForCase(patVar: Global.Symbol, clazz: Global.Symbol, targs: List[Global.Type]): Global.Tree

    Permalink
  46. def mkBlock(stats: List[Global.Tree], doFlatten: Boolean): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  47. def mkCast(tree: Global.Tree, pt: Global.Type): Global.Tree

    Permalink

    Cast tree to type pt by creating one of the calls of the form

    Cast tree to type pt by creating one of the calls of the form

    x.asInstanceOf[pt] up to phase uncurry x.asInstanceOf[pt]() if after uncurry but before erasure x.$asInstanceOf[pt]() if at or after erasure

    Definition Classes
    TreeGen → TreeGen
  48. def mkCastArray(tree: Global.Tree, elemtp: Global.Type, pt: Global.Type): Global.Tree

    Permalink

    Generate a cast for tree Tree representing Array with elem type elemtp to expected type pt.

  49. def mkCastPreservingAnnotations(tree: Global.Tree, pt: Global.Type): Global.Typed

    Permalink
  50. def mkCheckIfRefutable(pat: Global.Tree, rhs: Global.Tree)(implicit fresh: FreshNameCreator): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  51. def mkClassDef(mods: Global.Modifiers, name: Global.TypeName, tparams: List[Global.TypeDef], templ: Global.Template): Global.ClassDef

    Permalink
    Definition Classes
    TreeGen
  52. def mkClassOf(tp: Global.Type): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  53. def mkConstantZero(tp: Global.Type): Global.Constant

    Permalink
    Definition Classes
    TreeGen
  54. def mkFor(enums: List[Global.Tree], sugarBody: Global.Tree)(implicit fresh: FreshNameCreator): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  55. def mkForwarder(target: Global.Tree, vparamss: List[List[Global.Symbol]]): Global.Tree

    Permalink

    Make forwarder to method target, passing all parameters in params

  56. def mkFunctionTypeTree(argtpes: List[Global.Tree], restpe: Global.Tree): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  57. def mkGenerator(pos: Global.Position, pat: Global.Tree, valeq: Boolean, rhs: Global.Tree)(implicit fresh: FreshNameCreator): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  58. def mkImport(qualSym: Global.Symbol, name: Global.Name, toName: Global.Name): Global.Import

    Permalink

    Builds a fully attributed, synthetic import node.

    Builds a fully attributed, synthetic import node. import qualSym.{name => toName}

  59. def mkIsInstanceOf(value: Global.Tree, tpe: Global.Type, any: Boolean, wrapInApply: Boolean): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  60. def mkManifestFactoryCall(full: Boolean, constructor: String, tparg: Global.Type, args: List[Global.Tree]): Global.Tree

    Permalink

    A creator for a call to a scala.reflect.Manifest or ClassManifest factory method.

    A creator for a call to a scala.reflect.Manifest or ClassManifest factory method.

    full

    full or partial manifest (target will be Manifest or ClassManifest)

    constructor

    name of the factory method (e.g. "classType")

    tparg

    the type argument

    args

    value arguments

    returns

    the tree

  61. def mkMethodCall(target: Global.Tree, targs: List[Global.Type], args: List[Global.Tree]): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  62. def mkMethodCall(receiver: Global.Tree, method: Global.Symbol, targs: List[Global.Type], args: List[Global.Tree]): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  63. def mkMethodCall(receiver: Global.Symbol, methodName: Global.Name, args: List[Global.Tree]): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  64. def mkMethodCall(target: Global.Tree, args: List[Global.Tree]): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  65. def mkMethodCall(method: Global.Symbol, args: List[Global.Tree]): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  66. def mkMethodCall(method: Global.Symbol, targs: List[Global.Type], args: List[Global.Tree]): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  67. def mkMethodCall(receiver: Global.Symbol, methodName: Global.Name, targs: List[Global.Type], args: List[Global.Tree]): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  68. def mkMethodFromFunction(localTyper: (analyzer)#Typer)(fun: Global.Function, owner: Global.Symbol, name: Global.TermName, additionalFlags: Global.FlagSet = NoFlags): Global.DefDef

    Permalink

    Create a method based on a Function

    Create a method based on a Function

    Used both to under -Ydelambdafy:method create a lifted function and under -Ydelambdafy:inline to create the apply method on the anonymous class.

    It creates a method definition with value params cloned from the original lambda. Then it calls a supplied function to create the body and types the result. Finally everything is wrapped up in a DefDef

    owner

    The owner for the new method

    name

    name for the new method

    additionalFlags

    flags to be put on the method in addition to FINAL

  69. def mkNamedArg(lhs: Global.Tree, rhs: Global.Tree): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  70. def mkNamedArg(name: Global.Name, tree: Global.Tree): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  71. def mkNew(parents: List[Global.Tree], self: Global.ValDef, stats: List[Global.Tree], npos: Global.Position, cpos: Global.Position): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  72. def mkNil: Global.Tree

    Permalink
    Definition Classes
    TreeGen
  73. def mkNullaryCall(method: Global.Symbol, targs: List[Global.Type]): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  74. def mkOr(tree1: Global.Tree, tree2: Global.Tree): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  75. def mkPackageObject(defn: Global.ModuleDef, pidPos: Global.Position, pkgPos: Global.Position): Global.PackageDef

    Permalink
    Definition Classes
    TreeGen
  76. def mkParents(ownerMods: Global.Modifiers, parents: List[Global.Tree], parentPos: Global.Position): collection.immutable.List[Global.Tree]

    Permalink
    Definition Classes
    TreeGen
  77. def mkPatDef(mods: Global.Modifiers, pat: Global.Tree, rhs: Global.Tree)(implicit fresh: FreshNameCreator): List[Global.ValDef]

    Permalink
    Definition Classes
    TreeGen
  78. def mkPatDef(pat: Global.Tree, rhs: Global.Tree)(implicit fresh: FreshNameCreator): List[Global.ValDef]

    Permalink
    Definition Classes
    TreeGen
  79. def mkRuntimeCall(meth: Global.Name, targs: List[Global.Type], args: List[Global.Tree]): Global.Tree

    Permalink
  80. def mkRuntimeCall(meth: Global.Name, args: List[Global.Tree]): Global.Tree

    Permalink
  81. def mkRuntimeUniverseRef: Global.Tree

    Permalink
    Definition Classes
    TreeGen
  82. def mkSeqApply(arg: Global.Tree): Global.Apply

    Permalink
    Definition Classes
    TreeGen
  83. def mkSoftRef(expr: Global.Tree): Global.Tree

    Permalink
  84. def mkSuperInitCall: Global.Select

    Permalink
    Definition Classes
    TreeGen
  85. def mkSynchronized(monitor: Global.Tree, body: Global.Tree): Global.Tree

    Permalink

    Make a synchronized block on 'monitor'.

  86. def mkSynchronizedCheck(attrThis: Global.Tree, cond: Global.Tree, syncBody: List[Global.Tree], stats: List[Global.Tree]): Global.Tree

    Permalink
  87. def mkSynchronizedCheck(clazz: Global.Symbol, cond: Global.Tree, syncBody: List[Global.Tree], stats: List[Global.Tree]): Global.Tree

    Permalink

    Return the synchronized part of the double-checked locking idiom around the syncBody tree.

    Return the synchronized part of the double-checked locking idiom around the syncBody tree. It guards with cond and synchronizes on clazz.this. Additional statements can be included after initialization, (outside the synchronized block).

    The idiom works only if the condition is using a volatile field.

    See also

    http://www.cs.umd.edu/~pugh/java/memoryModel/DoubleCheckedLocking.html

  88. def mkSyntheticParam(pname: Global.TermName): Global.ValDef

    Permalink
    Definition Classes
    TreeGen
  89. def mkSyntheticUnit(): Global.Literal

    Permalink
    Definition Classes
    TreeGen
  90. def mkSysErrorCall(message: String): Global.Tree

    Permalink
  91. def mkTemplate(parents: List[Global.Tree], self: Global.ValDef, constrMods: Global.Modifiers, vparamss: List[List[Global.ValDef]], body: List[Global.Tree], superPos: Global.Position): Global.Template

    Permalink
    Definition Classes
    TreeGen
  92. def mkTreeOrBlock(stats: List[Global.Tree]): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  93. def mkTuple(elems: List[Global.Tree], flattenUnary: Boolean): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  94. def mkTupleType(elems: List[Global.Tree], flattenUnary: Boolean): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  95. def mkTypeApply(fun: Global.Tree, targs: List[Global.Tree]): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  96. def mkUnattributedRef(fullName: Global.Name): Global.RefTree

    Permalink
    Definition Classes
    TreeGen
  97. def mkUnattributedRef(sym: Global.Symbol): Global.RefTree

    Permalink
    Definition Classes
    TreeGen
  98. def mkUnchecked(expr: Global.Tree): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  99. def mkVisitor(cases: List[Global.CaseDef], checkExhaustive: Boolean, prefix: String)(implicit fresh: FreshNameCreator): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  100. def mkWildcardImport(pkg: Global.Symbol): Global.Import

    Permalink

    Builds a fully attributed, synthetic wildcard import node.

  101. def mkWrapArray(tree: Global.Tree, elemtp: Global.Type): Global.Tree

    Permalink

    Applies a wrapArray call to an array, making it a WrappedArray.

    Applies a wrapArray call to an array, making it a WrappedArray. Don't let a reference type parameter be inferred, in case it's a singleton: apply the element type directly.

  102. def mkZero(tp: Global.Type): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  103. final def ne(arg0: AnyRef): Boolean

    Permalink

    Equivalent to !(this eq that).

    Equivalent to !(this eq that).

    returns

    true if the argument is not a reference to the receiver object; false otherwise.

    Definition Classes
    AnyRef
  104. def newModule(accessor: Global.Symbol, tpe: Global.Type): Global.Tree

    Permalink
  105. final def notify(): Unit

    Permalink

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  106. final def notifyAll(): Unit

    Permalink

    Wakes up all threads that are waiting on the receiver object's monitor.

    Wakes up all threads that are waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  107. def paramToArg(arg: Global.Ident, isRepeatedParam: Boolean): Global.Tree

    Permalink
  108. def paramToArg(vparam: Global.ValDef): Global.Tree

    Permalink
  109. def paramToArg(vparam: Global.Symbol): Global.Tree

    Permalink
  110. object patvarTransformer extends reflect.internal.SymbolTable.Transformer

    Permalink
    Definition Classes
    TreeGen
  111. def rootId(name: Global.Name): Global.Select

    Permalink
    Definition Classes
    TreeGen
  112. def rootScalaDot(name: Global.Name): Global.Select

    Permalink
    Definition Classes
    TreeGen
  113. def scalaAnnotationDot(name: Global.Name): Global.Select

    Permalink
    Definition Classes
    TreeGen
  114. def scalaAnyRefConstr: Global.Select

    Permalink
    Definition Classes
    TreeGen
  115. def scalaDot(name: Global.Name): Global.Select

    Permalink
    Definition Classes
    TreeGen
  116. def scalaFunctionConstr(argtpes: List[Global.Tree], restpe: Global.Tree, abstractFun: Boolean): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  117. def stabilize(tree: Global.Tree): Global.Tree

    Permalink
    Definition Classes
    TreeGen
  118. def stableTypeFor(tree: Global.Tree): Global.Type

    Permalink
    Definition Classes
    TreeGen
  119. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  120. def toString(): String

    Permalink

    Creates a String representation of this object.

    Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.

    returns

    a String representation of the object.

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  124. def wildcardStar(tree: Global.Tree): Global.Typed

    Permalink
  125. def [B](y: B): (TreeGen, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from TreeGen to ArrowAssoc[TreeGen] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from TreeDSL

Inherited from reflect.internal.TreeGen

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from TreeGen to any2stringadd[TreeGen]

Inherited by implicit conversion StringFormat from TreeGen to StringFormat[TreeGen]

Inherited by implicit conversion Ensuring from TreeGen to Ensuring[TreeGen]

Inherited by implicit conversion ArrowAssoc from TreeGen to ArrowAssoc[TreeGen]

Ungrouped