summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/typechecker/Namers.scala
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@epfl.ch>2010-09-22 20:38:55 +0000
committerAdriaan Moors <adriaan.moors@epfl.ch>2010-09-22 20:38:55 +0000
commit3e70e56427e9b4eed821863e233bc71a907464b5 (patch)
tree16894ed2e2e40ab0225981b0aa7d5c2c421bb2df /src/compiler/scala/tools/nsc/typechecker/Namers.scala
parentc8dec9898113a299ceb6201b84a451fc22813ca9 (diff)
downloadscala-3e70e56427e9b4eed821863e233bc71a907464b5.tar.gz
scala-3e70e56427e9b4eed821863e233bc71a907464b5.tar.bz2
scala-3e70e56427e9b4eed821863e233bc71a907464b5.zip
removed deskolemize hack for tcpoly.
initialize the tree's symbol in typedTypeDef to make sure its info is loaded. review by odersky
Diffstat (limited to 'src/compiler/scala/tools/nsc/typechecker/Namers.scala')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/Namers.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/Namers.scala b/src/compiler/scala/tools/nsc/typechecker/Namers.scala
index 262a760958..533793dbc4 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Namers.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Namers.scala
@@ -1218,8 +1218,8 @@ trait Namers { self: Analyzer =>
ErrorType
}
result match {
- case PolyType(tparams, restpe)
- if (!tparams.isEmpty && tparams.head.owner.isTerm ||
+ case PolyType(tparams, restpe) if (tparams.nonEmpty && tparams.head.owner.isTerm) =>
+ // ||
// Adriaan: The added condition below is quite a hack. It seems that HK type parameters is relying
// on a pass that forces all infos in the type to get everything right.
// The problem is that the same pass causes cyclic reference errors in
@@ -1230,7 +1230,7 @@ trait Namers { self: Analyzer =>
// Maybe it's not a hack, then we need to document it better. But ideally, we should find
// a way to deal with HK types that's not dependent on accidental side
// effects like this.
- tparams.exists(!_.typeParams.isEmpty)) =>
+ // tparams.exists(!_.typeParams.isEmpty)) =>
new DeSkolemizeMap(tparams) mapOver result
case _ =>
// println("not skolemizing "+result+" in "+context.owner)