aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-08-31 19:34:55 +0200
committerMartin Odersky <odersky@gmail.com>2014-08-31 19:34:55 +0200
commitec1d2745dce34f81578967a032253a1a84361bc7 (patch)
tree5347568cee6bf4f7c7bc6f30248362eb1bb45f7c /src
parent47b1d735e8323b2587aeb4b2a7ce5e214d9f1f8d (diff)
downloaddotty-ec1d2745dce34f81578967a032253a1a84361bc7.tar.gz
dotty-ec1d2745dce34f81578967a032253a1a84361bc7.tar.bz2
dotty-ec1d2745dce34f81578967a032253a1a84361bc7.zip
Add outer parameters in constructor calls.
1) Constructors of inner classes get outer parameters 2) Outer arguments are passed as needed.
Diffstat (limited to 'src')
-rw-r--r--src/dotty/tools/dotc/TypeErasure.scala5
-rw-r--r--src/dotty/tools/dotc/transform/Erasure.scala4
-rw-r--r--src/dotty/tools/dotc/transform/OuterAccessors.scala35
3 files changed, 41 insertions, 3 deletions
diff --git a/src/dotty/tools/dotc/TypeErasure.scala b/src/dotty/tools/dotc/TypeErasure.scala
index d2b241e71..a5dbd5731 100644
--- a/src/dotty/tools/dotc/TypeErasure.scala
+++ b/src/dotty/tools/dotc/TypeErasure.scala
@@ -1,7 +1,9 @@
-package dotty.tools.dotc
+package dotty.tools
+package dotc
package core
import Symbols._, Types._, Contexts._, Flags._, Names._, StdNames._, Decorators._, Flags.JavaDefined
+import dotc.transform.OuterAccessors._
import util.DotClass
/** Erased types are:
@@ -110,6 +112,7 @@ object TypeErasure {
if ((sym eq defn.Any_asInstanceOf) || (sym eq defn.Any_isInstanceOf)) eraseParamBounds(sym.info.asInstanceOf[PolyType])
else if (sym.isAbstractType) TypeAlias(WildcardType)
+ else if (sym.isConstructor) addOuterParam(sym.owner.asClass, erase(tp))
else erase(tp)
}
diff --git a/src/dotty/tools/dotc/transform/Erasure.scala b/src/dotty/tools/dotc/transform/Erasure.scala
index 7100e4528..6e82f050a 100644
--- a/src/dotty/tools/dotc/transform/Erasure.scala
+++ b/src/dotty/tools/dotc/transform/Erasure.scala
@@ -24,6 +24,7 @@ import scala.collection.mutable.ListBuffer
import dotty.tools.dotc.core.Flags
import ValueClasses._
import TypeUtils._
+import OuterAccessors._
import typer.Mode
class Erasure extends Phase with DenotTransformer { thisTransformer =>
@@ -304,7 +305,8 @@ object Erasure {
case fun1 =>
fun1.tpe.widen match {
case mt: MethodType =>
- val args1 = (args ++ protoArgs(pt)).zipWithConserve(mt.paramTypes)(typedExpr)
+ val outers = outerArgs(fun1) map untpd.TypedSplice
+ val args1 = (outers ::: args ++ protoArgs(pt)).zipWithConserve(mt.paramTypes)(typedExpr)
untpd.cpy.Apply(tree)(fun1, args1) withType mt.resultType
case _ =>
throw new MatchError(i"tree $tree has unexpected type of function ${fun1.tpe.widen}, was ${fun.typeOpt.widen}")
diff --git a/src/dotty/tools/dotc/transform/OuterAccessors.scala b/src/dotty/tools/dotc/transform/OuterAccessors.scala
index 5e6257e7f..2cad74cf3 100644
--- a/src/dotty/tools/dotc/transform/OuterAccessors.scala
+++ b/src/dotty/tools/dotc/transform/OuterAccessors.scala
@@ -80,7 +80,7 @@ class OuterAccessors extends MiniPhaseTransform with InfoTransformer { thisTrans
if (isTrait)
newDefs += DefDef(outerAcc, EmptyTree)
else {
- val outerParamAcc = cls.info.decl(nme.OUTER).symbol.asTerm
+ val outerParamAcc = outerParamAccessor(cls).asTerm
newDefs += ValDef(outerParamAcc, EmptyTree)
newDefs += DefDef(outerAcc, ref(outerParamAcc))
}
@@ -132,6 +132,10 @@ object OuterAccessors {
def hasLocalInstantiation(cls: ClassSymbol)(implicit ctx: Context): Boolean =
cls.owner.isTerm || cls.is(LocalInstantiationSite)
+ /** The outer parameter accessor of cass `cls` */
+ def outerParamAccessor(cls: ClassSymbol)(implicit ctx: Context) =
+ cls.info.decl(nme.OUTER).symbol
+
/** Class has outer accessor. Can be called only after phase OuterAccessors. */
def hasOuter(cls: ClassSymbol)(implicit ctx: Context): Boolean =
cls.info.decl(cls.outerAccName).exists
@@ -161,4 +165,33 @@ object OuterAccessors {
case tpe: TypeProxy =>
outerPrefix(tpe.underlying)
}
+
+ /** If `cls` has an outer parameter add one to the method type `tp`. */
+ def addOuterParam(cls: ClassSymbol, tp: Type)(implicit ctx: Context): Type =
+ if (hasOuter(cls)) {
+ val mt @ MethodType(pnames, ptypes) = tp
+ mt.derivedMethodType(
+ nme.OUTER :: pnames, cls.owner.enclosingClass.typeRef :: ptypes, mt.resultType)
+ }
+ else tp
+
+ /** If function in an apply node is a constructor that needs to be passed an
+ * outer argument, the singleton list with the argument, otherwise Nil.
+ */
+ def outerArgs(fun: Tree)(implicit ctx: Context): List[Tree] = {
+ if (fun.symbol.isConstructor) {
+ val cls = fun.symbol.owner.asClass
+ def outerArg(receiver: Tree): Tree = receiver match {
+ case New(tpt) => TypeTree(outerPrefix(tpt.tpe)).withPos(tpt.pos)
+ case This(_) => ref(outerParamAccessor(cls))
+ case TypeApply(Select(r, nme.asInstanceOf_), args) => outerArg(r) // cast was inserted, skip
+ }
+ if (hasOuter(cls))
+ methPart(fun) match {
+ case Select(receiver, _) => outerArg(receiver) :: Nil
+ }
+ else Nil
+ }
+ else Nil
+ }
} \ No newline at end of file