Skip to content

Commit e8074c7

Browse files
committed
Fix printing Super extractor
1 parent 0c5d7f8 commit e8074c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/src/scala/tasty/reflect/Printers.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ trait Printers
181181
case Term.This(qual) =>
182182
this += "Term.This(" += qual += ")"
183183
case Term.Super(qual, mix) =>
184-
this += "Term.TypeApply(" += qual += ", " += mix += ")"
184+
this += "Term.Super(" += qual += ", " += mix += ")"
185185
case Term.Apply(fun, args) =>
186186
this += "Term.Apply(" += fun += ", " ++= args += ")"
187187
case Term.TypeApply(fun, args) =>

0 commit comments

Comments
 (0)