@@ -105,7 +105,6 @@ object Splicer {
105105 protected def interpretVarargs (args : List [Object ])(implicit env : Env ): Object =
106106 args.toSeq
107107
108- protected def interpretTastyContext ()(implicit env : Env ): Object = ReflectionImpl (ctx, pos)
109108 protected def interpretQuoteContext ()(implicit env : Env ): Object =
110109 new scala.quoted.QuoteContext (ReflectionImpl (ctx, pos))
111110
@@ -278,7 +277,6 @@ object Splicer {
278277 protected def interpretTypeQuote (tree : tpd.Tree )(implicit env : Env ): Unit = ()
279278 protected def interpretLiteral (value : Any )(implicit env : Env ): Unit = ()
280279 protected def interpretVarargs (args : List [Unit ])(implicit env : Env ): Unit = ()
281- protected def interpretTastyContext ()(implicit env : Env ): Unit = ()
282280 protected def interpretQuoteContext ()(implicit env : Env ): Unit = ()
283281 protected def interpretStaticMethodCall (module : Symbol , fn : Symbol , args : => List [Unit ])(implicit env : Env ): Unit = args.foreach(identity)
284282 protected def interpretModuleAccess (fn : Symbol )(implicit env : Env ): Unit = ()
@@ -314,7 +312,6 @@ object Splicer {
314312 protected def interpretTypeQuote (tree : Tree )(implicit env : Env ): Result
315313 protected def interpretLiteral (value : Any )(implicit env : Env ): Result
316314 protected def interpretVarargs (args : List [Result ])(implicit env : Env ): Result
317- protected def interpretTastyContext ()(implicit env : Env ): Result
318315 protected def interpretQuoteContext ()(implicit env : Env ): Result
319316 protected def interpretStaticMethodCall (module : Symbol , fn : Symbol , args : => List [Result ])(implicit env : Env ): Result
320317 protected def interpretModuleAccess (fn : Symbol )(implicit env : Env ): Result
@@ -338,9 +335,6 @@ object Splicer {
338335 case Literal (Constant (value)) =>
339336 interpretLiteral(value)
340337
341- case _ if tree.symbol == defn.TastyReflection_macroContext =>
342- interpretTastyContext()
343-
344338 case _ if tree.symbol == defn.QuoteContext_macroContext =>
345339 interpretQuoteContext()
346340
0 commit comments