aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/Scopes.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-08-24 17:49:48 +0200
committerMartin Odersky <odersky@gmail.com>2014-08-24 17:50:33 +0200
commit3b7cba4666be03991083fe89780120eae9843c52 (patch)
treebe7b8b6320fff2c14d78d81e8ed70a7d89de16e0 /src/dotty/tools/dotc/core/Scopes.scala
parent1f2619bdc4c7b80c3f63fecbe27e47d5f665931d (diff)
downloaddotty-3b7cba4666be03991083fe89780120eae9843c52.tar.gz
dotty-3b7cba4666be03991083fe89780120eae9843c52.tar.bz2
dotty-3b7cba4666be03991083fe89780120eae9843c52.zip
Make type creators work for erased types.
- Some types are different when erased (e.g. prefixes are NoPrefix) - Some types are forbidden when erased. Put in assertions to check that fact. Also, some renaming and doc comments to make creation of TermRefs and TypeRefs clearer.
Diffstat (limited to 'src/dotty/tools/dotc/core/Scopes.scala')
-rw-r--r--src/dotty/tools/dotc/core/Scopes.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/core/Scopes.scala b/src/dotty/tools/dotc/core/Scopes.scala
index 426df83bc..c8252e02e 100644
--- a/src/dotty/tools/dotc/core/Scopes.scala
+++ b/src/dotty/tools/dotc/core/Scopes.scala
@@ -298,7 +298,7 @@ object Scopes {
while (e ne null) {
if (e.sym is Implicit) {
val d = e.sym.denot
- irefs += TermRef.withSig(NoPrefix, e.sym.asTerm.name, d.signature, e.sym.denot)
+ irefs += TermRef.withSigAndDenot(NoPrefix, d.name.asTermName, d.signature, d)
}
e = e.prev
}