Class

scala.tools.nsc.ast.TreeBrowsers

ProgramTree

Related Doc: package TreeBrowsers

Permalink

case class ProgramTree(units: List[UnitTree]) extends Global.Tree with Product with Serializable

Pseudo tree class, so that all JTree nodes are treated uniformly

Source
TreeBrowsers.scala
Linear Supertypes
Serializable, java.io.Serializable, Global.Tree, Global.Attachable, Global.TreeContextApiImpl, Global.TreeApi, Product, Equals, AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ProgramTree
  2. Serializable
  3. Serializable
  4. Tree
  5. Attachable
  6. TreeContextApiImpl
  7. TreeApi
  8. Product
  9. Equals
  10. AnyRef
  11. 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 ProgramTree(units: List[UnitTree])

    Permalink

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 ProgramTree to any2stringadd[ProgramTree] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ProgramTree, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from ProgramTree to ArrowAssoc[ProgramTree] 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. 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.

  7. def attachments: Attachments { type Pos = TreeBrowsers.this.global.Position }

    Permalink
    Definition Classes
    Attachable
  8. def canHaveAttrs: Boolean

    Permalink
    Definition Classes
    Tree → TreeApi
  9. def changeOwner(pairs: (Global.Symbol, Global.Symbol)*): Global.Tree

    Permalink
    Definition Classes
    TreeContextApiImpl
  10. def children: List[Global.Tree]

    Permalink
    Definition Classes
    TreeContextApiImpl → TreeApi
  11. def clearType(): ProgramTree.this.type

    Permalink
    Definition Classes
    Tree
  12. 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

  13. def collect[T](pf: PartialFunction[Global.Tree, T]): List[T]

    Permalink
    Definition Classes
    TreeContextApiImpl → TreeApi
  14. def correspondsStructure(that: Global.Tree)(f: (Global.Tree, Global.Tree) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    TreeContextApiImpl
  15. def defineType(tp: Global.Type): ProgramTree.this.type

    Permalink
    Definition Classes
    Tree
  16. def duplicate: ProgramTree.this.type

    Permalink
    Definition Classes
    Tree → TreeApi
  17. def ensuring(cond: (ProgramTree) ⇒ Boolean, msg: ⇒ Any): ProgramTree

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

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

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from ProgramTree to Ensuring[ProgramTree] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  21. 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
  22. def equals(that: 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.

    that

    the object to compare against this object for equality.

    returns

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

    Definition Classes
    Tree → Equals → AnyRef → Any
  23. def equalsStructure(that: Global.Tree): Boolean

    Permalink
    Definition Classes
    TreeContextApiImpl → TreeApi
  24. def exists(p: (Global.Tree) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    TreeContextApiImpl → TreeApi
  25. def filter(f: (Global.Tree) ⇒ Boolean): List[Global.Tree]

    Permalink
    Definition Classes
    TreeContextApiImpl → TreeApi
  26. 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

  27. def find(p: (Global.Tree) ⇒ Boolean): Option[Global.Tree]

    Permalink
    Definition Classes
    TreeContextApiImpl → TreeApi
  28. def forAll(p: (Global.Tree) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    TreeContextApiImpl → TreeApi
  29. def foreach(f: (Global.Tree) ⇒ Unit): Unit

    Permalink
    Definition Classes
    TreeContextApiImpl → TreeApi
  30. def foreachPartial(pf: PartialFunction[Global.Tree, Global.Tree]): Unit

    Permalink
    Definition Classes
    TreeContextApiImpl
  31. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from ProgramTree to StringFormat[ProgramTree] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  32. def freeTerms: List[Global.FreeTermSymbol]

    Permalink
    Definition Classes
    TreeContextApiImpl
  33. def freeTypes: List[Global.FreeTypeSymbol]

    Permalink
    Definition Classes
    TreeContextApiImpl
  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. def hasAttachment[T](implicit arg0: ClassTag[T]): Boolean

    Permalink
    Definition Classes
    Attachable
  36. def hasExistingSymbol: Boolean

    Permalink
    Definition Classes
    TreeContextApiImpl
  37. def hasSymbolField: Boolean

    Permalink
    Definition Classes
    Tree
  38. def hasSymbolWhich(f: (Global.Symbol) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    TreeContextApiImpl
  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
    Tree → AnyRef → Any
  40. val id: Int

    Permalink
    Definition Classes
    Tree
  41. def isDef: Boolean

    Permalink
    Definition Classes
    Tree → TreeApi
  42. def isEmpty: Boolean

    Permalink
    Definition Classes
    Tree → TreeApi
  43. def isErroneous: Boolean

    Permalink
    Definition Classes
    TreeContextApiImpl
  44. def isErrorTyped: Boolean

    Permalink
    Definition Classes
    TreeContextApiImpl
  45. 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
  46. def isTerm: Boolean

    Permalink
    Definition Classes
    Tree → TreeApi
  47. def isType: Boolean

    Permalink
    Definition Classes
    Tree → TreeApi
  48. def isTyped: Boolean

    Permalink
    Definition Classes
    TreeContextApiImpl
  49. def modifyType(f: (Global.Type) ⇒ Global.Type): Global.Tree

    Permalink
    Definition Classes
    TreeContextApiImpl
  50. 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
  51. def nonEmpty: Boolean

    Permalink
    Definition Classes
    Tree → TreeApi
  52. 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

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

  54. def orElse(alt: ⇒ Global.Tree): Global.Tree

    Permalink
    Definition Classes
    TreeContextApiImpl → TreeApi
  55. final def pos: Global.Position

    Permalink
    Definition Classes
    Tree → Attachable → TreeApi
  56. def pos_=(pos: Global.Position): Unit

    Permalink
    Definition Classes
    Attachable
  57. var rawatt: Attachments { type Pos = TreeBrowsers.this.global.Position }

    Permalink
    Attributes
    protected
    Definition Classes
    Attachable
  58. def removeAttachment[T](implicit arg0: ClassTag[T]): ProgramTree.this.type

    Permalink
    Definition Classes
    Attachable
  59. def setAttachments(attachments: Attachments { type Pos = TreeBrowsers.this.global.Position }): ProgramTree.this.type

    Permalink
    Definition Classes
    Attachable
  60. def setPos(newpos: Global.Position): ProgramTree.this.type

    Permalink
    Definition Classes
    Attachable
  61. def setSymbol(sym: Global.Symbol): ProgramTree.this.type

    Permalink
    Definition Classes
    Tree
  62. def setType(tp: Global.Type): ProgramTree.this.type

    Permalink
    Definition Classes
    Tree
  63. def shallowDuplicate: Global.Tree

    Permalink
    Definition Classes
    TreeContextApiImpl
  64. def shortClass: String

    Permalink
    Definition Classes
    TreeContextApiImpl
  65. def substituteSymbols(from: List[Global.Symbol], to: List[Global.Symbol]): Global.Tree

    Permalink
    Definition Classes
    TreeContextApiImpl
  66. def substituteThis(clazz: Global.Symbol, to: Global.Tree): Global.Tree

    Permalink
    Definition Classes
    TreeContextApiImpl
  67. def substituteTypes(from: List[Global.Symbol], to: List[Global.Type]): Global.Tree

    Permalink
    Definition Classes
    TreeContextApiImpl
  68. def summaryString: String

    Permalink
    Definition Classes
    TreeContextApiImpl
  69. def symbol: Global.Symbol

    Permalink
    Definition Classes
    Tree → TreeApi
  70. def symbol_=(sym: Global.Symbol): Unit

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

    Permalink
    Definition Classes
    AnyRef
  72. 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
    ProgramTree → TreeApi → AnyRef → Any
  73. final def tpe: Global.Type

    Permalink
    Definition Classes
    Tree → TreeApi
  74. val units: List[UnitTree]

    Permalink
  75. def updateAttachment[T](attachment: T)(implicit arg0: ClassTag[T]): ProgramTree.this.type

    Permalink
    Definition Classes
    Attachable
  76. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  79. def withFilter(f: (Global.Tree) ⇒ Boolean): List[Global.Tree]

    Permalink
    Definition Classes
    TreeContextApiImpl → TreeApi
  80. def [B](y: B): (ProgramTree, B)

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

Deprecated Value Members

  1. def hasSymbol: Boolean

    Permalink
    Definition Classes
    Tree
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use hasSymbolField

  2. def tpe_=(t: Global.Type): Unit

    Permalink
    Definition Classes
    Tree
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use setType

Inherited from Serializable

Inherited from java.io.Serializable

Inherited from Global.Tree

Inherited from Global.Attachable

Inherited from Global.TreeContextApiImpl

Inherited from Global.TreeApi

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped