Packages

object treeInfo extends TreeInfo

Source
Trees.scala
Linear Supertypes
TreeInfo, reflect.internal.TreeInfo, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. treeInfo
  2. TreeInfo
  3. TreeInfo
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class Applied extends AnyRef
    Definition Classes
    TreeInfo
  2. class DynamicApplicationExtractor extends AnyRef
    Definition Classes
    TreeInfo
  3. abstract class SeeThroughBlocks[T] extends AnyRef
    Definition Classes
    TreeInfo

Value Members

  1. object AsInstanceOf
    Definition Classes
    TreeInfo
  2. object BinaryOp
    Definition Classes
    TreeInfo
  3. object TypeApplyOp
    Definition Classes
    TreeInfo
  4. object ValueClass
    Definition Classes
    TreeInfo
  5. final def !=(arg0: Any): Boolean

    Test two objects for inequality.

    Test two objects for inequality.

    returns

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

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

    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
  7. final def ==(arg0: Any): Boolean

    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
  8. final val SYNTH_CASE_FLAGS: Int(2099200)
    Definition Classes
    TreeInfo
  9. def admitsTypeSelection(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  10. final def asInstanceOf[T0]: T0

    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.

  11. def assignmentToMaybeNamedArg(tree: Global.Tree): Global.Tree
    Definition Classes
    TreeInfo
  12. def catchesThrowable(cdef: Global.CaseDef): Boolean
    Definition Classes
    TreeInfo
  13. def clone(): AnyRef

    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

  14. def dissectApplied(tree: Global.Tree): Applied
    Definition Classes
    TreeInfo
  15. def effectivePatternArity(args: List[Global.Tree]): Int
    Definition Classes
    TreeInfo
  16. final def eq(arg0: AnyRef): Boolean

    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
  17. def equals(arg0: Any): Boolean

    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
  18. def finalize(): Unit

    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

  19. def firstConstructor(stats: List[Global.Tree]): Global.Tree
    Definition Classes
    TreeInfo
  20. def firstConstructorArgs(stats: List[Global.Tree]): List[Global.Tree]
    Definition Classes
    TreeInfo
  21. def firstDefinesClassOrObject(trees: List[Global.Tree], name: Global.Name): Boolean
    Definition Classes
    TreeInfo
  22. def flattenedPatternArgs(args: List[Global.Tree]): List[Global.Tree]
    Definition Classes
    TreeInfo
  23. def foreachMethodParamAndArg(params: List[Global.Symbol], args: List[Global.Tree])(f: (Global.Symbol, Global.Tree) ⇒ Unit): Boolean
    Definition Classes
    TreeInfo
  24. final def getClass(): Class[_]

    Returns the runtime class representation of the object.

    Returns the runtime class representation of the object.

    returns

    a class object corresponding to the runtime type of the receiver.

    Definition Classes
    AnyRef → Any
  25. val global: Trees.this.type
    Definition Classes
    treeInfoTreeInfo → TreeInfo
  26. def hasSynthCaseSymbol(t: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  27. def hasUntypedPreSuperFields(stats: List[Global.Tree]): Boolean
    Definition Classes
    TreeInfo
  28. def hasVolatileType(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  29. def hashCode(): Int

    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
  30. def isAbsTypeDef(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  31. def isAliasTypeDef(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  32. def isApplyDynamicName(name: Global.Name): Boolean
    Definition Classes
    TreeInfo
  33. def isByNameParamType(tpt: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  34. def isCatchCase(cdef: Global.CaseDef): Boolean
    Definition Classes
    TreeInfo
  35. def isConstructorWithDefault(t: Global.Tree): Boolean
    Definition Classes
    TreeInfo → TreeInfo
  36. def isDeclarationOrTypeDef(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  37. def isDefaultCase(cdef: Global.CaseDef): Boolean
    Definition Classes
    TreeInfo
  38. def isDefaultGetter(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  39. def isEarlyDef(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  40. def isEarlyValDef(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  41. def isExprSafeToInline(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  42. def isGuardedCase(cdef: Global.CaseDef): Boolean
    Definition Classes
    TreeInfo
  43. final def isInstanceOf[T0]: Boolean

    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
  44. def isInterfaceMember(tree: Global.Tree): Boolean

    Is tree legal as a member definition of an interface?

    Is tree legal as a member definition of an interface?

    Definition Classes
    TreeInfo → TreeInfo
  45. def isLeftAssoc(operator: Global.Name): Boolean
    Definition Classes
    TreeInfo
  46. def isMacroApplication(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  47. def isMacroApplicationOrBlock(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  48. def isNullaryInvocation(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  49. def isPath(tree: Global.Tree, allowVolatile: Boolean): Boolean
    Definition Classes
    TreeInfo
  50. def isPureDef(tree: Global.Tree): Boolean

    Is tree a pure (i.e.

    Is tree a pure (i.e. non-side-effecting) definition?

    Definition Classes
    TreeInfo → TreeInfo
  51. def isPureExprForWarningPurposes(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  52. def isQualifierSafeToElide(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  53. def isRepeatedParamType(tpt: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  54. def isSelfConstrCall(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  55. def isSelfOrSuperConstrCall(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  56. def isSequenceValued(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  57. def isStableIdentifier(tree: Global.Tree, allowVolatile: Boolean): Boolean
    Definition Classes
    TreeInfo
  58. def isStableIdentifierPattern(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  59. def isStableMemberOf(sym: Global.Symbol, tree: Global.Tree, allowVolatile: Boolean): Boolean
    Definition Classes
    TreeInfo
  60. def isStar(x: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  61. def isSuperConstrCall(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  62. def isSwitchAnnotation(tpe: Global.Type): Boolean
    Definition Classes
    TreeInfo
  63. def isSynthCaseSymbol(sym: Global.Symbol): Boolean
    Definition Classes
    TreeInfo
  64. def isSyntheticCase(cdef: Global.CaseDef): Boolean
    Definition Classes
    TreeInfo
  65. def isSyntheticDefaultCase(cdef: Global.CaseDef): Boolean
    Definition Classes
    TreeInfo
  66. def isTraitRef(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  67. def isVarPattern(pat: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  68. def isVarPatternDeep(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  69. def isVariableOrGetter(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  70. def isWildcardArg(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  71. def isWildcardStarArg(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  72. def isWildcardStarArgList(trees: List[Global.Tree]): Boolean
    Definition Classes
    TreeInfo
  73. def isWildcardStarType(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  74. def mapMethodParamsAndArgs[R](params: List[Global.Symbol], args: List[Global.Tree])(f: (Global.Symbol, Global.Tree) ⇒ R): List[R]
    Definition Classes
    TreeInfo
  75. def mayBeTypePat(tree: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  76. def mayBeVarGetter(sym: Global.Symbol): Boolean
    Definition Classes
    TreeInfo
  77. final def ne(arg0: AnyRef): Boolean

    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
  78. def noPredefImportForUnit(body: Global.Tree): Boolean
    Definition Classes
    TreeInfo
  79. final def notify(): Unit

    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

  80. final def notifyAll(): Unit

    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

  81. def preSuperFields(stats: List[Global.Tree]): List[Global.ValDef]
    Definition Classes
    TreeInfo
  82. def stripCast(tree: Global.Tree): Global.Tree
    Definition Classes
    TreeInfo
  83. def stripNamedApplyBlock(tree: Global.Tree): Global.Tree
    Definition Classes
    TreeInfo
  84. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  85. def toString(): String

    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
  86. def typeParameters(tree: Global.Tree): List[Global.TypeDef]
    Definition Classes
    TreeInfo
  87. def unbind(x: Global.Tree): Global.Tree
    Definition Classes
    TreeInfo
  88. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  89. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  90. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  91. object Applied
    Definition Classes
    TreeInfo
  92. object DynamicApplication extends DynamicApplicationExtractor
    Definition Classes
    TreeInfo
  93. object DynamicApplicationNamed extends DynamicApplicationExtractor
    Definition Classes
    TreeInfo
  94. object DynamicUpdate extends DynamicApplicationExtractor
    Definition Classes
    TreeInfo
  95. object IsFalse extends SeeThroughBlocks[Boolean]
    Definition Classes
    TreeInfo
  96. object IsTrue extends SeeThroughBlocks[Boolean]
    Definition Classes
    TreeInfo
  97. object MacroImplReference
    Definition Classes
    TreeInfo
  98. object StripCast
    Definition Classes
    TreeInfo
  99. object Unapplied
    Definition Classes
    TreeInfo
  100. object WildcardStarArg
    Definition Classes
    TreeInfo

Inherited from TreeInfo

Inherited from reflect.internal.TreeInfo

Inherited from AnyRef

Inherited from Any

Ungrouped