We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b01260 commit eb54aefCopy full SHA for eb54aef
compiler/src/dotty/tools/dotc/transform/Pickler.scala
@@ -78,14 +78,14 @@ class Pickler extends Phase {
78
finally tastyOutput.close()
79
}
80
81
- def rawBytes = // not needed right now, but useful to print raw format.
82
- pickled.iterator.grouped(10).toList.zipWithIndex.map {
83
- case (row, i) => s"${i}0: ${row.mkString(" ")}"
84
- }
+// def rawBytes = // not needed right now, but useful to print raw format.
+// pickled.iterator.grouped(10).toList.zipWithIndex.map {
+// case (row, i) => s"${i}0: ${row.mkString(" ")}"
+// }
85
// println(i"rawBytes = \n$rawBytes%\n%") // DEBUG
86
if (pickling ne noPrinter) {
87
println(i"**** pickled info of $cls")
88
- new TastyPrinter(pickler.assembleParts()).printContents()
+ new TastyPrinter(pickled).printContents()
89
90
91
0 commit comments