Skip to content

Commit 965dbfa

Browse files
committed
chore: Do not report macro warning for String interpolators
1 parent 075f5e6 commit 965dbfa

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

compiler/src/dotty/tools/dotc/transform/PostTyper.scala

+4-1
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,10 @@ class PostTyper extends MacroTransform with InfoTransformer { thisPhase =>
256256
for publicInBinaryAnnot <- publicInBinaryAnnotOpt do sym.addAnnotation(publicInBinaryAnnot)
257257
else
258258
sym.keepAnnotationsCarrying(thisPhase, Set(defn.GetterMetaAnnot, defn.FieldMetaAnnot), orNoneOf = defn.NonBeanMetaAnnots)
259-
if sym.isScala2Macro && !ctx.settings.XignoreScala2Macros.value then
259+
if sym.isScala2Macro && !ctx.settings.XignoreScala2Macros.value &&
260+
sym != defn.StringContext_raw &&
261+
sym != defn.StringContext_f &&
262+
sym != defn.StringContext_s then
260263
if !sym.owner.unforcedDecls.exists(p => !p.isScala2Macro && p.name == sym.name && p.signature == sym.signature)
261264
// Allow scala.reflect.materializeClassTag to be able to compile scala/reflect/package.scala
262265
// This should be removed on Scala 3.x

0 commit comments

Comments
 (0)