Packages

class MemoryCodeGen extends CodeGen with ResultConverterCompiler[ProductValue, ArrayBuffer[Any], Nothing]

Source
MemoryQueryingProfile.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MemoryCodeGen
  2. ResultConverterCompiler
  3. CodeGen
  4. Phase
  5. Logging
  6. Function1
  7. AnyRef
  8. 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

Instance Constructors

  1. new MemoryCodeGen()

Type Members

  1. class QueryResultConverter extends ResultConverter[ProductValue, ArrayBuffer[Any], Nothing, Any]
  2. abstract type State

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

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

    Definition Classes
    Phase

Value Members

  1. def andThen[A](g: (CompilerState) => A): (CompilerState) => A
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  2. def apply(state: CompilerState): CompilerState

    Run the phase

    Run the phase

    Definition Classes
    MemoryCodeGenCodeGenPhase → Function1
  3. def apply(node: Node, state: CompilerState): Node
    Definition Classes
    CodeGen
  4. def compile(n: Node): ResultConverter[ProductValue, ArrayBuffer[Any], Nothing, _]
  5. def compileMapping(n: Node): CompiledMapping
    Definition Classes
    ResultConverterCompiler
  6. def compileServerSideAndMapping(serverSide: Node, mapping: Option[Node], state: CompilerState): (Node, Option[CompiledMapping])
    Definition Classes
    MemoryCodeGenCodeGen
  7. def compose[A](g: (A) => CompilerState): (A) => CompilerState
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  8. def createColumnConverter(n: Node, idx: Int, column: Option[FieldSymbol]): ResultConverter[ProductValue, ArrayBuffer[Any], Nothing, _]
  9. def createGetOrElseResultConverter[T](rc: ResultConverter[ProductValue, ArrayBuffer[Any], Nothing, Option[T]], default: () => T): ResultConverter[ProductValue, ArrayBuffer[Any], Nothing, T]
    Definition Classes
    ResultConverterCompiler
  10. def createIsDefinedResultConverter[T](rc: ResultConverter[ProductValue, ArrayBuffer[Any], Nothing, Option[T]]): ResultConverter[ProductValue, ArrayBuffer[Any], Nothing, Boolean]
    Definition Classes
    ResultConverterCompiler
  11. def createOptionRebuildingConverter(discriminator: ResultConverter[ProductValue, ArrayBuffer[Any], Nothing, Boolean], data: ResultConverter[ProductValue, ArrayBuffer[Any], Nothing, Any]): ResultConverter[ProductValue, ArrayBuffer[Any], Nothing, Option[Any]]
    Definition Classes
    ResultConverterCompiler
  12. def createTypeMappingResultConverter(rc: ResultConverter[ProductValue, ArrayBuffer[Any], Nothing, Any], mapper: Mapper): ResultConverter[ProductValue, ArrayBuffer[Any], Nothing, Any]
    Definition Classes
    ResultConverterCompiler
  13. val name: String

    The unique name of the phase

    The unique name of the phase

    Definition Classes
    CodeGenPhase
  14. def retype(n: Node): Node
  15. def toString(): String
    Definition Classes
    Function1 → AnyRef → Any
  16. def trType(t: Type): Type
  17. def transformCountAll(gen: TermSymbol, n: Node): Node
  18. def transformSimpleGrouping(n: Node): Node
  19. def treeAndType(n: Node): (Node, Type)

    Extract the source tree and type, after possible CollectionCast operations, from a tree

    Extract the source tree and type, after possible CollectionCast operations, from a tree

    Definition Classes
    CodeGen