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 f4eff10 commit 8b941d6Copy full SHA for 8b941d6
compiler/src/dotty/tools/dotc/printing/RefinedPrinter.scala
@@ -165,7 +165,7 @@ class RefinedPrinter(_ctx: Context) extends PlainPrinter(_ctx) {
165
val leftArg = if (isRightAssoc && isInfixType(l)) "(" ~ argText(l) ~ ")" else argText(l)
166
val rightArg = if (!isRightAssoc && isInfixType(r)) "(" ~ argText(r) ~ ")" else argText(r)
167
168
- leftArg ~ " " ~ toTextLocal(op) ~ " " ~ rightArg
+ leftArg ~ " " ~ simpleNameString(op.classSymbol) ~ " " ~ rightArg
169
}
170
171
homogenize(tp) match {
0 commit comments