o

org.tresql.ast

CompilerAst

object CompilerAst

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CompilerAst
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class ArrayDef(cols: List[ColDef]) extends RowDefBase with Product with Serializable
  2. case class BinSelectDef(leftOperand: SelectDefBase, rightOperand: SelectDefBase, exp: BinOp) extends SelectDefBase with Product with Serializable
  3. case class BracesSelectDef(exp: SelectDefBase) extends SelectDefBase with Product with Serializable
  4. case class ChildDef(exp: Exp, db: Option[String]) extends TypedExp with Product with Serializable
  5. case class ColDef(name: String = null, col: Exp, typ: ExprType) extends TypedExp with Product with Serializable
  6. sealed trait CompilerExp extends Exp
  7. sealed trait DMLDefBase extends SQLDefBase
  8. case class DeleteDef(tables: List[TableDef], exp: Delete) extends DMLDefBase with Product with Serializable
  9. case class ExprType(name: String = null) extends Product with Serializable
  10. case class FunAsTableDef(exp: FunDef, cols: Option[List[TableColDef]], withOrdinality: Boolean) extends CompilerExp with Product with Serializable
  11. case class FunDef(name: String, exp: Fun, typ: ExprType, procedure: Procedure) extends TypedExp with Product with Serializable
  12. case class FunSelectDef(cols: List[ColDef], tables: List[TableDef], exp: FunDef) extends SelectDefBase with Product with Serializable

    select definition returned from macro or db function, is used in

    select definition returned from macro or db function, is used in

    BinSelectDef
  13. case class InsertDef(cols: List[ColDef], tables: List[TableDef], exp: Insert) extends DMLDefBase with Product with Serializable
  14. case class PrimitiveDef(exp: Exp, typ: ExprType) extends TypedExp with Product with Serializable

    Marker for compiler macro, to unwrap compiled result

  15. case class PrimitiveExp(exp: Exp) extends CompilerExp with Product with Serializable

    Marker for primitive expression (non query)

  16. case class RecursiveDef(exp: Exp) extends TypedExp with Product with Serializable
  17. case class ReturningDMLDef(cols: List[ColDef], tables: List[TableDef], exp: DMLDefBase) extends SelectDefBase with Product with Serializable
  18. sealed trait RowDefBase extends TypedExp
  19. sealed trait SQLDefBase extends RowDefBase
  20. case class SelectDef(cols: List[ColDef], tables: List[TableDef], exp: Query) extends SelectDefBase with Product with Serializable
  21. sealed trait SelectDefBase extends SQLDefBase
  22. case class TableAlias(obj: Exp) extends CompilerExp with Product with Serializable

    helper class for namer to distinguish table with NoJoin, i.e.

    helper class for namer to distinguish table with NoJoin, i.e. must be defined in tables clause earlier

  23. case class TableDef(name: String, exp: Obj) extends CompilerExp with Product with Serializable
  24. case class TableObj(obj: Exp) extends CompilerExp with Product with Serializable

    helper class for namer to distinguish table references from column references

  25. sealed trait TypedExp extends CompilerExp
  26. case class UpdateDef(cols: List[ColDef], tables: List[TableDef], exp: Update) extends DMLDefBase with Product with Serializable
  27. case class ValuesFromSelectDef(exp: SelectDefBase) extends SelectDefBase with Product with Serializable
  28. case class WithDMLDef(exp: DMLDefBase, withTables: List[WithTableDef]) extends WithDMLQuery with Product with Serializable
  29. sealed trait WithDMLQuery extends DMLDefBase with WithQuery
  30. sealed trait WithQuery extends SQLDefBase
  31. sealed trait WithSelectBase extends SelectDefBase with WithQuery
  32. case class WithSelectDef(exp: SelectDefBase, withTables: List[WithTableDef]) extends WithSelectBase with Product with Serializable
  33. case class WithTableDef(cols: List[ColDef], tables: List[TableDef], recursive: Boolean, exp: SQLDefBase) extends SelectDefBase with Product with Serializable

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def error(msg: String, cause: Exception = null): Nothing
    Attributes
    protected
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  19. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. object ExprType extends Serializable

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped