Skip to content

Commit 0875367

Browse files
committed
Look upon my works, ye brave, and behold the kludges
1 parent 60c4c8f commit 0875367

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scala3doc/src/dotty/dokka/tasty/comments/MemberLookup.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ trait MemberLookup {
5959
import dotty.tools.dotc
6060
given dotc.core.Contexts.Context = rootContext.asInstanceOf
6161
val sym = rsym.asInstanceOf[dotc.core.Symbols.Symbol]
62-
val members = sym.info.decls.iterator.filterNot(_.isAbsent(false))
62+
val members = sym.info.decls.iterator.filter(_.isCompleted)
6363
// println(s"members of ${sym.show} : ${members.map(_.show).mkString(", ")}")
6464
members.asInstanceOf[Iterator[Symbol]]
6565
}

0 commit comments

Comments
 (0)