@@ -15,37 +15,36 @@ package quoted {
1515 def show (implicit toolbox : Toolbox ): String = toolbox.show(tpe.asInstanceOf [Type [Any ]])
1616 }
1717
18- implicit def UnitTag : Type [Unit ] = new TaggedType [Unit ]
19- implicit def BooleanTag : Type [Boolean ] = new TaggedType [Boolean ]
20- implicit def ByteTag : Type [Byte ] = new TaggedType [Byte ]
21- implicit def CharTag : Type [Char ] = new TaggedType [Char ]
22- implicit def ShortTag : Type [Short ] = new TaggedType [Short ]
23- implicit def IntTag : Type [Int ] = new TaggedType [Int ]
24- implicit def LongTag : Type [Long ] = new TaggedType [Long ]
25- implicit def FloatTag : Type [Float ] = new TaggedType [Float ]
26- implicit def DoubleTag : Type [Double ] = new TaggedType [Double ]
18+ implicit def UnitTag : Type [Unit ] = new scala.internal.quoted. TaggedType [Unit ]
19+ implicit def BooleanTag : Type [Boolean ] = new scala.internal.quoted. TaggedType [Boolean ]
20+ implicit def ByteTag : Type [Byte ] = new scala.internal.quoted. TaggedType [Byte ]
21+ implicit def CharTag : Type [Char ] = new scala.internal.quoted. TaggedType [Char ]
22+ implicit def ShortTag : Type [Short ] = new scala.internal.quoted. TaggedType [Short ]
23+ implicit def IntTag : Type [Int ] = new scala.internal.quoted. TaggedType [Int ]
24+ implicit def LongTag : Type [Long ] = new scala.internal.quoted. TaggedType [Long ]
25+ implicit def FloatTag : Type [Float ] = new scala.internal.quoted. TaggedType [Float ]
26+ implicit def DoubleTag : Type [Double ] = new scala.internal.quoted. TaggedType [Double ]
2727 }
2828
2929}
3030
3131package internal {
3232 package quoted {
33- import scala .quote .Type
3433 import scala .reflect .ClassTag
3534 import scala .runtime .quoted .Unpickler .Pickled
3635
3736 /** A Type backed by a pickled TASTY tree */
38- final class TastyType [T ](val tasty : Pickled , val args : Seq [Any ]) extends Type [T ] {
37+ final class TastyType [T ](val tasty : Pickled , val args : Seq [Any ]) extends scala.quoted. Type [T ] {
3938 override def toString (): String = s " Type(<pickled tasty>) "
4039 }
4140
4241 /** An Type backed by a value */
43- final class TaggedType [T ](implicit val ct : ClassTag [T ]) extends Type [T ] {
42+ final class TaggedType [T ](implicit val ct : ClassTag [T ]) extends scala.quoted. Type [T ] {
4443 override def toString : String = s " Type( $ct) "
4544 }
4645
4746 /** An Type backed by a tree */
48- final class TreeType [Tree ](val typeTree : Tree ) extends quoted.Type [Any ] {
47+ final class TreeType [Tree ](val typeTree : Tree ) extends scala. quoted.Type [Any ] {
4948 override def toString : String = s " Type(<tasty tree>) "
5049 }
5150
0 commit comments