Object

scala.tools.nsc.ast.Trees

treeInfo

Related Doc: package Trees

Permalink

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

    Permalink
    Definition Classes
    TreeInfo
  2. class DynamicApplicationExtractor extends AnyRef

    Permalink
    Definition Classes
    TreeInfo
  3. abstract class SeeThroughBlocks[T] extends AnyRef

    Permalink
    Definition Classes
    TreeInfo

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. 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
  4. object Applied

    Permalink
    Definition Classes
    TreeInfo
  5. object AsInstanceOf

    Permalink
    Definition Classes
    TreeInfo
  6. object BinaryOp

    Permalink
    Definition Classes
    TreeInfo
  7. object DynamicApplication extends DynamicApplicationExtractor

    Permalink
    Definition Classes
    TreeInfo
  8. object DynamicApplicationNamed extends DynamicApplicationExtractor

    Permalink
    Definition Classes
    TreeInfo
  9. object DynamicUpdate extends DynamicApplicationExtractor

    Permalink
    Definition Classes
    TreeInfo
  10. object IsFalse extends SeeThroughBlocks[Boolean]

    Permalink
    Definition Classes
    TreeInfo
  11. object IsTrue extends SeeThroughBlocks[Boolean]

    Permalink
    Definition Classes
    TreeInfo
  12. object MacroImplReference

    Permalink
    Definition Classes
    TreeInfo
  13. final val SYNTH_CASE_FLAGS: Int(2099200)

    Permalink
    Definition Classes
    TreeInfo
  14. object StripCast

    Permalink
    Definition Classes
    TreeInfo
  15. object TypeApplyOp

    Permalink
    Definition Classes
    TreeInfo
  16. object Unapplied

    Permalink
    Definition Classes
    TreeInfo
  17. object ValueClass

    Permalink
    Definition Classes
    TreeInfo
  18. object WildcardStarArg

    Permalink
    Definition Classes
    TreeInfo
  19. def admitsTypeSelection(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  20. 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.

  21. def assignmentToMaybeNamedArg(tree: Global.Tree): Global.Tree

    Permalink
    Definition Classes
    TreeInfo
  22. def catchesThrowable(cdef: Global.CaseDef): Boolean

    Permalink
    Definition Classes
    TreeInfo
  23. 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

  24. def dissectApplied(tree: Global.Tree): Applied

    Permalink
    Definition Classes
    TreeInfo
  25. def effectivePatternArity(args: List[Global.Tree]): Int

    Permalink
    Definition Classes
    TreeInfo
  26. 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
  27. 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
  28. 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

  29. def firstConstructor(stats: List[Global.Tree]): Global.Tree

    Permalink
    Definition Classes
    TreeInfo
  30. def firstConstructorArgs(stats: List[Global.Tree]): List[Global.Tree]

    Permalink
    Definition Classes
    TreeInfo
  31. def firstDefinesClassOrObject(trees: List[Global.Tree], name: Global.Name): Boolean

    Permalink
    Definition Classes
    TreeInfo
  32. def flattenedPatternArgs(args: List[Global.Tree]): List[Global.Tree]

    Permalink
    Definition Classes
    TreeInfo
  33. def foreachMethodParamAndArg(params: List[Global.Symbol], args: List[Global.Tree])(f: (Global.Symbol, Global.Tree) ⇒ Unit): Boolean

    Permalink
    Definition Classes
    TreeInfo
  34. 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

  35. val global: Trees.this.type

    Permalink
    Definition Classes
    treeInfoTreeInfo → TreeInfo
  36. def hasSynthCaseSymbol(t: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  37. def hasUntypedPreSuperFields(stats: List[Global.Tree]): Boolean

    Permalink
    Definition Classes
    TreeInfo
  38. def hasVolatileType(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  39. 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
  40. def isAbsTypeDef(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  41. def isAliasTypeDef(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  42. def isApplyDynamicName(name: Global.Name): Boolean

    Permalink
    Definition Classes
    TreeInfo
  43. def isByNameParamType(tpt: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  44. def isCatchCase(cdef: Global.CaseDef): Boolean

    Permalink
    Definition Classes
    TreeInfo
  45. def isConstructorWithDefault(t: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo → TreeInfo
  46. def isDeclarationOrTypeDef(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  47. def isDefaultCase(cdef: Global.CaseDef): Boolean

    Permalink
    Definition Classes
    TreeInfo
  48. def isDefaultGetter(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  49. def isEarlyDef(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  50. def isEarlyValDef(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  51. def isExprSafeToInline(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  52. def isGuardedCase(cdef: Global.CaseDef): Boolean

    Permalink
    Definition Classes
    TreeInfo
  53. 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
  54. def isInterfaceMember(tree: Global.Tree): Boolean

    Permalink

    Is tree legal as a member definition of an interface?

    Is tree legal as a member definition of an interface?

    Definition Classes
    TreeInfo → TreeInfo
  55. def isLeftAssoc(operator: Global.Name): Boolean

    Permalink
    Definition Classes
    TreeInfo
  56. def isMacroApplication(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  57. def isMacroApplicationOrBlock(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  58. def isNullaryInvocation(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  59. def isPath(tree: Global.Tree, allowVolatile: Boolean): Boolean

    Permalink
    Definition Classes
    TreeInfo
  60. def isPureDef(tree: Global.Tree): Boolean

    Permalink

    Is tree a pure (i.e.

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

    Definition Classes
    TreeInfo → TreeInfo
  61. def isPureExprForWarningPurposes(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  62. def isQualifierSafeToElide(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  63. def isRepeatedParamType(tpt: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  64. def isSelfConstrCall(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  65. def isSelfOrSuperConstrCall(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  66. def isSequenceValued(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  67. def isStableIdentifier(tree: Global.Tree, allowVolatile: Boolean): Boolean

    Permalink
    Definition Classes
    TreeInfo
  68. def isStableIdentifierPattern(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  69. def isStableMemberOf(sym: Global.Symbol, tree: Global.Tree, allowVolatile: Boolean): Boolean

    Permalink
    Definition Classes
    TreeInfo
  70. def isStar(x: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  71. def isSuperConstrCall(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  72. def isSwitchAnnotation(tpe: Global.Type): Boolean

    Permalink
    Definition Classes
    TreeInfo
  73. def isSynthCaseSymbol(sym: Global.Symbol): Boolean

    Permalink
    Definition Classes
    TreeInfo
  74. def isSyntheticCase(cdef: Global.CaseDef): Boolean

    Permalink
    Definition Classes
    TreeInfo
  75. def isSyntheticDefaultCase(cdef: Global.CaseDef): Boolean

    Permalink
    Definition Classes
    TreeInfo
  76. def isTraitRef(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  77. def isVarPattern(pat: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  78. def isVarPatternDeep(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  79. def isVariableOrGetter(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  80. def isWildcardArg(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  81. def isWildcardStarArg(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  82. def isWildcardStarArgList(trees: List[Global.Tree]): Boolean

    Permalink
    Definition Classes
    TreeInfo
  83. def isWildcardStarType(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  84. def mapMethodParamsAndArgs[R](params: List[Global.Symbol], args: List[Global.Tree])(f: (Global.Symbol, Global.Tree) ⇒ R): List[R]

    Permalink
    Definition Classes
    TreeInfo
  85. def mayBeTypePat(tree: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  86. def mayBeVarGetter(sym: Global.Symbol): Boolean

    Permalink
    Definition Classes
    TreeInfo
  87. 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
  88. def noPredefImportForUnit(body: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeInfo
  89. 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

  90. 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

  91. def preSuperFields(stats: List[Global.Tree]): List[Global.ValDef]

    Permalink
    Definition Classes
    TreeInfo
  92. def stripCast(tree: Global.Tree): Global.Tree

    Permalink
    Definition Classes
    TreeInfo
  93. def stripNamedApplyBlock(tree: Global.Tree): Global.Tree

    Permalink
    Definition Classes
    TreeInfo
  94. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  95. 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
  96. def typeParameters(tree: Global.Tree): List[Global.TypeDef]

    Permalink
    Definition Classes
    TreeInfo
  97. def unbind(x: Global.Tree): Global.Tree

    Permalink
    Definition Classes
    TreeInfo
  98. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from TreeInfo

Inherited from reflect.internal.TreeInfo

Inherited from AnyRef

Inherited from Any

Ungrouped