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 bfa631a commit daabc81Copy full SHA for daabc81
compiler/src/dotty/tools/dotc/core/quoted/PickledQuotes.scala
@@ -50,17 +50,6 @@ object PickledQuotes {
50
healOwner(tpe1.typeTree)
51
}
52
53
- private def dealiasTypeTags(tp: Type)(implicit ctx: Context): Type = new TypeMap() {
54
- override def apply(tp: Type): Type = {
55
- val tp1 = tp match {
56
- case tp: TypeRef if tp.typeSymbol.hasAnnotation(defn.InternalQuoted_QuoteTypeTagAnnot) =>
57
- tp.symbol.info.hiBound
58
- case _ => tp
59
- }
60
- mapOver(tp1)
61
62
- }.apply(tp)
63
-
64
/** Unpickle the tree contained in the TastyExpr */
65
def unpickleExpr(tasty: PickledQuote, splices: PickledArgs)(implicit ctx: Context): Tree = {
66
val tastyBytes = TastyString.unpickle(tasty)
0 commit comments