final case class Scope(symbolTable: Map[String, Symbol], children: Seq[Scope]) extends TreeElem[Scope] with Product with Serializable

Self Type
Scope
Linear Supertypes
Serializable, Serializable, Product, Equals, TreeElem[Scope], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Scope
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. TreeElem
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Scope(symbolTable: Map[String, Symbol], children: Seq[Scope])

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 allScopes: Seq[Scope]
  5. def allSymbolDefinitions: Map[String, Set[SymbolUse]]
  6. def allVariableDefinitions: Map[SymbolUse, SymbolUse]
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. val children: Seq[Scope]
    Definition Classes
    Scope → TreeElem
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def importValuesFromScope(other: Scope, exclude: Set[String] = Set.empty): Scope
  14. def isEmpty: Boolean
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. def location(implicit zipper: TreeZipper[Scope]): Location
    Definition Classes
    TreeElem
  17. def markAsGenerated(variable: String): Scope
  18. def mergePositions(variable: String, positions: Set[InputPosition]): Scope
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. def symbol(name: String): Option[Symbol]
  23. def symbolDefinitions: Set[SymbolUse]
  24. def symbolNames: Set[String]
  25. val symbolTable: Map[String, Symbol]
  26. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  27. def toIdString: String
  28. def toString(): String
    Definition Classes
    Scope → AnyRef → Any
  29. def toStringWithoutId: String
  30. def updateChildren(newChildren: Seq[Scope]): Scope
    Definition Classes
    Scope → TreeElem
  31. def updateVariable(variable: String, types: TypeSpec, positions: Set[InputPosition]): Scope
  32. def valueSymbolTable: Map[String, Symbol]
  33. def variableDefinitions: Map[SymbolUse, SymbolUse]
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from TreeElem[Scope]

Inherited from AnyRef

Inherited from Any

Ungrouped