Skip to content

Commit 23b7fb0

Browse files
committed
More review changes
1 parent d0b7b85 commit 23b7fb0

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

scaladoc/src/dotty/tools/scaladoc/tasty/SyntheticSupport.scala

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,7 @@ object SyntheticsSupport:
7474
import dotty.tools.dotc
7575
given ctx: dotc.core.Contexts.Context = quotes.asInstanceOf[scala.quoted.runtime.impl.QuotesImpl].ctx
7676
val sym = rsym.asInstanceOf[dotc.core.Symbols.Symbol]
77-
// `lookupPrefix` is private in `QuotesImpl#SymbolMethods`
78-
val lookupPrefix = sym.namedType
79-
lookupPrefix.allMembers.iterator.map(_.symbol)
77+
sym.namedType.allMembers.iterator.map(_.symbol)
8078
.collect {
8179
case sym if
8280
(!sym.is(dotc.core.Flags.ModuleVal) || sym.is(dotc.core.Flags.Given)) &&

0 commit comments

Comments
 (0)