ProtoTypes

object ProtoTypes
class Object
trait Matchable
class Any

Type members

Classlikes

A prototype for expressions [] that are known to be functions:

A prototype for expressions [] that are known to be functions:

[] _

A prototype for expressions [] that are in some unspecified selection operation

A prototype for expressions [] that are in some unspecified selection operation

[].?: ?

Used to indicate that expression is in a context where the only valid operation is further selection. In this case, the expression need not be a value.

See also:

checkValue

A prototype for type constructors that are followed by a type application

A prototype for type constructors that are followed by a type application

trait ApplyingProto extends ProtoType
final class CachedIgnoredProto(ignored: Type) extends IgnoredProto
class CachedSelectionProto(name: Name, memberProto: Type, compat: Compatibility, privateOK: Boolean) extends SelectionProto
class CachedViewProto(argType: Type, resultType: Type) extends ViewProto

A trait defining an isCompatible method.

A trait defining an isCompatible method.

case class FunProto(args: List[Tree], resType: Type)(typer: Typer, applyKind: ApplyKind, state: FunProtoState, constrainResultDeep: Boolean)(using protoCtx: Context) extends UncachedGroundType with ApplyingProto with FunOrPolyProto

A prototype for expressions that appear in function position

A prototype for expressions that appear in function position

: resultType

Value parameters:
applyKind

The kind of application (regular/using/tupled infix operand)

args

The untyped arguments to which the function is applied

constrainResultDeep

A flag to indicate that constrainResult on this prototype should typecheck and compare the arguments.

resType

The expeected result type

state

The state object to use for tracking the changes to this prototype

typer

The typer to use for typing the arguments

class FunProtoTyped(args: List[Tree], resultType: Type)(typer: Typer, applyKind: ApplyKind)(using x$5: Context) extends FunProto

A prototype for expressions that appear in function position

A prototype for expressions that appear in function position

: resultType, where args are known to be typed

abstract case class IgnoredProto(ignored: Type) extends CachedGroundType with MatchAlways

A class marking ignored prototypes that can be revealed by deepenProto

A class marking ignored prototypes that can be revealed by deepenProto

Companion:
object
Companion:
class
trait MatchAlways extends ProtoType

A trait for prototypes that match all types

A trait for prototypes that match all types

case class PolyProto(targs: List[Tree], resType: Type) extends UncachedGroundType with FunOrPolyProto

A prototype for expressions [] that are type-parameterized:

A prototype for expressions [] that are type-parameterized:

[] [targs] resultType

abstract case class SelectionProto(name: Name, memberProto: Type, compat: Compatibility, privateOK: Boolean) extends CachedProxyType with ProtoType with ValueTypeOrProto

A prototype for expressions [] that are part of a selection operation:

A prototype for expressions [] that are part of a selection operation:

 [ ].name: proto
Companion:
object
Companion:
class

A prototype for selections in pattern constructors

A prototype for selections in pattern constructors

abstract case class ViewProto(argType: Type, resType: Type) extends CachedGroundType with ApplyingProto

A prototype for implicitly inferred views:

A prototype for implicitly inferred views:

[]: argType => resultType

Companion:
object
object ViewProto
Companion:
class

Dummy tree to be used as an argument of a FunProto or ViewProto type

Dummy tree to be used as an argument of a FunProto or ViewProto type

Value members

Concrete methods

def constrained(using Context)(tl: TypeLambda, owningTree: Tree, alwaysAddTypeVars: Boolean, nestingLevel: Int): (TypeLambda, List[TypeTree])

Add all parameters of given type lambda tl to the constraint's domain. If the constraint contains already some of these parameters in its domain, make a copy of the type lambda and add the copy's type parameters instead. Return either the original type lambda, or the copy, if one was made. Also, if owningTree is non-empty or alwaysAddTypeVars is true, add a type variable for each parameter.

Add all parameters of given type lambda tl to the constraint's domain. If the constraint contains already some of these parameters in its domain, make a copy of the type lambda and add the copy's type parameters instead. Return either the original type lambda, or the copy, if one was made. Also, if owningTree is non-empty or alwaysAddTypeVars is true, add a type variable for each parameter.

Returns:

The added type lambda, and the list of created type variables.

def constrained(tl: TypeLambda, owningTree: Tree)(using Context): (TypeLambda, List[TypeTree])

Same as constrained(tl, EmptyTree), but returns just the created type lambda

Same as constrained(tl, EmptyTree), but returns just the created type lambda

Instantiate tl with fresh type variables added to the constraint.

Instantiate tl with fresh type variables added to the constraint.

Create a new TypeVar that represents a dependent method parameter singleton ref

Create a new TypeVar that represents a dependent method parameter singleton ref

def newTypeVar(using Context)(bounds: TypeBounds, name: TypeName, nestingLevel: Int, represents: Type): TypeVar

A fresh type variable added to the current constraint.

A fresh type variable added to the current constraint.

Value parameters:
bounds

The initial bounds of the variable

name

The name of the variable, defaults a fresh DepParamName

nestingLevel

See TypeVar#nestingLevel

represents

If it exists, a ParamRef that this TypeVar represents, to be retrieved using representedParamRef. in the substitution generated by resultTypeApprox If represents exists, it is stored in the result type of the PolyType that backs the TypeVar, to be retrieved by representedParamRef.

def normalize(tp: Type, pt: Type, followIFT: Boolean)(using Context): Type

The normalized form of a type

The normalized form of a type

  • instantiate polymorphic types with fresh type variables in the current constraint
  • skips implicit parameters of methods and functions; if result type depends on implicit parameter, replace with wildcard.
  • converts non-dependent method types to the corresponding function types unless the expected type is an ApplyingProto or IgnoredProto.
  • dereferences parameterless method types
  • dereferences nullary method types provided the corresponding function type is not a subtype of the expected type. Note: We need to take account of the possibility of inserting a () argument list in normalization. Otherwise, a type with a def toString(): String member would not count as a valid solution for ?{toString: String}. This would then lead to an implicit insertion, with a nice explosion of inference search because of course every implicit result has some sort of toString method. The problem is solved by dereferencing nullary method types if the corresponding function type is not compatible with the prototype.

If param was created using newTypeVar(..., represents = X), returns X. This is used in:

If param was created using newTypeVar(..., represents = X), returns X. This is used in:

  • Inferencing#constrainIfDependentParamRef to retrieve the dependent function parameter for which the variable was substituted.
  • ConstraintHandling#LevelAvoidMap#legalVar to retrieve the type variable that was avoided in a previous call to legalVar.
def resultTypeApprox(mt: MethodType, wildcardOnly: Boolean)(using Context): Type

The result type of mt, where all references to parameters of mt are replaced by either wildcards or TypeParamRefs.

The result type of mt, where all references to parameters of mt are replaced by either wildcards or TypeParamRefs.

def shallowSelectionProto(name: Name, tp: Type, typer: Typer)(using Context): TermType

Create a selection proto-type, but only one level deep; treat constructors specially

Create a selection proto-type, but only one level deep; treat constructors specially

final def wildApprox(tp: Type)(using Context): Type

Extensions

Extensions

extension (pt: Type)