@@ -146,10 +146,10 @@ class ReifyQuotes extends MacroTransformWithImplicits with InfoTransformer {
146146 }
147147
148148 /** We are in a `~(...)` context that is not shadowed by a nested `'(...)` */
149- def inSplice = outer != null && ! inQuote
149+ def inSplice : Boolean = outer != null && ! inQuote
150150
151151 /** We are not in a `~(...)` or a `'(...)` */
152- def isRoot = outer == null
152+ def isRoot : Boolean = outer == null
153153
154154 /** A map from type ref T to expressions of type `quoted.Type[T]`".
155155 * These will be turned into splices using `addTags` and represent type variables
@@ -516,9 +516,9 @@ class ReifyQuotes extends MacroTransformWithImplicits with InfoTransformer {
516516 outer.enteredSyms.foreach(registerCapturer)
517517
518518 if (ctx.owner.owner.is(Macro )) {
519- registerCapturer(defn.TastyTopLevelSplice_compilationTopLevelSplice )
519+ registerCapturer(defn.TastyTopLevelSplice_tastyContext )
520520 // Force a macro to have the context in first position
521- forceCapture(defn.TastyTopLevelSplice_compilationTopLevelSplice )
521+ forceCapture(defn.TastyTopLevelSplice_tastyContext )
522522 // Force all parameters of the macro to be created in the definition order
523523 outer.enteredSyms.reverse.foreach(forceCapture)
524524 }
@@ -652,7 +652,7 @@ class ReifyQuotes extends MacroTransformWithImplicits with InfoTransformer {
652652
653653 private def isStage0Value (sym : Symbol )(implicit ctx : Context ): Boolean =
654654 (sym.is(Inline ) && sym.owner.is(Macro ) && ! defn.isFunctionType(sym.info)) ||
655- sym == defn.TastyTopLevelSplice_compilationTopLevelSplice // intrinsic value at stage 0
655+ sym == defn.TastyTopLevelSplice_tastyContext // intrinsic value at stage 0
656656
657657 private def liftList (list : List [Tree ], tpe : Type )(implicit ctx : Context ): Tree = {
658658 list.foldRight[Tree ](ref(defn.NilModule )) { (x, acc) =>
0 commit comments