We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f0b6e9 commit fb5a68aCopy full SHA for fb5a68a
compiler/src/dotty/tools/dotc/transform/ReifyQuotes.scala
@@ -177,10 +177,10 @@ class ReifyQuotes extends MacroTransform {
177
meth.appliedTo(pickledQuoteStrings, splicesList)
178
}
179
180
- def tagedType(sym: Symbol) = ref(defn.InternalQuotedTypeModule).select(sym.name.toTermName)
+ def taggedType(sym: Symbol) = ref(defn.InternalQuotedTypeModule).select(sym.name.toTermName)
181
182
if (isType) {
183
- if (splices.isEmpty && body.symbol.isPrimitiveValueClass) tagedType(body.symbol)
+ if (splices.isEmpty && body.symbol.isPrimitiveValueClass) taggedType(body.symbol)
184
else pickleAsTasty()
185
186
else getLiteral(body) match {
@@ -443,4 +443,3 @@ object ReifyQuotes {
443
override def toString: String = s"Embedded($trees, $map)"
444
445
446
-
0 commit comments