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 83e7b23 commit 8c6339bCopy full SHA for 8c6339b
src/dotty/tools/dotc/core/pickling/TastyPrinter.scala
@@ -24,6 +24,7 @@ class TastyPrinter(bytes: Array[Byte])(implicit ctx: Context) {
24
case ModuleClass(original) => nameRefToString(original) + "/MODULECLASS"
25
case SuperAccessor(accessed) => nameRefToString(accessed) + "/SUPERACCESSOR"
26
case DefaultGetter(meth, num) => nameRefToString(meth) + "/DEFAULTGETTER" + num
27
+ case Shadowed(original) => nameRefToString(original) + "/SHADOWED"
28
}
29
30
def nameRefToString(ref: NameRef): String = nameToString(tastyName(ref))
0 commit comments