Packages

trait MatchAnalysis extends MatchApproximation

Source
MatchAnalysis.scala
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MatchAnalysis
  2. MatchApproximation
  3. MatchTreeMaking
  4. MatchCodeGen
  5. ScalaLogic
  6. Logic
  7. Interface
  8. TreeDSL
  9. TreeAndTypeAnalysis
  10. Debugging
  11. AnyRef
  12. 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. trait MatchMonadInterface extends AnyRef
    Definition Classes
    Interface
  2. trait TypedSubstitution extends MatchMonadInterface
    Definition Classes
    Interface
  3. trait PropositionalLogic extends AnyRef
    Definition Classes
    Logic
  4. trait MatchAnalyzer extends MatchApproximator
  5. trait MatchApproximator extends TreeMakers with TreesAndTypesDomain

    Represent a match as a formula in propositional logic that encodes whether the match matches (abstractly: we only consider types)

    Represent a match as a formula in propositional logic that encodes whether the match matches (abstractly: we only consider types)

    Definition Classes
    MatchApproximation
  6. trait CodegenCore extends MatchMonadInterface
    Definition Classes
    MatchCodeGen
  7. trait OptimizedCodegen extends CodegenCore with TypedSubstitution with MatchMonadInterface
    Definition Classes
    MatchCodeGen
  8. final case class Suppression(suppressExhaustive: Boolean, suppressUnreachable: Boolean) extends Product with Serializable
    Definition Classes
    MatchTreeMaking
  9. trait TreeMakers extends TypedSubstitution with CodegenCore
    Definition Classes
    MatchTreeMaking
  10. trait TreesAndTypesDomain extends PropositionalLogic with CheckableTreeAndTypeAnalysis
    Definition Classes
    ScalaLogic
  11. trait CheckableTreeAndTypeAnalysis extends AnyRef
    Definition Classes
    TreeAndTypeAnalysis

Abstract Value Members

  1. abstract val global: Global
    Definition Classes
    TreeDSL

Concrete Value Members

  1. object CODE
    Definition Classes
    TreeDSL
  2. object debug
    Definition Classes
    Debugging
  3. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def ##: Int
    Definition Classes
    AnyRef → Any
  5. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from MatchAnalysis toany2stringadd[MatchAnalysis] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  6. def ->[B](y: B): (MatchAnalysis, B)
    Implicit
    This member is added by an implicit conversion from MatchAnalysis toArrowAssoc[MatchAnalysis] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  7. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def alignAcrossRows(xss: List[List[Any]], sep: String, lineSep: String = "\n"): String
    Definition Classes
    Logic
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def binderTypeImpliedByPattern(pat: Global.Tree, pt: Global.Type): Global.Type

    Compute the type T implied for a value v matched by a pattern pat (with expected type pt).

    Compute the type T implied for a value v matched by a pattern pat (with expected type pt).

    Usually, this is the pattern's type because pattern matching implies instance-of checks.

    However, Stable Identifier and Literal patterns are matched using ==, which does not imply a type for the binder that binds the matched value. E.g., in case x@Nil => x , all we know about x is that it satisfies Nil == x, which could be anything. A type pattern with a literal type works the same as the corresponding literal pattern. A literal pattern with a Boolean or Unit pattern does enforce that the respective value (true, false, ()) was matched, so in those cases, the pattern type is assumed.

    The other patterns imply type tests, so we can safely deduce that the binder has the pattern's type when the pattern matches. Concretely, a literal, type pattern, a case class (the constructor's result type) or extractor (the unapply's argument type) all imply type tests.

    See scala/bug#1503, scala/bug#5024: don't cast binders to types we're not sure they have

    Definition Classes
    TreeAndTypeAnalysis
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  12. def ensuring(cond: (MatchAnalysis) => Boolean, msg: => Any): MatchAnalysis
    Implicit
    This member is added by an implicit conversion from MatchAnalysis toEnsuring[MatchAnalysis] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: (MatchAnalysis) => Boolean): MatchAnalysis
    Implicit
    This member is added by an implicit conversion from MatchAnalysis toEnsuring[MatchAnalysis] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean, msg: => Any): MatchAnalysis
    Implicit
    This member is added by an implicit conversion from MatchAnalysis toEnsuring[MatchAnalysis] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean): MatchAnalysis
    Implicit
    This member is added by an implicit conversion from MatchAnalysis toEnsuring[MatchAnalysis] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  18. def equivalentTree(a: Global.Tree, b: Global.Tree): Boolean
    Definition Classes
    TreeAndTypeAnalysis
  19. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  20. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. def instanceOfTpImplies(tp: Global.Type, tpImplied: Global.Type): Boolean
    Definition Classes
    TreeAndTypeAnalysis
  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  32. object Suppression extends java.io.Serializable
    Definition Classes
    MatchTreeMaking

Deprecated Value Members

  1. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from MatchAnalysis toStringFormat[MatchAnalysis] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  2. def [B](y: B): (MatchAnalysis, B)
    Implicit
    This member is added by an implicit conversion from MatchAnalysis toArrowAssoc[MatchAnalysis] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from MatchApproximation

Inherited from MatchTreeMaking

Inherited from MatchCodeGen

Inherited from ScalaLogic

Inherited from Logic

Inherited from Interface

Inherited from TreeDSL

Inherited from TreeAndTypeAnalysis

Inherited from Debugging

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromMatchAnalysis to any2stringadd[MatchAnalysis]

Inherited by implicit conversion StringFormat fromMatchAnalysis to StringFormat[MatchAnalysis]

Inherited by implicit conversion Ensuring fromMatchAnalysis to Ensuring[MatchAnalysis]

Inherited by implicit conversion ArrowAssoc fromMatchAnalysis to ArrowAssoc[MatchAnalysis]

Ungrouped