aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/SymDenotations.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-06-30 11:12:33 +0200
committerMartin Odersky <odersky@gmail.com>2016-07-11 13:35:07 +0200
commitb6a8bc77fe3af4f6f722fdbaed8a0f7c8c6774ac (patch)
tree9a5e8fd49aae145e7b74b58692319064f71be0a3 /src/dotty/tools/dotc/core/SymDenotations.scala
parent30e15aba1226c940493c9fecd68467d7823f2c3d (diff)
downloaddotty-b6a8bc77fe3af4f6f722fdbaed8a0f7c8c6774ac.tar.gz
dotty-b6a8bc77fe3af4f6f722fdbaed8a0f7c8c6774ac.tar.bz2
dotty-b6a8bc77fe3af4f6f722fdbaed8a0f7c8c6774ac.zip
Revert complications in asMemberOf
We needed fairly specific code to make the refinement based hk encoding work without cyclic references. With the new encoding these complications are no longer needed.
Diffstat (limited to 'src/dotty/tools/dotc/core/SymDenotations.scala')
-rw-r--r--src/dotty/tools/dotc/core/SymDenotations.scala5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/dotty/tools/dotc/core/SymDenotations.scala b/src/dotty/tools/dotc/core/SymDenotations.scala
index 54884a24c..dbde4d6f2 100644
--- a/src/dotty/tools/dotc/core/SymDenotations.scala
+++ b/src/dotty/tools/dotc/core/SymDenotations.scala
@@ -92,11 +92,6 @@ trait SymDenotations { this: Context =>
explain("denotation is not a SymDenotation")
}
}
-
- /** An anonymous type denotation with an info `>: Nothing <: Any`. Used to
- * avoid stackoverflows when computing members of TypeRefs
- */
- lazy val anyTypeDenot = new JointRefDenotation(NoSymbol, TypeBounds.empty, Period.allInRun(ctx.runId))
}
object SymDenotations {