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 96cd350 commit 80b866fCopy full SHA for 80b866f
src/dotty/tools/dotc/printing/RefinedPrinter.scala
@@ -486,7 +486,7 @@ class RefinedPrinter(_ctx: Context) extends PlainPrinter(_ctx) {
486
override def toTextFlags(sym: Symbol) = {
487
var flags = sym.flagsUNSAFE
488
if (flags is TypeParam) flags = flags &~ Protected
489
- Text(flags.flagStrings.filterNot(_.startsWith("<")) map stringToText, " ")
+ Text((flags & SourceModifierFlags).flagStrings map stringToText, " ")
490
}
491
492
override def toText(denot: Denotation): Text = denot match {
0 commit comments