aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/Scopes.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2013-01-17 09:54:05 +0100
committerMartin Odersky <odersky@gmail.com>2013-01-17 09:54:05 +0100
commitb43de54be5c4d91762d8dc6a4ce7b612935639f9 (patch)
tree50b1e5f8593748d429f2505676a8854fd7a62c42 /src/dotty/tools/dotc/core/Scopes.scala
parentdc2d3c7a138a30e74836928e0ad8872cdf8a00ab (diff)
downloaddotty-b43de54be5c4d91762d8dc6a4ce7b612935639f9.tar.gz
dotty-b43de54be5c4d91762d8dc6a4ce7b612935639f9.tar.bz2
dotty-b43de54be5c4d91762d8dc6a4ce7b612935639f9.zip
Completed period-tracking in named types. Made Denotation a subtype of symblic referenced and generalized denotation versioning to referenced versioning.
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 e3d3c29ce..7a827ccf1 100644
--- a/src/dotty/tools/dotc/core/Scopes.scala
+++ b/src/dotty/tools/dotc/core/Scopes.scala
@@ -199,7 +199,7 @@ object Scopes {
var syms: RefSet = NoRef
var e = lookupEntry(name)
while (e != null) {
- syms = syms union e.sym.thisRef
+ syms = syms union e.sym.deref
e = lookupNextEntry(e)
}
syms