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 529822d commit 82ad2ebCopy full SHA for 82ad2eb
scala3doc/src/dotty/dokka/tasty/BasicSupport.scala
@@ -32,7 +32,7 @@ trait BasicSupport:
32
def documentation = sym.docstring.map(parseComment(_, sym.tree))
33
34
def source(using Quotes) =
35
- val path = sym.pos.filter(isValidPos(_)).map(_.sourceFile.jpath).filter(_ != null).map(_.toAbsolutePath).map(_.toString)
+ val path = sym.pos.map(_.sourceFile.jpath).filter(_ != null).map(_.toAbsolutePath).map(_.toString)
36
path.map(TastyDocumentableSource(_, sym.pos.get.startLine))
37
38
def getAnnotations(): List[Annotation] =
0 commit comments