File tree 3 files changed +3
-3
lines changed
compiler/src/dotty/tools/dotc
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -658,7 +658,7 @@ class Definitions {
658
658
def QuotedLiftableModuleClass (implicit ctx : Context ) = QuotedLiftableModule .asClass
659
659
660
660
def QuotedLiftable_BooleanIsLiftable = QuotedLiftableModule .requiredMethodRef(" BooleanIsLiftable" )
661
- def QuotedLiftable_ByteLiftable = QuotedLiftableModule .requiredMethodRef(" ByteLiftable " )
661
+ def QuotedLiftable_ByteIsLiftable = QuotedLiftableModule .requiredMethodRef(" ByteIsLiftable " )
662
662
def QuotedLiftable_CharIsLiftable = QuotedLiftableModule .requiredMethodRef(" CharIsLiftable" )
663
663
def QuotedLiftable_ShortIsLiftable = QuotedLiftableModule .requiredMethodRef(" ShortIsLiftable" )
664
664
def QuotedLiftable_IntIsLiftable = QuotedLiftableModule .requiredMethodRef(" IntIsLiftable" )
Original file line number Diff line number Diff line change @@ -638,7 +638,7 @@ class ReifyQuotes extends MacroTransformWithImplicits with InfoTransformer {
638
638
639
639
val lifter =
640
640
if (tpSym eq defn.BooleanClass ) defn.QuotedLiftable_BooleanIsLiftable
641
- else if (tpSym eq defn.ByteClass ) defn.QuotedLiftable_ByteLiftable
641
+ else if (tpSym eq defn.ByteClass ) defn.QuotedLiftable_ByteIsLiftable
642
642
else if (tpSym eq defn.CharClass ) defn.QuotedLiftable_CharIsLiftable
643
643
else if (tpSym eq defn.ShortClass ) defn.QuotedLiftable_ShortIsLiftable
644
644
else if (tpSym eq defn.IntClass ) defn.QuotedLiftable_IntIsLiftable
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ abstract class Liftable[T] {
16
16
*/
17
17
object Liftable {
18
18
implicit def BooleanIsLiftable : Liftable [Boolean ] = (x : Boolean ) => liftedExpr(x)
19
- implicit def ByteLiftable : Liftable [Byte ] = (x : Byte ) => liftedExpr(x)
19
+ implicit def ByteIsLiftable : Liftable [Byte ] = (x : Byte ) => liftedExpr(x)
20
20
implicit def CharIsLiftable : Liftable [Char ] = (x : Char ) => liftedExpr(x)
21
21
implicit def ShortIsLiftable : Liftable [Short ] = (x : Short ) => liftedExpr(x)
22
22
implicit def IntIsLiftable : Liftable [Int ] = (x : Int ) => liftedExpr(x)
You can’t perform that action at this time.
0 commit comments