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 d74496e commit 9b1a32eCopy full SHA for 9b1a32e
compiler/src/dotty/tools/dotc/core/tasty/TastyPrinter.scala
@@ -202,7 +202,8 @@ class TastyPrinter(bytes: Array[Byte]) {
202
sb.append(s"\n source paths:\n")
203
val sortedPath = sources.toSeq.sortBy(_._1.index)
204
for ((addr, nameRef) <- sortedPath) {
205
- sb.append(treeStr("%6d: ".format(addr.index)))
+ sb.append(treeStr("%6d".format(addr.index)))
206
+ sb.append(": ")
207
sb.append(nameStr(s"${nameRef.index} [${tastyName(nameRef)}]"))
208
sb.append("\n")
209
}
0 commit comments