aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/transform/Erasure.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotty/tools/dotc/transform/Erasure.scala')
-rw-r--r--src/dotty/tools/dotc/transform/Erasure.scala18
1 files changed, 14 insertions, 4 deletions
diff --git a/src/dotty/tools/dotc/transform/Erasure.scala b/src/dotty/tools/dotc/transform/Erasure.scala
index 36d75b149..749bbed93 100644
--- a/src/dotty/tools/dotc/transform/Erasure.scala
+++ b/src/dotty/tools/dotc/transform/Erasure.scala
@@ -469,16 +469,26 @@ object Erasure extends TypeTestsCasts{
tpt = untpd.TypedSplice(TypeTree(sym.info).withPos(vdef.tpt.pos))), sym)
override def typedDefDef(ddef: untpd.DefDef, sym: Symbol)(implicit ctx: Context) = {
- val restpe = sym.info.resultType
+ var effectiveSym = sym
+ if (sym == defn.newRefArrayMethod) {
+ // newRefArray is treated specially: It's the only source-defined method
+ // that has a polymorphic type after erasure. But treating its (dummy) definition
+ // with a polymorphic type at and after erasure is an awkward special case.
+ // We therefore rewrite the method definition with a new Symbol of type
+ // (length: Int)Object
+ val MethodType(pnames, ptypes) = sym.info.resultType
+ effectiveSym = sym.copy(info = MethodType(pnames, ptypes, defn.ObjectType))
+ }
+ val restpe = effectiveSym.info.resultType
val ddef1 = untpd.cpy.DefDef(ddef)(
tparams = Nil,
- vparamss = (outer.paramDefs(sym) ::: ddef.vparamss.flatten) :: Nil,
+ vparamss = (outer.paramDefs(effectiveSym) ::: ddef.vparamss.flatten) :: Nil,
tpt = untpd.TypedSplice(TypeTree(restpe).withPos(ddef.tpt.pos)),
rhs = ddef.rhs match {
case id @ Ident(nme.WILDCARD) => untpd.TypedSplice(id.withType(restpe))
case _ => ddef.rhs
})
- super.typedDefDef(ddef1, sym)
+ super.typedDefDef(ddef1, effectiveSym)
}
/** After erasure, we may have to replace the closure method by a bridge.
@@ -600,7 +610,7 @@ object Erasure extends TypeTestsCasts{
traverse(newStats, oldStats)
}
-
+
private final val NoBridgeFlags = Flags.Accessor | Flags.Deferred | Flags.Lazy
/** Create a bridge DefDef which overrides a parent method.