aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/TypeApplications.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2015-07-17 12:32:57 +0200
committerMartin Odersky <odersky@gmail.com>2015-09-18 18:07:27 +0200
commite2aa258c3781fa9ee62fa47dd3b1206b09588c17 (patch)
tree70ebd91374c44c4768b648e751d700f8ca36d56d /src/dotty/tools/dotc/core/TypeApplications.scala
parenteb0b2886f642ec00b2e7f2db569c25f0e1e34757 (diff)
downloaddotty-e2aa258c3781fa9ee62fa47dd3b1206b09588c17.tar.gz
dotty-e2aa258c3781fa9ee62fa47dd3b1206b09588c17.tar.bz2
dotty-e2aa258c3781fa9ee62fa47dd3b1206b09588c17.zip
Drop parameterizeWith
parameterizeWith picked between simple hk types and lambda abstraction. No longer needed because now we always lambda abstract.
Diffstat (limited to 'src/dotty/tools/dotc/core/TypeApplications.scala')
-rw-r--r--src/dotty/tools/dotc/core/TypeApplications.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dotty/tools/dotc/core/TypeApplications.scala b/src/dotty/tools/dotc/core/TypeApplications.scala
index ca5d93a02..893bedeba 100644
--- a/src/dotty/tools/dotc/core/TypeApplications.scala
+++ b/src/dotty/tools/dotc/core/TypeApplications.scala
@@ -437,7 +437,7 @@ class TypeApplications(val self: Type) extends AnyVal {
}
recur(self)
}
-
+/*
/** Given a type alias
*
* type T[boundSyms] = p.C[targs]
@@ -500,7 +500,7 @@ class TypeApplications(val self: Type) extends AnyVal {
if (cls.isClass) matchParams(boundSyms, cls.typeParams, argInfos, Map())
else LambdaAbstract(boundSyms)
}
-
+*/
/** The typed lambda abstraction of this type `T` relative to `boundSyms`.
* This is:
*