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.
2 parents ee1b514 + bb60823 commit b38adeaCopy full SHA for b38adea
compiler/src/dotty/tools/dotc/printing/RefinedPrinter.scala
@@ -796,6 +796,7 @@ class RefinedPrinter(_ctx: Context) extends PlainPrinter(_ctx) {
796
else if (flags.is(Module) && flags.is(Case)) "case object"
797
else if (sym.isClass && flags.is(Case)) "case class"
798
else if (flags is Module) "object"
799
+ else if (sym.isTerm && !flags.is(Param) && flags.is(Implicit) && (sym is Method)) "implicit def"
800
else if (sym.isTerm && !flags.is(Param) && flags.is(Implicit)) "implicit val"
801
else if (sym.isTerm && !flags.is(Param) && flags.is(Erased)) "erased val"
802
else super.keyString(sym)
0 commit comments