trait ContextTrees extends AnyRef

Self Type
Global
Source
ContextTrees.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ContextTrees
  2. AnyRef
  3. 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

Type Members

  1. type Context = (analyzer)#Context
  2. class ContextTree extends AnyRef

    A context tree contains contexts that are indexed by positions.

    A context tree contains contexts that are indexed by positions. It satisfies the following properties:

    1. All context come from compiling the same unit. 2. Child contexts have parent contexts in their outer chain. 3. The pos field of a context is the same as context.tree.pos, unless that position is transparent. In that case, pos equals the position of one of the solid descendants of context.tree. 4. Children of a context have non-overlapping increasing positions. 5. No context in the tree has a transparent position.
  3. type Contexts = ArrayBuffer[Global.ContextTree]

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from ContextTrees to any2stringadd[ContextTrees] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ContextTrees, B)
    Implicit
    This member is added by an implicit conversion from ContextTrees to ArrowAssoc[ContextTrees] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. lazy val NoContext: (analyzer)#NoContext.type
  7. def addContext(contexts: Global.Contexts, context: Global.Context, cpos: Global.Position): Unit

    Insert a context with non-transparent position cpos at correct position into a buffer of context trees.

  8. def addContext(contexts: Global.Contexts, context: Global.Context): Unit

    Insert a context at correct position into a buffer of context trees.

    Insert a context at correct position into a buffer of context trees. If the context has a transparent position, add it multiple times at the positions of all its solid descendant trees.

  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def ensuring(cond: (ContextTrees) ⇒ Boolean, msg: ⇒ Any): ContextTrees
    Implicit
    This member is added by an implicit conversion from ContextTrees to Ensuring[ContextTrees] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (ContextTrees) ⇒ Boolean): ContextTrees
    Implicit
    This member is added by an implicit conversion from ContextTrees to Ensuring[ContextTrees] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: ⇒ Any): ContextTrees
    Implicit
    This member is added by an implicit conversion from ContextTrees to Ensuring[ContextTrees] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): ContextTrees
    Implicit
    This member is added by an implicit conversion from ContextTrees to Ensuring[ContextTrees] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ContextTrees to StringFormat[ContextTrees] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  19. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. def locateContext(contexts: Global.Contexts, pos: Global.Position): Option[Global.Context]

    Returns the most precise context possible for the given pos.

    Returns the most precise context possible for the given pos.

    It looks for the finest ContextTree containing pos, and then look inside this ContextTree for a child ContextTree located immediately before pos. If such a child exists, returns its context, otherwise returns the context of the parent ContextTree.

    This is required to always return a context which contains the all the imports declared up to pos (see scala/bug#7280 for a test case).

    Can return None if pos is before any valid Scala code.

  23. def locateContextTree(contexts: Global.Contexts, pos: Global.Position): Option[Global.ContextTree]

    Returns the ContextTree containing pos, or the ContextTree positioned just before pos, or None if pos is located before all ContextTrees.

  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  27. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. def [B](y: B): (ContextTrees, B)
    Implicit
    This member is added by an implicit conversion from ContextTrees to ArrowAssoc[ContextTrees] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped