aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/Substituters.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-07-22 19:06:31 +0200
committerMartin Odersky <odersky@gmail.com>2014-07-22 19:06:31 +0200
commitdb2b4223a08fb5caa8b4fb774aa372b581ee7306 (patch)
tree64aba0165e77adf6bcf3b72ab39447b6670fda37 /src/dotty/tools/dotc/core/Substituters.scala
parentababb2ce2675619c997cb4bfa143b454e4076850 (diff)
downloaddotty-db2b4223a08fb5caa8b4fb774aa372b581ee7306.tar.gz
dotty-db2b4223a08fb5caa8b4fb774aa372b581ee7306.tar.bz2
dotty-db2b4223a08fb5caa8b4fb774aa372b581ee7306.zip
Fixed typo
Diffstat (limited to 'src/dotty/tools/dotc/core/Substituters.scala')
-rw-r--r--src/dotty/tools/dotc/core/Substituters.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/core/Substituters.scala b/src/dotty/tools/dotc/core/Substituters.scala
index f5f60e6a5..8beb6995e 100644
--- a/src/dotty/tools/dotc/core/Substituters.scala
+++ b/src/dotty/tools/dotc/core/Substituters.scala
@@ -240,7 +240,7 @@ trait Substituters { this: Context =>
def apply(tp: Type): Type = subst(tp, from, to, this)
}
- final class SubstDealiasMap(from: List[Symbol], to: List[Type]) extends SubstMap(from, to) {
+ final class SubstDealiasMap(from: List[Symbol], to: List[Type]) extends DeepTypeMap {
override def apply(tp: Type): Type = substDealias(tp, from, to, this)
}