File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -3,4 +3,6 @@ package scala.quoted
3
3
import scala .runtime .quoted .Unpickler .Pickled
4
4
5
5
/** An Expr backed by a pickled TASTY tree */
6
- final case class TastyExpr [T ](tasty : Pickled , args : Seq [Any ]) extends Expr [T ] with TastyQuoted
6
+ final case class TastyExpr [T ](tasty : Pickled , args : Seq [Any ]) extends Expr [T ] with TastyQuoted {
7
+ override def toString (): String = s " TastyExpr(<TASTY>, $args) "
8
+ }
Original file line number Diff line number Diff line change @@ -3,4 +3,6 @@ package scala.quoted
3
3
import scala .runtime .quoted .Unpickler .Pickled
4
4
5
5
/** A Type backed by a pickled TASTY tree */
6
- final case class TastyType [T ](tasty : Pickled , args : Seq [Any ]) extends Type [T ] with TastyQuoted
6
+ final case class TastyType [T ](tasty : Pickled , args : Seq [Any ]) extends Type [T ] with TastyQuoted {
7
+ override def toString (): String = s " TastyType(<TASTY>, $args) "
8
+ }
You can’t perform that action at this time.
0 commit comments