trait Phase extends (CompilerState) => CompilerState with Logging

A phase of the query compiler, identified by a unique name

Source
QueryCompiler.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Phase
  2. Logging
  3. Function1
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. abstract type State

    The immutable state of the phase that can also be accessed by other phases.

Abstract Value Members

  1. abstract def apply(state: CompilerState): CompilerState

    Run the phase

    Run the phase

    Definition Classes
    Phase → Function1
  2. abstract val name: String

    The unique name of the phase

Concrete Value Members

  1. def andThen[A](g: (CompilerState) => A): (CompilerState) => A
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  2. def compose[A](g: (A) => CompilerState): (A) => CompilerState
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  3. def toString(): String
    Definition Classes
    Function1 → AnyRef → Any