scala.slick.compiler

QueryCompiler

class QueryCompiler extends Logging

An immutable, stateless query compiler consisting of a series of phases

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. QueryCompiler
  2. Logging
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new QueryCompiler(phases: Vector[Phase])

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def +(p: Phase): QueryCompiler

    Return a new compiler with the new phase added at the end.

  5. def -(p: Phase): QueryCompiler

    Return a new compiler without the given phase (or a different implementation of the same phase name.

  6. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  7. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  8. def addAfter(p: Phase, after: Phase): QueryCompiler

    Return a new compiler with the new phase added directly after another phase (or a different implementation of the same phase name).

  9. def addBefore(p: Phase, before: Phase): QueryCompiler

    Return a new compiler with the new phase added directly before another phase (or a different implementation of the same phase name).

  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  12. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  15. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  17. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  18. lazy val logger: SlickLogger

    Attributes
    protected[this]
    Definition Classes
    Logging
  19. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  22. val phases: Vector[Phase]

  23. def replace(p: Phase): QueryCompiler

    Return a new compiler that replaces an existing phase by a new one with the same name.

    Return a new compiler that replaces an existing phase by a new one with the same name. The new phase must have a State that is assignable to the original phase's state.

  24. def run(tree: Node, state: CompilationState): Node

  25. def run(tree: Node): CompilationState

  26. def runBefore(before: Phase, tree: Node, state: CompilationState): Node

  27. def runPhase(p: Phase, tree: Node, state: CompilationState): Node

    Attributes
    protected[this]
  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  29. def toString(): String

    Definition Classes
    AnyRef → Any
  30. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from Logging

Inherited from AnyRef

Inherited from Any

Ungrouped