aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/Scopes.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2013-01-17 10:23:51 +0100
committerMartin Odersky <odersky@gmail.com>2013-01-17 10:23:51 +0100
commit4ad6538f7d67a42747d578feaaee633c390c4cbc (patch)
treec4ca95857fe1d6fb0904f4b986deba2f5ba9def2 /src/dotty/tools/dotc/core/Scopes.scala
parentb43de54be5c4d91762d8dc6a4ce7b612935639f9 (diff)
downloaddotty-4ad6538f7d67a42747d578feaaee633c390c4cbc.tar.gz
dotty-4ad6538f7d67a42747d578feaaee633c390c4cbc.tar.bz2
dotty-4ad6538f7d67a42747d578feaaee633c390c4cbc.zip
Renamed "Reference" to "Referenced".
Diffstat (limited to 'src/dotty/tools/dotc/core/Scopes.scala')
-rw-r--r--src/dotty/tools/dotc/core/Scopes.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dotty/tools/dotc/core/Scopes.scala b/src/dotty/tools/dotc/core/Scopes.scala
index 7a827ccf1..f9fa69c1c 100644
--- a/src/dotty/tools/dotc/core/Scopes.scala
+++ b/src/dotty/tools/dotc/core/Scopes.scala
@@ -11,7 +11,7 @@ import Names._
import Periods._
import Decorators._
import Contexts._
-import References._
+import Referenceds._
object Scopes {
@@ -195,8 +195,8 @@ object Scopes {
}
/** The reference set of all the symbols with given name in this scope */
- def refsNamed(name: Name)(implicit ctx: Context): RefSet = {
- var syms: RefSet = NoRef
+ def refsNamed(name: Name)(implicit ctx: Context): ReferencedSet = {
+ var syms: ReferencedSet = NoRefd
var e = lookupEntry(name)
while (e != null) {
syms = syms union e.sym.deref