We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f3af47 commit f868929Copy full SHA for f868929
compiler/src/dotty/tools/dotc/core/tasty/TastyPrinter.scala
@@ -258,10 +258,10 @@ class TastyPrinter(bytes: Array[Byte]) {
258
import reader.*
259
sb.append(s" ${reader.endAddr.index - reader.currentAddr.index}")
260
val attributes = new AttributeUnpickler(reader).attributes
261
- sb.append(s" attributes bytes:\n")
+ sb.append(s"Attributes (${reader.endAddr.index - reader.startAddr.index} bytes, starting from $base):\n")
262
263
for tag <- attributes.booleanTags do
264
- sb.append(" ").append(attributeTagToString(tag)).append("\n")
+ sb.append(" ").append(attributeTagToString(tag)).append("\n")
265
266
sb.result
267
}
0 commit comments