Packages

case class ElabState(parent: Option[ElabState], schema: Schema, context: Context, vars: Vars, fragments: Map[String, UntypedFragment], query: Query, localEnv: Env, attributes: List[(String, Query)], childTransform: (Query) => Elab[Query]) extends Product with Serializable

The state managed by the elaboration monad.

Source
compiler.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ElabState
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ElabState(parent: Option[ElabState], schema: Schema, context: Context, vars: Vars, fragments: Map[String, UntypedFragment], query: Query, localEnv: Env, attributes: List[(String, Query)], childTransform: (Query) => Elab[Query])

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 addAttribute(name: String, query: Query = Empty): ElabState
  5. def addChildTransform(f: (Query) => Elab[Query]): ElabState
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. val attributes: List[(String, Query)]
  8. val childTransform: (Query) => Elab[Query]
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  10. val context: Context
  11. def env[T](nme: String)(implicit arg0: ClassTag[T]): Option[T]
  12. def env(other: Env): ElabState
  13. def env(kvs: Seq[(String, Any)]): ElabState
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def fieldAlias(fieldName: String): Option[String]
  16. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  17. val fragments: Map[String, UntypedFragment]
  18. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. def hasField(fieldName: String): Boolean
  20. def hasSibling(fieldName: String): Boolean
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. val localEnv: Env
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. val parent: Option[ElabState]
  27. def productElementNames: Iterator[String]
    Definition Classes
    Product
  28. def push(schema: Schema, context: Context, query: Query): ElabState
  29. def push(context: Context, query: Query): ElabState
  30. def push: ElabState
  31. val query: Query
  32. def resultName: Option[String]
  33. val schema: Schema
  34. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  35. val vars: Vars
  36. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  37. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  38. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped