We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60c4c8f commit 0875367Copy full SHA for 0875367
scala3doc/src/dotty/dokka/tasty/comments/MemberLookup.scala
@@ -59,7 +59,7 @@ trait MemberLookup {
59
import dotty.tools.dotc
60
given dotc.core.Contexts.Context = rootContext.asInstanceOf
61
val sym = rsym.asInstanceOf[dotc.core.Symbols.Symbol]
62
- val members = sym.info.decls.iterator.filterNot(_.isAbsent(false))
+ val members = sym.info.decls.iterator.filter(_.isCompleted)
63
// println(s"members of ${sym.show} : ${members.map(_.show).mkString(", ")}")
64
members.asInstanceOf[Iterator[Symbol]]
65
}
0 commit comments