@@ -32,7 +32,7 @@ sealed trait Tuple extends Any {
3232 }
3333
3434 inline def stagedToArray : Array [Object ] =
35- $ { StagedTuple .toArrayStaged(' { this } , constValueOpt[BoundedSize [this .type ]]) }
35+ $ { StagedTuple .toArrayStaged(' this , constValueOpt[BoundedSize [this .type ]]) }
3636
3737 inline def *: [H ] (x : H ): H *: this .type =
3838 if (stageIt) stagedCons[H ](x)
@@ -60,7 +60,7 @@ sealed trait Tuple extends Any {
6060 }
6161
6262 inline def stagedCons [H ] (x : H ): H *: this .type =
63- $ { StagedTuple .stagedCons(' { this } , ' {x} , constValueOpt[BoundedSize [this .type ]]) }
63+ $ { StagedTuple .stagedCons(' this , ' x , constValueOpt[BoundedSize [this .type ]]) }
6464
6565 inline def ++ (that : Tuple ): Concat [this .type , that.type ] =
6666 if (stageIt) stagedConcat(that)
@@ -104,8 +104,8 @@ sealed trait Tuple extends Any {
104104 }
105105
106106 inline def stagedConcat (that : Tuple ): Concat [this .type , that.type ] =
107- $ { StagedTuple .stagedConcat(' { this } , constValueOpt[BoundedSize [this .type ]],
108- ' { that} , constValueOpt[BoundedSize [that.type ]]) }
107+ $ { StagedTuple .stagedConcat(' this , constValueOpt[BoundedSize [this .type ]],
108+ ' that , constValueOpt[BoundedSize [that.type ]]) }
109109
110110 inline def genericConcat [T <: Tuple ](xs : Tuple , ys : Tuple ): Tuple =
111111 fromArray[T ](xs.toArray ++ ys.toArray)
@@ -121,7 +121,7 @@ sealed trait Tuple extends Any {
121121 }
122122
123123 inline def stagedSize : Size [this .type ] =
124- $ { StagedTuple .sizeStaged[Size [this .type ]](' { this } , constValueOpt[BoundedSize [this .type ]]) }
124+ $ { StagedTuple .sizeStaged[Size [this .type ]](' this , constValueOpt[BoundedSize [this .type ]]) }
125125}
126126
127127object Tuple {
@@ -217,7 +217,7 @@ object Tuple {
217217 }
218218
219219 inline def stagedFromArray [T <: Tuple ](xs : Array [Object ]): T =
220- $ { StagedTuple .fromArrayStaged[T ](' {xs} , constValueOpt[BoundedSize [this .type ]]) }
220+ $ { StagedTuple .fromArrayStaged[T ](' xs , constValueOpt[BoundedSize [this .type ]]) }
221221
222222 def dynamicFromArray [T <: Tuple ](xs : Array [Object ]): T = xs.length match {
223223 case 0 => ().asInstanceOf [T ]
@@ -340,7 +340,7 @@ sealed trait NonEmptyTuple extends Tuple {
340340 }
341341
342342 inline def stagedHead : Head [this .type ] =
343- $ { StagedTuple .headStaged[this .type ](' { this } , constValueOpt[BoundedSize [this .type ]]) }
343+ $ { StagedTuple .headStaged[this .type ](' this , constValueOpt[BoundedSize [this .type ]]) }
344344
345345 inline def tail : Tail [this .type ] =
346346 if (stageIt) stagedTail
@@ -369,7 +369,7 @@ sealed trait NonEmptyTuple extends Tuple {
369369 }
370370
371371 inline def stagedTail : Tail [this .type ] =
372- $ { StagedTuple .tailStaged[this .type ](' { this } , constValueOpt[BoundedSize [this .type ]]) }
372+ $ { StagedTuple .tailStaged[this .type ](' this , constValueOpt[BoundedSize [this .type ]]) }
373373
374374 inline def fallbackApply (n : Int ) =
375375 inline constValueOpt[n.type ] match {
@@ -430,8 +430,8 @@ sealed trait NonEmptyTuple extends Tuple {
430430
431431 inline def stagedApply (n : Int ): Elem [this .type , n.type ] =
432432 $ { StagedTuple .applyStaged[this .type , n.type ](
433- ' { this } , constValueOpt[Size [this .type ]],
434- ' {n} , constValueOpt[n.type ]) }
433+ ' this , constValueOpt[Size [this .type ]],
434+ ' n , constValueOpt[n.type ]) }
435435}
436436
437437object NonEmptyTuple {
0 commit comments