dotty.tools.dotc.ast.Trees

DefDef

Related Doc: package Trees

case class DefDef[-T >: Untyped] extends MemberDef[T] with ValOrDefDef[T] with Product with Serializable

mods def name[tparams](vparams_1)...(vparams_n): tpt = rhs

Linear Supertypes
Serializable, Serializable, ValOrDefDef[T], WithLazyField[Tree[T]], MemberDef[T], DefTree[T], NameTree[T], DenotingTree[T], Tree[T], Cloneable, Cloneable, Showable, Container, LinkSource, Positioned, Product, Equals, DotClass, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. DefDef
  2. Serializable
  3. Serializable
  4. ValOrDefDef
  5. WithLazyField
  6. MemberDef
  7. DefTree
  8. NameTree
  9. DenotingTree
  10. Tree
  11. Cloneable
  12. Cloneable
  13. Showable
  14. Container
  15. LinkSource
  16. Positioned
  17. Product
  18. Equals
  19. DotClass
  20. AnyRef
  21. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. type ThisTree[-T >: Untyped] = DefDef[T]

    The type constructor at the root of the tree

    The type constructor at the root of the tree

    Definition Classes
    DefDefMemberDefDefTreeNameTreeDenotingTreeTree

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. def addPos(pos: Position): DefDef.this.type

    This item with a position that's the union of the given pos and the current position.

    This item with a position that's the union of the given pos and the current position.

    Definition Classes
    Positioned
  5. final def allAttachments: List[(Key[_], Any)]

    The list of all keys and values attached to this container.

    The list of all keys and values attached to this container.

    Definition Classes
    LinkSource
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. final def attachment[V](key: Key[V]): V

    The attachment corresponding to key.

    The attachment corresponding to key.

    Definition Classes
    LinkSource
    Exceptions thrown

    NoSuchElementException if no attachment with key exists

  8. final def attachmentOrElse[V](key: Key[V], default: V): V

    The attachment corresponding to key, or default if no attachment with key exists.

    The attachment corresponding to key, or default if no attachment with key exists.

    Definition Classes
    LinkSource
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def contains(that: Positioned): Boolean

    Definition Classes
    Positioned
  11. def denot(implicit ctx: Context): Denotation

    The denotation referred tno by this tree.

    The denotation referred tno by this tree. Defined for DenotingTrees and ProxyTrees, NoDenotation for other kinds of trees

    Definition Classes
    DenotingTreeTree
  12. def envelope: Position

    The envelope containing the item in its entirety.

    The envelope containing the item in its entirety. Envelope is different from pos for definitions (instances of MemberDef).

    Definition Classes
    MemberDefPositioned
  13. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. def equals(that: Any): Boolean

    Definition Classes
    Tree → Equals → AnyRef → Any
  15. def fallbackToText(printer: Printer): Text

    A fallback text representation, if the pattern matching in Printers does not have a case for this showable element

    A fallback text representation, if the pattern matching in Printers does not have a case for this showable element

    Definition Classes
    Showable
  16. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. def force(x: AnyRef): Unit

    Attributes
    protected
    Definition Classes
    DefDefWithLazyField
  18. def forceIfLazy(implicit ctx: Context): Tree[T]

    Definition Classes
    WithLazyField
  19. def foreachInThicket(op: (Tree[T]) ⇒ Unit): Unit

    If this is a thicket, perform op on each of its trees otherwise, perform op ion tree itself.

    If this is a thicket, perform op on each of its trees otherwise, perform op ion tree itself.

    Definition Classes
    Tree
  20. final def getAttachment[V](key: Key[V]): Option[V]

    Optionally get attachment corresponding to key

    Optionally get attachment corresponding to key

    Definition Classes
    LinkSource
  21. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  22. final def hasType: Boolean

    Does the tree have its type field set? Note: this operation is not referentially transparent, because it can observe the withType modifications.

    Does the tree have its type field set? Note: this operation is not referentially transparent, because it can observe the withType modifications. Should be used only in special circumstances (we need it for printing trees with optional type info).

    Definition Classes
    Tree
  23. def hashCode(): Int

    Definition Classes
    Tree → AnyRef → Any
  24. def initialPos: Position

    The initial, synthetic position.

    The initial, synthetic position. This is usually the union of all positioned children's envelopes.

    Attributes
    protected
    Definition Classes
    Positioned
  25. def isDef: Boolean

    Does this tree define a new symbol that is not defined elsewhere?

    Does this tree define a new symbol that is not defined elsewhere?

    Definition Classes
    DefTreeTree
  26. def isEmpty: Boolean

    Is this tree either the empty tree or the empty ValDef?

    Is this tree either the empty tree or the empty ValDef?

    Definition Classes
    Tree
  27. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  28. def isPattern: Boolean

    Is this a legal part of a pattern which is not at the same time a term?

    Is this a legal part of a pattern which is not at the same time a term?

    Definition Classes
    Tree
  29. def isTerm: Boolean

    Does this tree represent a term?

    Does this tree represent a term?

    Definition Classes
    Tree
  30. def isType: Boolean

    Does this tree represent a type?

    Does this tree represent a type?

    Definition Classes
    Tree
  31. val name: TermName

    Definition Classes
    DefDefNameTree
  32. def namedType: NamedType

    Definition Classes
    DefTree
  33. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  36. def orElse[U >: Untyped <: T](that: ⇒ Tree[U]): Tree[U]

    if this tree is the empty tree, the alternative, else this tree

    if this tree is the empty tree, the alternative, else this tree

    Definition Classes
    Tree
  37. def pos: Position

    The item's position.

    The item's position.

    Definition Classes
    Positioned
  38. final def pushAttachment[V](key: Key[V], value: V): Unit

    Definition Classes
    Container
  39. final def putAttachment[V](key: Key[V], value: V): Option[V]

    Add attachment with given key and value.

    Add attachment with given key and value.

    returns

    Optionally, the old attachment with given key if one existed before. The new attachment is added at the position of the old one, or at the end if no attachment with same key existed.

    Definition Classes
    LinkSource
  40. def rawComment: Option[Comment]

    Definition Classes
    MemberDef
  41. final def removeAttachment[V](key: Key[V]): Option[V]

    Remove attachment with given key, if it exists.

    Remove attachment with given key, if it exists.

    returns

    Optionally, the removed attachment with given key if one existed before.

    Definition Classes
    LinkSource
  42. def rhs(implicit ctx: Context): Tree[T]

    Definition Classes
    ValOrDefDef
  43. def setComment(comment: Option[Comment]): ThisTree[Untyped]

    Definition Classes
    MemberDef
  44. def setMods(mods: Modifiers[T]): Unit

    Attributes
    protected
    Definition Classes
    MemberDef
  45. def setPos(pos: Position): Unit

    Destructively update curPos to given position.

    Destructively update curPos to given position. Also, set any missing positions in children.

    Attributes
    protected
    Definition Classes
    Positioned
  46. def show(implicit ctx: Context): String

    The string representation of this showable element.

    The string representation of this showable element.

    Definition Classes
    Showable
  47. def showSummary(implicit ctx: Context): String

    Definition Classes
    Showable
  48. def showSummary(depth: Int)(implicit ctx: Context): String

    The summarized string representation of this showable element.

    The summarized string representation of this showable element. Recursion depth is limited to some smallish value. Default is Config.summarizeDepth.

    Definition Classes
    Showable
  49. final def symbol(implicit ctx: Context): Symbol

    Shorthand for denot.symbol.

    Shorthand for denot.symbol.

    Definition Classes
    Tree
  50. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  51. def toList: List[Tree[T]]

    Convert tree to a list.

    Convert tree to a list. Gives a singleton list, except for thickets which return their element trees.

    Definition Classes
    Tree
  52. def toText(printer: Printer): Text

    The text representation of this showable element.

    The text representation of this showable element. This normally dispatches to a pattern matching method in Printers.

    Definition Classes
    TreeShowable
  53. val tparams: List[TypeDef[T]]

  54. def tpe: T

    The type of the tree.

    The type of the tree. In case of an untyped tree, an UnAssignedTypeException is thrown. (Overridden by empty trees)

    Definition Classes
    Tree
  55. val tpt: Tree[T]

    Definition Classes
    DefDefValOrDefDef
  56. def treeSize: Int

    The number of nodes in this tree

    The number of nodes in this tree

    Definition Classes
    Tree
  57. final def typeOpt: Type

    Definition Classes
    Tree
  58. def unforced: LazyTree

    Definition Classes
    DefDefWithLazyField
  59. def unforcedRhs: LazyTree

    Definition Classes
    ValOrDefDef
  60. val uniqueId: Int

    A unique identifier for this tree.

    A unique identifier for this tree. Used for debugging, and potentially tracking presentation compiler interactions

    Definition Classes
    Tree
  61. def unsupported(methodName: String): Nothing

    Throws an UnsupportedOperationException with the given method name.

    Throws an UnsupportedOperationException with the given method name.

    Definition Classes
    DotClass
  62. val vparamss: List[List[ValDef[T]]]

  63. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  66. def withFlags(flags: FlagSet): ThisTree[Untyped]

    Definition Classes
    MemberDef
  67. def withMods(mods: Modifiers[Untyped]): ThisTree[Untyped]

    Definition Classes
    MemberDef
  68. def withPos(posd: Positioned): DefDef.this.type

    Definition Classes
    Positioned
  69. def withPos(pos: Position): DefDef.this.type

    A positioned item like this one with the position set to pos.

    A positioned item like this one with the position set to pos. if the positioned item is source-derived, a clone is returned. If the positioned item is synthetic, the position is updated destructively and the item itself is returned.

    Definition Classes
    Positioned
  70. def withType(tpe: Type)(implicit ctx: Context): ThisTree[Type]

    Return a typed tree that's isomorphic to this tree, but has given type.

    Return a typed tree that's isomorphic to this tree, but has given type. (Overridden by empty trees)

    Definition Classes
    Tree
  71. def withTypeUnchecked(tpe: Type): ThisTree[Type]

    Definition Classes
    Tree

Inherited from Serializable

Inherited from Serializable

Inherited from ValOrDefDef[T]

Inherited from WithLazyField[Tree[T]]

Inherited from MemberDef[T]

Inherited from DefTree[T]

Inherited from NameTree[T]

Inherited from DenotingTree[T]

Inherited from Tree[T]

Inherited from Cloneable

Inherited from Cloneable

Inherited from Showable

Inherited from Container

Inherited from LinkSource

Inherited from Positioned

Inherited from Product

Inherited from Equals

Inherited from DotClass

Inherited from AnyRef

Inherited from Any

Ungrouped