@@ -65,9 +65,9 @@ import dotty.tools.dotc.util.SourcePosition
6565 * For macro definitions we assume that we have a single ~ directly as the RHS.
6666 * The Splicer is used to check that the RHS will be interpretable (with the `Splicer`) once inlined.
6767 */
68- class ReifyQuotes extends MacroTransformWithImplicits {
68+ class Staging extends MacroTransformWithImplicits {
6969 import tpd ._
70- import ReifyQuotes ._
70+ import Staging ._
7171
7272 /** Classloader used for loading macros */
7373 private [this ] var myMacroClassLoader : java.lang.ClassLoader = _
@@ -79,7 +79,7 @@ class ReifyQuotes extends MacroTransformWithImplicits {
7979 myMacroClassLoader
8080 }
8181
82- override def phaseName : String = ReifyQuotes .name
82+ override def phaseName : String = Staging .name
8383
8484 override def checkPostCondition (tree : Tree )(implicit ctx : Context ): Unit = {
8585 tree match {
@@ -420,7 +420,7 @@ class ReifyQuotes extends MacroTransformWithImplicits {
420420 else if (body.symbol == defn.DoubleClass ) tag(" DoubleTag" )
421421 else pickleAsTasty()
422422 }
423- else ReifyQuotes .toValue(body) match {
423+ else Staging .toValue(body) match {
424424 case Some (value) => pickleAsValue(value)
425425 case _ => pickleAsTasty()
426426 }
@@ -644,10 +644,10 @@ class ReifyQuotes extends MacroTransformWithImplicits {
644644 }
645645}
646646
647- object ReifyQuotes {
647+ object Staging {
648648 import tpd ._
649649
650- val name : String = " reifyQuotes "
650+ val name : String = " staging "
651651
652652 def toValue (tree : tpd.Tree ): Option [Any ] = tree match {
653653 case Literal (Constant (c)) => Some (c)
0 commit comments