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 ee4af35 commit 1816a19Copy full SHA for 1816a19
compiler/src/dotty/tools/dotc/interactive/Interactive.scala
@@ -89,7 +89,7 @@ object Interactive {
89
val boundaryCtx = ctx.withOwner(boundary)
90
try
91
prefix.memberDenots(completionsFilter, (name, buf) =>
92
- buf ++= prefix.member(name).altsWith(_.symbol.isAccessibleFrom(prefix)(boundaryCtx))
+ buf ++= prefix.member(name).altsWith(d => !d.isAbsent && d.symbol.isAccessibleFrom(prefix)(boundaryCtx))
93
).map(_.symbol).toList
94
catch {
95
case ex: TypeError => Nil
0 commit comments