aboutsummaryrefslogtreecommitdiff
path: root/compiler/src/dotty/tools/dotc/typer/Applications.scala
diff options
context:
space:
mode:
authorodersky <odersky@gmail.com>2017-02-23 13:33:48 +0100
committerGitHub <noreply@github.com>2017-02-23 13:33:48 +0100
commit2699715684e9ea474001e9fc85bb3c7d25ed1ca5 (patch)
treec0218ed915ac88dade3370ad0212c58d13c656b2 /compiler/src/dotty/tools/dotc/typer/Applications.scala
parenta0f47a00131935d85f957a80d0c4472eaa7b5baa (diff)
parent47b6c6b204ca6b577e18fd82ca8af0e5710771b1 (diff)
downloaddotty-2699715684e9ea474001e9fc85bb3c7d25ed1ca5.tar.gz
dotty-2699715684e9ea474001e9fc85bb3c7d25ed1ca5.tar.bz2
dotty-2699715684e9ea474001e9fc85bb3c7d25ed1ca5.zip
Merge pull request #2015 from dotty-staging/add-pf-overloading
Add overloading support for case-closures
Diffstat (limited to 'compiler/src/dotty/tools/dotc/typer/Applications.scala')
-rw-r--r--compiler/src/dotty/tools/dotc/typer/Applications.scala54
1 files changed, 27 insertions, 27 deletions
diff --git a/compiler/src/dotty/tools/dotc/typer/Applications.scala b/compiler/src/dotty/tools/dotc/typer/Applications.scala
index 5e092871d..de017961a 100644
--- a/compiler/src/dotty/tools/dotc/typer/Applications.scala
+++ b/compiler/src/dotty/tools/dotc/typer/Applications.scala
@@ -1227,6 +1227,8 @@ trait Applications extends Compatibility { self: Typer with Dynamic =>
def typeShape(tree: untpd.Tree): Type = tree match {
case untpd.Function(args, body) =>
defn.FunctionOf(args map Function.const(defn.AnyType), typeShape(body))
+ case Match(EmptyTree, _) =>
+ defn.PartialFunctionType.appliedTo(defn.AnyType :: defn.NothingType :: Nil)
case _ =>
defn.NothingType
}
@@ -1271,7 +1273,7 @@ trait Applications extends Compatibility { self: Typer with Dynamic =>
alts filter (alt => sizeFits(alt, alt.widen))
def narrowByShapes(alts: List[TermRef]): List[TermRef] = {
- if (normArgs exists (_.isInstanceOf[untpd.Function]))
+ if (normArgs exists untpd.isFunctionWithUnknownParamType)
if (hasNamedArg(args)) narrowByTrees(alts, args map treeShape, resultType)
else narrowByTypes(alts, normArgs map typeShape, resultType)
else
@@ -1351,33 +1353,31 @@ trait Applications extends Compatibility { self: Typer with Dynamic =>
case ValDef(_, tpt, _) => tpt.isEmpty
case _ => false
}
- arg match {
- case arg: untpd.Function if arg.args.exists(isUnknownParamType) =>
- def isUniform[T](xs: List[T])(p: (T, T) => Boolean) = xs.forall(p(_, xs.head))
- val formalsForArg: List[Type] = altFormals.map(_.head)
- // For alternatives alt_1, ..., alt_n, test whether formal types for current argument are of the form
- // (p_1_1, ..., p_m_1) => r_1
- // ...
- // (p_1_n, ..., p_m_n) => r_n
- val decomposedFormalsForArg: List[Option[(List[Type], Type, Boolean)]] =
- formalsForArg.map(defn.FunctionOf.unapply)
- if (decomposedFormalsForArg.forall(_.isDefined)) {
- val formalParamTypessForArg: List[List[Type]] =
- decomposedFormalsForArg.map(_.get._1)
- if (isUniform(formalParamTypessForArg)((x, y) => x.length == y.length)) {
- val commonParamTypes = formalParamTypessForArg.transpose.map(ps =>
- // Given definitions above, for i = 1,...,m,
- // ps(i) = List(p_i_1, ..., p_i_n) -- i.e. a column
- // If all p_i_k's are the same, assume the type as formal parameter
- // type of the i'th parameter of the closure.
- if (isUniform(ps)(ctx.typeComparer.isSameTypeWhenFrozen(_, _))) ps.head
- else WildcardType)
- val commonFormal = defn.FunctionOf(commonParamTypes, WildcardType)
- overload.println(i"pretype arg $arg with expected type $commonFormal")
- pt.typedArg(arg, commonFormal)
- }
+ if (untpd.isFunctionWithUnknownParamType(arg)) {
+ def isUniform[T](xs: List[T])(p: (T, T) => Boolean) = xs.forall(p(_, xs.head))
+ val formalsForArg: List[Type] = altFormals.map(_.head)
+ // For alternatives alt_1, ..., alt_n, test whether formal types for current argument are of the form
+ // (p_1_1, ..., p_m_1) => r_1
+ // ...
+ // (p_1_n, ..., p_m_n) => r_n
+ val decomposedFormalsForArg: List[Option[(List[Type], Type, Boolean)]] =
+ formalsForArg.map(defn.FunctionOf.unapply)
+ if (decomposedFormalsForArg.forall(_.isDefined)) {
+ val formalParamTypessForArg: List[List[Type]] =
+ decomposedFormalsForArg.map(_.get._1)
+ if (isUniform(formalParamTypessForArg)((x, y) => x.length == y.length)) {
+ val commonParamTypes = formalParamTypessForArg.transpose.map(ps =>
+ // Given definitions above, for i = 1,...,m,
+ // ps(i) = List(p_i_1, ..., p_i_n) -- i.e. a column
+ // If all p_i_k's are the same, assume the type as formal parameter
+ // type of the i'th parameter of the closure.
+ if (isUniform(ps)(ctx.typeComparer.isSameTypeWhenFrozen(_, _))) ps.head
+ else WildcardType)
+ val commonFormal = defn.FunctionOf(commonParamTypes, WildcardType)
+ overload.println(i"pretype arg $arg with expected type $commonFormal")
+ pt.typedArg(arg, commonFormal)
}
- case _ =>
+ }
}
recur(altFormals.map(_.tail), args1)
case _ =>