We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6484d5 commit b5f183eCopy full SHA for b5f183e
scala3doc/src/dotty/dokka/tasty/TastyParser.scala
@@ -101,11 +101,11 @@ trait DokkaBaseTastyInspector:
101
102
private val topLevels = Seq.newBuilder[Documentable]
103
104
- def processCompilationUnit(using Quotes)(root: qctx.reflect.Tree): Unit =
105
- val parser = new TastyParser(qctx, this, config)
+ def processCompilationUnit(using q: Quotes)(root: q.reflect.Tree): Unit =
+ val parser = new TastyParser(q, this, config)
106
107
def driFor(link: String): Option[DRI] =
108
- val symOps = new SymOps[qctx.type](qctx)
+ val symOps = new SymOps[q.type](q)
109
import symOps._
110
Try(QueryParser(link).readQuery()).toOption.flatMap(q =>
111
MemberLookup.lookupOpt(q, None).map{ case (sym, _) => sym.dri}
0 commit comments