File tree 1 file changed +2
-3
lines changed
compiler/src/scala/quoted/runtime/impl/printers
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ object Extractors {
214
214
case ByNameType (underlying) =>
215
215
this += " ByNameType(" += underlying += " )"
216
216
case ParamRef (binder, idx) =>
217
- this += " ParamRef(" += binder += " , " += idx += " )"
217
+ this += " ParamRef(binder, " += idx += " )"
218
218
case ThisType (tp) =>
219
219
this += " ThisType(" += tp += " )"
220
220
case SuperType (thistpe, supertpe) =>
@@ -228,8 +228,7 @@ object Extractors {
228
228
case PolyType (argNames, argBounds, resType) =>
229
229
this += " PolyType(" ++= argNames += " , " ++= argBounds += " , " += resType += " )"
230
230
case TypeLambda (argNames, argBounds, resType) =>
231
- // resType is not printed to avoid cycles
232
- this += " TypeLambda(" ++= argNames += " , " ++= argBounds += " , _)"
231
+ this += " TypeLambda(" ++= argNames += " , " ++= argBounds += " , " += resType += " )"
233
232
case TypeBounds (lo, hi) =>
234
233
this += " TypeBounds(" += lo += " , " += hi += " )"
235
234
case NoPrefix () =>
You can’t perform that action at this time.
0 commit comments