scala.tools.nsc.typechecker.PatternMatching

MatchOptimizations

trait MatchOptimizations extends CommonSubconditionElimination with DeadCodeElimination with SwitchEmission with OptimizedCodegen with SymbolicMatchAnalysis with DPLLSolver

Self Type
MatchOptimizations with TreeMakers
Source
PatternMatching.scala
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. MatchOptimizations
  2. DPLLSolver
  3. CNF
  4. SymbolicMatchAnalysis
  5. Logic
  6. OptimizedCodegen
  7. CodegenCore
  8. SwitchEmission
  9. OptimizedMatchMonadInterface
  10. DeadCodeElimination
  11. CommonSubconditionElimination
  12. TreeMakerApproximation
  13. Prettification
  14. TreeMakers
  15. TypedSubstitution
  16. MatchMonadInterface
  17. AnyRef
  18. Any
Implicitly
  1. by any2stringadd
  2. by any2stringfmt
  3. by any2ArrowAssoc
  4. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. trait AbsCodegen extends AnyRef

    Definition Classes
    CodegenCore
  2. trait AbsConst extends AnyRef

    Definition Classes
    Logic
  3. trait AbsVar extends AnyRef

    Definition Classes
    Logic
  4. case class AlternativesTreeMaker(prevBinder: Symbol, altss: List[List[TreeMaker]], pos: Position) extends TreeMaker with NoNewBinders with Product with Serializable

    Definition Classes
    TreeMakers
  5. case class And(a: Prop, b: Prop) extends Prop with Product with Serializable

    Definition Classes
    Logic
  6. case class AndCond(a: Cond, b: Cond) extends Cond with Product with Serializable

    Definition Classes
    TreeMakerApproximation
  7. case class BodyTreeMaker(body: Tree, matchPt: Type) extends TreeMaker with NoNewBinders with Product with Serializable

    Definition Classes
    TreeMakers
  8. class CNFBudgetExceeded extends RuntimeException

    Definition Classes
    Logic
  9. trait Casegen extends AbsCodegen

    Definition Classes
    CodegenCore
  10. type Clause = Set[Lit]

    Definition Classes
    CNF
  11. abstract class CommonCodegen extends AbsCodegen

    Definition Classes
    CodegenCore
  12. abstract class Cond extends AnyRef

    Definition Classes
    TreeMakerApproximation
  13. abstract class CondTreeMaker extends FunTreeMaker

    Definition Classes
    TreeMakers
  14. sealed abstract class Const extends AbsConst

    Definition Classes
    SymbolicMatchAnalysisLogic
  15. case class ConstructorExample(cls: Symbol, ctorArgs: List[CounterExample]) extends CounterExample with Product with Serializable

    Definition Classes
    SymbolicMatchAnalysis
  16. class CounterExample extends AnyRef

    Definition Classes
    SymbolicMatchAnalysis
  17. case class Eq(p: Var, q: Const) extends Prop with Product with Serializable

    Definition Classes
    Logic
  18. class EqualityCond extends Cond

    Definition Classes
    TreeMakerApproximation
  19. case class EqualityTestTreeMaker(prevBinder: Symbol, patTree: Tree, pos: Position) extends CondTreeMaker with Product with Serializable

    Definition Classes
    TreeMakers
  20. case class ExtractorTreeMaker(extractor: Tree, extraCond: Option[Tree], nextBinder: Symbol, localSubstitution: Substitution, extractorReturnsBoolean: Boolean, checkedLength: Option[Int], prevBinder: Symbol) extends FunTreeMaker with Product with Serializable

    Make a TreeMaker that will result in an extractor call specified by extractor the next TreeMaker (here, we don't know which it'll be) is chained after this one by flatMap'ing a function with binder nextBinder over our extractor's result the function's body is determined by the next TreeMaker in this function's body, and all the subsequent ones, references to the symbols in from will be replaced by the corresponding tree in to

  21. type Formula = Array[Clause]

    Definition Classes
    CNFLogic
  22. abstract class FunTreeMaker extends TreeMaker

    Definition Classes
    TreeMakers
  23. case class GuardTreeMaker(guardTree: Tree) extends TreeMaker with NoNewBinders with Product with Serializable

    Definition Classes
    TreeMakers
  24. case class ListExample(ctorArgs: List[CounterExample]) extends CounterExample with Product with Serializable

    Definition Classes
    SymbolicMatchAnalysis
  25. class Lit extends AnyRef

    Definition Classes
    DPLLSolverCNF
  26. type Model = Map[Sym, Boolean]

    Definition Classes
    Logic
  27. case class NegativeExample(eqTo: Const, nonTrivialNonEqualTo: List[Const]) extends CounterExample with Product with Serializable

    Definition Classes
    SymbolicMatchAnalysis
  28. trait NoNewBinders extends TreeMaker

    Definition Classes
    TreeMakers
  29. class NonNullCond extends Cond

    Definition Classes
    TreeMakerApproximation
  30. case class Not(a: Prop) extends Prop with Product with Serializable

    Definition Classes
    Logic
  31. case class Or(a: Prop, b: Prop) extends Prop with Product with Serializable

    Definition Classes
    Logic
  32. case class OrCond(a: Cond, b: Cond) extends Cond with Product with Serializable

    Definition Classes
    TreeMakerApproximation
  33. case class ProductExtractorTreeMaker(prevBinder: Symbol, extraCond: Option[Tree], localSubstitution: Substitution) extends FunTreeMaker with Product with Serializable

    Definition Classes
    TreeMakers
  34. class Prop extends AnyRef

    Definition Classes
    Logic
  35. trait PropMap extends AnyRef

    Definition Classes
    Logic
  36. trait PropTraverser extends AnyRef

    Definition Classes
    Logic
  37. class RegularSwitchMaker extends SwitchMaker

    Definition Classes
    SwitchEmission
  38. class ReusedCondTreeMaker extends TreeMaker

  39. case class ReusingCondTreeMaker(sharedPrefix: List[Test], toReused: (TreeMaker) ⇒ TreeMaker) extends TreeMaker with Product with Serializable

  40. case class SubstOnlyTreeMaker(prevBinder: Symbol, nextBinder: Symbol) extends TreeMaker with Product with Serializable

    Definition Classes
    TreeMakers
  41. class Substitution extends AnyRef

    Definition Classes
    TypedSubstitution
  42. abstract class SwitchMaker extends AnyRef

    Definition Classes
    SwitchEmission
  43. case class Sym(variable: Var, const: Const) extends Prop with Product with Serializable

    Definition Classes
    Logic
  44. case class Test(cond: Cond, treeMaker: TreeMaker) extends Product with Serializable

    Definition Classes
    TreeMakerApproximation
  45. abstract class TreeMaker extends AnyRef

    Definition Classes
    TreeMakers
  46. class TreeMakersToConds extends AnyRef

    Definition Classes
    TreeMakerApproximation
  47. case class TrivialTreeMaker(tree: Tree) extends TreeMaker with NoNewBinders with Product with Serializable

    Definition Classes
    TreeMakers
  48. case class TupleExample(ctorArgs: List[CounterExample]) extends CounterExample with Product with Serializable

    Definition Classes
    SymbolicMatchAnalysis
  49. class TypeCond extends Cond

    Definition Classes
    TreeMakerApproximation
  50. sealed class TypeConst extends Const

    Definition Classes
    SymbolicMatchAnalysisLogic
  51. trait TypeConstExtractor extends AnyRef

    Definition Classes
    Logic
  52. case class TypeExample(c: Const) extends CounterExample with Product with Serializable

    Definition Classes
    SymbolicMatchAnalysis
  53. case class TypeTestTreeMaker(prevBinder: Symbol, testedBinder: Symbol, expectedTp: Type, nextBinderTp: Type, pos: Position, extractorArgTypeTest: Boolean) extends CondTreeMaker with Product with Serializable

    implements the run-time aspects of (§8.

  54. sealed class ValueConst extends Const

    Definition Classes
    SymbolicMatchAnalysis
  55. case class ValueExample(c: ValueConst) extends CounterExample with Product with Serializable

    Definition Classes
    SymbolicMatchAnalysis
  56. class Var extends AbsVar

    Definition Classes
    SymbolicMatchAnalysisLogic

Abstract Value Members

  1. abstract val typer: Typer

    Definition Classes
    MatchMonadInterface

Concrete 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 +(other: String): String

    Implicit information
    This member is added by an implicit conversion from MatchOptimizations to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ->[B](y: B): (MatchOptimizations, B)

    Implicit information
    This member is added by an implicit conversion from MatchOptimizations to ArrowAssoc[MatchOptimizations] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. def /\(props: Iterable[Prop]): Prop

    Definition Classes
    Logic
    Annotations
    @inline()
  7. final def ==(arg0: AnyRef): Boolean

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

    Definition Classes
    Any
  9. object Cond

    Definition Classes
    TreeMakerApproximation
  10. object Const

    Definition Classes
    SymbolicMatchAnalysis
  11. object CounterExample

    Definition Classes
    SymbolicMatchAnalysis
  12. val EmptyModel: Map[Sym, Boolean]

    Definition Classes
    DPLLSolverLogic
  13. object EmptySubstitution extends Substitution

    Definition Classes
    TypedSubstitution
  14. object EqualityCond

    Definition Classes
    TreeMakerApproximation
  15. object False extends Prop with Product with Serializable

    Definition Classes
    Logic
  16. object FalseCond extends Cond with Product with Serializable

    Definition Classes
    TreeMakerApproximation
  17. object IrrefutableExtractorTreeMaker

    Definition Classes
    TreeMakerApproximation
  18. def Lit(sym: Sym, pos: Boolean = true): Lit

    Definition Classes
    DPLLSolverCNF
  19. object NoExample extends CounterExample with Product with Serializable

    Definition Classes
    SymbolicMatchAnalysis
  20. val NoModel: Model

    Definition Classes
    DPLLSolverLogic
  21. object NonNullCond

    Definition Classes
    TreeMakerApproximation
  22. object NullConst extends Const with Product with Serializable

    Definition Classes
    SymbolicMatchAnalysisLogic
  23. lazy val NullTp: ConstantType

    Definition Classes
    SymbolicMatchAnalysis
  24. object ReusedCondTreeMaker

  25. object Substitution

    Definition Classes
    TypedSubstitution
  26. object Test extends Serializable

    Definition Classes
    TreeMakerApproximation
  27. object True extends Prop with Product with Serializable

    Definition Classes
    Logic
  28. object TrueCond extends Cond with Product with Serializable

    Definition Classes
    TreeMakerApproximation
  29. object TypeCond

    Definition Classes
    TreeMakerApproximation
  30. object TypeConst extends TypeConstExtractor

    Definition Classes
    SymbolicMatchAnalysisLogic
  31. object TypeTestTreeMaker extends Serializable

    Definition Classes
    TreeMakers
  32. object ValueConst

    Definition Classes
    SymbolicMatchAnalysis
  33. object Var

    Definition Classes
    SymbolicMatchAnalysis
  34. object WildcardExample extends CounterExample with Product with Serializable

    Definition Classes
    SymbolicMatchAnalysis
  35. def \/(props: Iterable[Prop]): Prop

    Definition Classes
    Logic
    Annotations
    @inline()
  36. def alignAcrossRows(xss: List[List[AnyRef]], sep: String, lineSep: String = "\n"): String

    Definition Classes
    Prettification
  37. def alignedColumns(cols: Seq[AnyRef]): Seq[String]

    Definition Classes
    Prettification
  38. def andFormula(a: Formula, b: Formula): Formula

    Definition Classes
    CNFLogic
  39. def approximateMatch(root: Symbol, cases: List[List[TreeMaker]]): List[List[Test]]

    Definition Classes
    TreeMakerApproximation
  40. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  41. def checkableType(tp: Type): Type

    Definition Classes
    SymbolicMatchAnalysis
  42. def clause(l: Lit*): Clause

    Definition Classes
    CNF
  43. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  44. def cnfString(f: Formula): String

    Definition Classes
    DPLLSolverLogic
  45. def codegen: AbsCodegen

    Definition Classes
    OptimizedCodegenCodegenCore
  46. def combineCases(scrut: Tree, scrutSym: Symbol, casesRaw: List[List[TreeMaker]], pt: Type, owner: Symbol, matchFailGenOverride: Option[(Tree) ⇒ Tree]): Tree

    Definition Classes
    TreeMakers
  47. def combineCasesNoSubstOnly(scrut: Tree, scrutSym: Symbol, casesNoSubstOnly: List[List[TreeMaker]], pt: Type, owner: Symbol, matchFailGenOverride: Option[(Tree) ⇒ Tree]): Tree

    Definition Classes
    TreeMakers
  48. def combineExtractors(treeMakers: List[TreeMaker])(casegen: Casegen): Tree

    Definition Classes
    TreeMakers
  49. def doCSE(prevBinder: Symbol, cases: List[List[TreeMaker]], pt: Type): List[List[TreeMaker]]

    a flow-sensitive, generalised, common sub-expression elimination reuse knowledge from performed tests the only sub-expressions we consider are the conditions and results of the three tests (type, type&equality, equality) when a sub-expression is shared, it is stored in a mutable variable the variable is floated up so that its scope includes all of the program that shares it we generalize sharing to implication, where b reuses a if a => b and priors(a) => priors(b) (the priors of a sub expression form the path through the decision tree)

    a flow-sensitive, generalised, common sub-expression elimination reuse knowledge from performed tests the only sub-expressions we consider are the conditions and results of the three tests (type, type&equality, equality) when a sub-expression is shared, it is stored in a mutable variable the variable is floated up so that its scope includes all of the program that shares it we generalize sharing to implication, where b reuses a if a => b and priors(a) => priors(b) (the priors of a sub expression form the path through the decision tree)

    Definition Classes
    CommonSubconditionElimination
  50. def doDCE(prevBinder: Symbol, cases: List[List[TreeMaker]], pt: Type): List[List[TreeMaker]]

    Definition Classes
    DeadCodeElimination
  51. def emitSwitch(scrut: Tree, scrutSym: Symbol, cases: List[List[TreeMaker]], pt: Type, matchFailGenOverride: Option[(Tree) ⇒ Tree], unchecked: Boolean): Option[Tree]

    Definition Classes
    SwitchEmissionTreeMakers
  52. def emitTypeSwitch(bindersAndCases: List[(Symbol, List[TreeMaker])], pt: Type): Option[List[CaseDef]]

    Definition Classes
    SwitchEmissionTreeMakers
  53. def ensuring(cond: (MatchOptimizations) ⇒ Boolean, msg: ⇒ Any): MatchOptimizations

    Implicit information
    This member is added by an implicit conversion from MatchOptimizations to Ensuring[MatchOptimizations] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  54. def ensuring(cond: (MatchOptimizations) ⇒ Boolean): MatchOptimizations

    Implicit information
    This member is added by an implicit conversion from MatchOptimizations to Ensuring[MatchOptimizations] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  55. def ensuring(cond: Boolean, msg: ⇒ Any): MatchOptimizations

    Implicit information
    This member is added by an implicit conversion from MatchOptimizations to Ensuring[MatchOptimizations] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  56. def ensuring(cond: Boolean): MatchOptimizations

    Implicit information
    This member is added by an implicit conversion from MatchOptimizations to Ensuring[MatchOptimizations] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  57. def enumerateSubtypes(tp: Type): Option[List[Type]]

    Definition Classes
    SymbolicMatchAnalysis
  58. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  59. def eqFreePropToSolvable(p: Prop): Formula

    Definition Classes
    CNFLogic
  60. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  61. def exhaustive(prevBinder: Symbol, cases: List[List[TreeMaker]], pt: Type): List[String]

    Definition Classes
    SymbolicMatchAnalysis
  62. def finalize(): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  63. def findAllModelsFor(f: Formula): List[Model]

    Definition Classes
    DPLLSolverLogic
  64. def findModelFor(f: Formula): Model

    Definition Classes
    DPLLSolverLogic
  65. def fixerUpper(origOwner: Symbol, pos: Position): Traverser

    Attributes
    protected
    Definition Classes
    TreeMakers
  66. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from MatchOptimizations to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  67. def formula(c: Clause*): Formula

    Definition Classes
    CNF
  68. def freshName(prefix: String): TermName

    Definition Classes
    CodegenCore
  69. def freshSym(pos: Position, tp: Type = NoType, prefix: String = "x"): TermSymbol

    Definition Classes
    CodegenCore
  70. def gatherVariables(p: Prop): Set[Var]

    Definition Classes
    Logic
  71. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  73. def inMatchMonad(tp: Type): Type

  74. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  75. final def matchMonadResult(tp: Type): Type

    Definition Classes
    MatchMonadInterface
  76. def matchMonadSym: ClassSymbol

    Attributes
    protected
    Definition Classes
    OptimizedMatchMonadInterfaceMatchMonadInterface
  77. val matchOwner: Symbol

    Definition Classes
    MatchMonadInterface
  78. def modelString(model: Model): String

    Definition Classes
    SymbolicMatchAnalysis
  79. def modelToCounterExample(scrutVar: Var)(model: Model): CounterExample

    Definition Classes
    SymbolicMatchAnalysis
  80. def modelToVarAssignment(model: Model): Map[Var, (Seq[Const], Seq[Const])]

    Definition Classes
    SymbolicMatchAnalysis
    Annotations
    @inline()
  81. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  82. def needsTypeTest(tp: Type, pt: Type): Boolean

    Definition Classes
    TreeMakers
  83. final def notify(): Unit

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

    Definition Classes
    AnyRef
  85. def optimizeCases(prevBinder: Symbol, cases: List[List[TreeMaker]], pt: Type, unchecked: Boolean): (List[List[TreeMaker]], List[Tree])

    Definition Classes
    MatchOptimizationsTreeMakers
  86. object optimizedCodegen extends CommonCodegen

    Definition Classes
    OptimizedCodegen
  87. def prepareNewAnalysis(): Unit

    Definition Classes
    SymbolicMatchAnalysis
  88. def propToSolvable(p: Prop): Formula

    Definition Classes
    Logic
  89. def propagateSubstitution(treeMakers: List[TreeMaker], initial: Substitution): List[TreeMaker]

    Definition Classes
    TreeMakers
  90. def pureType(tp: Type): Type

  91. def removeSubstOnly(makers: List[TreeMaker]): List[TreeMaker]

    Definition Classes
    TreeMakers
  92. def removeVarEq(props: List[Prop], modelNull: Boolean = false): (Prop, List[Prop])

    Definition Classes
    Logic
  93. def reportMissingCases(pos: Position, counterExamples: List[String]): Unit

    Definition Classes
    MatchMonadInterface
  94. def reportUnreachable(pos: Position): Unit

    Definition Classes
    MatchMonadInterface
  95. def sameValue(a: Tree, b: Tree): Boolean

    Definition Classes
    TreeMakerApproximation
  96. def showTests(testss: List[List[Test]]): Unit

    Definition Classes
    TreeMakerApproximation
  97. def showTreeMakers(cases: List[List[TreeMaker]]): Unit

    Definition Classes
    TreeMakerApproximation
  98. def symbolicCase(tests: List[Test], modelNull: Boolean = false): Prop

    Definition Classes
    SymbolicMatchAnalysis
  99. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  100. def toString(): String

    Definition Classes
    AnyRef → Any
  101. def typesConform(tp: Type, pt: Type): Boolean

    Definition Classes
    CodegenCore
  102. def uncheckableType(tp: Type): Boolean

    Definition Classes
    SymbolicMatchAnalysis
  103. def unreachableCase(prevBinder: Symbol, cases: List[List[TreeMaker]], pt: Type): Option[Int]

    Definition Classes
    SymbolicMatchAnalysis
  104. def varAssignmentString(varAssignment: Map[Var, (Seq[Const], Seq[Const])]): String

    Definition Classes
    SymbolicMatchAnalysis
  105. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  108. def [B](y: B): (MatchOptimizations, B)

    Implicit information
    This member is added by an implicit conversion from MatchOptimizations to ArrowAssoc[MatchOptimizations] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implict Value Members

  1. val self: Any

    Implicit information
    This member is added by an implicit conversion from MatchOptimizations to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (matchOptimizations: StringAdd).self
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from MatchOptimizations to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (matchOptimizations: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def x: MatchOptimizations

    Implicit information
    This member is added by an implicit conversion from MatchOptimizations to ArrowAssoc[MatchOptimizations] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (matchOptimizations: ArrowAssoc[MatchOptimizations]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  2. def x: MatchOptimizations

    Implicit information
    This member is added by an implicit conversion from MatchOptimizations to Ensuring[MatchOptimizations] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (matchOptimizations: Ensuring[MatchOptimizations]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from DPLLSolver

Inherited from CNF

Inherited from SymbolicMatchAnalysis

Inherited from Logic

Inherited from OptimizedCodegen

Inherited from CodegenCore

Inherited from SwitchEmission

Inherited from DeadCodeElimination

Inherited from TreeMakerApproximation

Inherited from Prettification

Inherited from TreeMakers

Inherited from TypedSubstitution

Inherited from MatchMonadInterface

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from MatchOptimizations to StringAdd

Inherited by implicit conversion any2stringfmt from MatchOptimizations to StringFormat

Inherited by implicit conversion any2ArrowAssoc from MatchOptimizations to ArrowAssoc[MatchOptimizations]

Inherited by implicit conversion any2Ensuring from MatchOptimizations to Ensuring[MatchOptimizations]