ProperGadtConstraint

trait Showable
class Object
trait Matchable
class Any

Value members

Constructors

def this()

Concrete methods

override def addBound(sym: Symbol, bound: Type, isUpper: Boolean)(using Context): Boolean
Definition Classes
override def addToConstraint(params: List[Symbol])(using Context): Boolean
Definition Classes
override def approximation(sym: Symbol, fromBelow: Boolean)(using Context): Type
Definition Classes
override def bounds(sym: Symbol)(using Context): TypeBounds
Definition Classes
override def constr: Printer
Definition Classes
override def contains(sym: Symbol)(using Context): Boolean
Definition Classes
Definition Classes
override def fresh: GadtConstraint
Definition Classes
override def fullBounds(sym: Symbol)(using Context): TypeBounds
Definition Classes
override def fullLowerBound(param: TypeParamRef)(using Context): Type
Definition Classes
override def fullUpperBound(param: TypeParamRef)(using Context): Type
Definition Classes
override def isEmpty: Boolean
Definition Classes
override def isLess(sym1: Symbol, sym2: Symbol)(using Context): Boolean
Definition Classes
override def nonParamBounds(param: TypeParamRef)(using Context): TypeBounds
Definition Classes

Exposes ConstraintHandling.subsumes

Exposes ConstraintHandling.subsumes

override def toText(printer: Printer): Text
Definition Classes

Inherited methods

protected def addBoundTransitively(param: TypeParamRef, rawBound: Type, isUpper: Boolean)(using Context): Boolean
Inherited from
ConstraintHandling
protected def addConstraint(param: TypeParamRef, bound: Type, fromBelow: Boolean)(using Context): Boolean

Add constraint param <: bound if fromBelow is false, param >: bound otherwise. bound is assumed to be in normalized form, as specified in firstTry and secondTry of TypeComparer. In particular, it should not be an alias type, lazy ref, typevar, wildcard type, error type. In addition, upper bounds may not be AndTypes and lower bounds may not be OrTypes. This is assured by the way isSubType is organized.

Add constraint param <: bound if fromBelow is false, param >: bound otherwise. bound is assumed to be in normalized form, as specified in firstTry and secondTry of TypeComparer. In particular, it should not be an alias type, lazy ref, typevar, wildcard type, error type. In addition, upper bounds may not be AndTypes and lower bounds may not be OrTypes. This is assured by the way isSubType is organized.

Inherited from
ConstraintHandling
protected def addLess(p1: TypeParamRef, p2: TypeParamRef)(using Context): Boolean
Inherited from
ConstraintHandling
protected def addOneBound(param: TypeParamRef, bound: Type, isUpper: Boolean)(using Context): Boolean
Inherited from
ConstraintHandling

Add type lambda tl, possibly with type variables tvars, to current constraint and propagate all bounds.

Add type lambda tl, possibly with type variables tvars, to current constraint and propagate all bounds.

Value Params
tvars

See Constraint#add

Inherited from
ConstraintHandling
Inherited from
GadtConstraint
final def approximation(param: TypeParamRef, fromBelow: Boolean)(using Context): Type

Solve constraint set for given type parameter param. If fromBelow is true the parameter is approximated by its lower bound, otherwise it is approximated by its upper bound, unless the upper bound contains a reference to the parameter itself (such occurrences can arise for F-bounded types, addOneBound ensures that they never occur in the lower bound). Wildcard types in bounds are approximated by their upper or lower bounds. The constraint is left unchanged.

Solve constraint set for given type parameter param. If fromBelow is true the parameter is approximated by its lower bound, otherwise it is approximated by its upper bound, unless the upper bound contains a reference to the parameter itself (such occurrences can arise for F-bounded types, addOneBound ensures that they never occur in the lower bound). Wildcard types in bounds are approximated by their upper or lower bounds. The constraint is left unchanged.

Returns

the instantiating type

Inherited from
ConstraintHandling
final def assumedTrue(param: TypeParamRef)(using Context): Boolean

Is param assumed to be a sub- and super-type of any other type? This holds if TypeVarsMissContext is set unless param is a part of a MatchType that is currently normalized.

Is param assumed to be a sub- and super-type of any other type? This holds if TypeVarsMissContext is set unless param is a part of a MatchType that is currently normalized.

Inherited from
ConstraintHandling
def bounds(param: TypeParamRef)(using Context): TypeBounds

The current bounds of type parameter param

The current bounds of type parameter param

Inherited from
ConstraintHandling
final def canConstrain(param: TypeParamRef): Boolean

Can param be constrained with new bounds?

Can param be constrained with new bounds?

Inherited from
ConstraintHandling
def checkPropagated(msg: => String)(result: Boolean)(using Context): Boolean

Check that constraint is fully propagated. See comment in Config.checkConstraintsPropagated

Check that constraint is fully propagated. See comment in Config.checkConstraintsPropagated

Inherited from
ConstraintHandling
Inherited from
ConstraintHandling
def dropTransparentTraits(tp: Type, bound: Type)(using Context): Type

If tp is an intersection such that some operands are transparent trait instances and others are not, replace as many transparent trait instances as possible with Any as long as the result is still a subtype of bound. But fall back to the original type if the resulting widened type is a supertype of all dropped types (since in this case the type was not a true intersection of transparent traits and other types to start with).

If tp is an intersection such that some operands are transparent trait instances and others are not, replace as many transparent trait instances as possible with Any as long as the result is still a subtype of bound. But fall back to the original type if the resulting widened type is a supertype of all dropped types (since in this case the type was not a true intersection of transparent traits and other types to start with).

Inherited from
ConstraintHandling
def fallbackToText(printer: Printer): Text

A fallback text representation, if the pattern matching in Printers does not have a case for this showable element

A fallback text representation, if the pattern matching in Printers does not have a case for this showable element

Inherited from
Showable

Full bounds of param, including other lower/upper params.

Full bounds of param, including other lower/upper params.

Note that underlying operations perform subtype checks - for this reason, recursing on fullBounds of some param when comparing types might lead to infinite recursion. Consider bounds instead.

Inherited from
ConstraintHandling
final inline def inFrozenConstraint[T](op: => T): T
Inherited from
ConstraintHandling
def instanceType(param: TypeParamRef, fromBelow: Boolean)(using Context): Type

The instance type of param in the current constraint (which contains param). If fromBelow is true, the instance type is the lub of the parameter's lower bounds; otherwise it is the glb of its upper bounds. However, a lower bound instantiation can be a singleton type only if the upper bound is also a singleton type.

The instance type of param in the current constraint (which contains param). If fromBelow is true, the instance type is the lub of the parameter's lower bounds; otherwise it is the glb of its upper bounds. However, a lower bound instantiation can be a singleton type only if the upper bound is also a singleton type.

Inherited from
ConstraintHandling
final def isSameTypeWhenFrozen(tp1: Type, tp2: Type)(using Context): Boolean
Inherited from
ConstraintHandling
final protected def isSatisfiable(using Context): Boolean

Test whether the lower bounds of all parameters in this constraint are a solution to the constraint.

Test whether the lower bounds of all parameters in this constraint are a solution to the constraint.

Inherited from
ConstraintHandling
protected def isSubType(tp1: Type, tp2: Type, whenFrozen: Boolean)(using Context): Boolean
Inherited from
ConstraintHandling
final def isSubTypeWhenFrozen(tp1: Type, tp2: Type)(using Context): Boolean
Inherited from
ConstraintHandling
def location(using Context): String
Inherited from
ConstraintHandling
final def nonEmpty: Boolean
Inherited from
GadtConstraint
def show(using Context): String

The string representation of this showable element.

The string representation of this showable element.

Inherited from
Showable
def showIndented(margin: Int)(using Context): String

The string representation with each line after the first one indented by the given given margin (in spaces).

The string representation with each line after the first one indented by the given given margin (in spaces).

Inherited from
Showable
def showSummary(depth: Int)(using Context): String

The summarized string representation of this showable element. Recursion depth is limited to some smallish value. Default is Config.summarizeDepth.

The summarized string representation of this showable element. Recursion depth is limited to some smallish value. Default is Config.summarizeDepth.

Inherited from
Showable
final protected def subsumes(c1: Constraint, c2: Constraint, pre: Constraint)(using Context): Boolean

Constraint c1 subsumes constraint c2, if under c2 as constraint we have for all poly params p defined in c2 as p >: L2 <: U2:

Constraint c1 subsumes constraint c2, if under c2 as constraint we have for all poly params p defined in c2 as p >: L2 <: U2:

c1 defines p with bounds p >: L1 <: U1, and L2 <: L1, and U1 <: U2

Both c1 and c2 are required to derive from constraint pre, without adding any new type variables but possibly narrowing already registered ones with further bounds.

Inherited from
ConstraintHandling
def widenInferred(inst: Type, bound: Type)(using Context): Type

Widen inferred type inst with upper bound, according to the following rules:

Widen inferred type inst with upper bound, according to the following rules:

  1. If inst is a singleton type, or a union containing some singleton types, widen (all) the singleton type(s), provided the result is a subtype of bound. (i.e. inst.widenSingletons <:< bound succeeds with satisfiable constraint)
  2. If inst is a union type, approximate the union type from above by an intersection of all common base types, provided the result is a subtype of bound.
  3. Widen some irreducible applications of higher-kinded types to wildcard arguments (see @widenIrreducible).
  4. Drop transparent traits from intersections (see @dropTransparentTraits).

Don't do these widenings if bound is a subtype of scala.Singleton. Also, if the result of these widenings is a TypeRef to a module class, and this type ref is different from inst, replace by a TermRef to its source module instead.

At this point we also drop the @Repeated annotation to avoid inferring type arguments with it, as those could leak the annotation to users (see run/inferred-repeated-result).

Inherited from
ConstraintHandling
def widenIrreducible(tp: Type)(using Context): Type

If tp is an applied match type alias which is also an unreducible application of a higher-kinded type to a wildcard argument, widen to the match type's bound, in order to avoid an unreducible application of higher-kinded type ... in inferred type" error in PostTyper. Fixes #11246.

If tp is an applied match type alias which is also an unreducible application of a higher-kinded type to a wildcard argument, widen to the match type's bound, in order to avoid an unreducible application of higher-kinded type ... in inferred type" error in PostTyper. Fixes #11246.

Inherited from
ConstraintHandling

Inherited fields

protected var caseLambda: Type

Potentially a type lambda that is still instantiatable, even though the constraint is generally frozen.

Potentially a type lambda that is still instantiatable, even though the constraint is generally frozen.

Inherited from
ConstraintHandling

We are currently comparing type lambdas. Used as a flag for optimization: when false, no need to do an expensive pruneLambdaParams

We are currently comparing type lambdas. Used as a flag for optimization: when false, no need to do an expensive pruneLambdaParams

Inherited from
ConstraintHandling
protected var frozenConstraint: Boolean

If the constraint is frozen we cannot add new bounds to the constraint.

If the constraint is frozen we cannot add new bounds to the constraint.

Inherited from
ConstraintHandling
protected var homogenizeArgs: Boolean

If set, align arguments S1, S2when taking the glb T1 { X = S1 } & T2 { X = S2 } of a constraint upper bound for some type parameter. Aligning means computing S1 =:= S2 which may change the current constraint. See note in TypeComparer#distributeAnd.

If set, align arguments S1, S2when taking the glb T1 { X = S1 } & T2 { X = S2 } of a constraint upper bound for some type parameter. Aligning means computing S1 =:= S2 which may change the current constraint. See note in TypeComparer#distributeAnd.

Inherited from
ConstraintHandling