aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/SymDenotations.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2013-03-04 11:53:46 +0100
committerMartin Odersky <odersky@gmail.com>2013-03-04 11:53:46 +0100
commit5af6ff8286614998e58f0bc5ef2fe4135d993209 (patch)
tree05ad16fb264d918b23210ca9b34d8ee2a875c5bf /src/dotty/tools/dotc/core/SymDenotations.scala
parenta462570e3a7c5188ae5e6e4e76a16522bee10f1c (diff)
downloaddotty-5af6ff8286614998e58f0bc5ef2fe4135d993209.tar.gz
dotty-5af6ff8286614998e58f0bc5ef2fe4135d993209.tar.bz2
dotty-5af6ff8286614998e58f0bc5ef2fe4135d993209.zip
Renamed RefinedType#name, #info…
… to refinedName, refinedInfo. Also some other polishings in Types.
Diffstat (limited to 'src/dotty/tools/dotc/core/SymDenotations.scala')
-rw-r--r--src/dotty/tools/dotc/core/SymDenotations.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/core/SymDenotations.scala b/src/dotty/tools/dotc/core/SymDenotations.scala
index 0fb099bdb..260cf8bb2 100644
--- a/src/dotty/tools/dotc/core/SymDenotations.scala
+++ b/src/dotty/tools/dotc/core/SymDenotations.scala
@@ -826,7 +826,7 @@ object SymDenotations {
def memberNames(keepOnly: NameFilter)(implicit ctx: Context): Set[Name] = {
def computeMemberNames: Set[Name] = {
- val inheritedNames = (classInfo.classParents flatMap (_.memberNames(thisType, keepOnly))).toSet
+ val inheritedNames = (classInfo.classParents flatMap (_.memberNames(keepOnly, thisType))).toSet
val ownNames = info.decls.iterator map (_.name)
val candidates = inheritedNames ++ ownNames
candidates filter (keepOnly(thisType, _))