File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/dotty/tools/dotc/printing Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -223,15 +223,15 @@ class PlainPrinter(_ctx: Context) extends Printer {
223
223
case SuperType (thistpe : SingletonType , _) =>
224
224
toTextRef(thistpe).map(_.replaceAll(""" \bthis$""" , " super" ))
225
225
case SuperType (thistpe, _) =>
226
- " Super(" ~ toTextLocal (thistpe) ~ " )"
226
+ " Super(" ~ toTextGlobal (thistpe) ~ " )"
227
227
case tp @ ConstantType (value) =>
228
228
toText(value)
229
229
case MethodParam (mt, idx) =>
230
230
nameString(mt.paramNames(idx))
231
231
case tp : RefinedThis =>
232
232
s " ${nameString(tp.binder.typeSymbol)}{...}.this "
233
233
case tp : SkolemType =>
234
- " <skolem> " // !!! todo refine with unique identifier.
234
+ " <unknown instance of type " ~ toTextGlobal(tp.info) ~ " > "
235
235
}
236
236
}
237
237
You can’t perform that action at this time.
0 commit comments