aboutsummaryrefslogtreecommitdiff
path: root/compiler/src/dotty/tools/dotc/transform/LinkScala2ImplClasses.scala
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-11-02 11:08:28 +0100
committerGuillaume Martres <smarter@ubuntu.com>2016-11-22 01:35:07 +0100
commit8a61ff432543a29234193cd1f7c14abd3f3d31a0 (patch)
treea8147561d307af862c295cfc8100d271063bb0dd /compiler/src/dotty/tools/dotc/transform/LinkScala2ImplClasses.scala
parent6a455fe6da5ff9c741d91279a2dc6fe2fb1b472f (diff)
downloaddotty-8a61ff432543a29234193cd1f7c14abd3f3d31a0.tar.gz
dotty-8a61ff432543a29234193cd1f7c14abd3f3d31a0.tar.bz2
dotty-8a61ff432543a29234193cd1f7c14abd3f3d31a0.zip
Move compiler and compiler tests to compiler dir
Diffstat (limited to 'compiler/src/dotty/tools/dotc/transform/LinkScala2ImplClasses.scala')
-rw-r--r--compiler/src/dotty/tools/dotc/transform/LinkScala2ImplClasses.scala62
1 files changed, 62 insertions, 0 deletions
diff --git a/compiler/src/dotty/tools/dotc/transform/LinkScala2ImplClasses.scala b/compiler/src/dotty/tools/dotc/transform/LinkScala2ImplClasses.scala
new file mode 100644
index 000000000..ca06938dc
--- /dev/null
+++ b/compiler/src/dotty/tools/dotc/transform/LinkScala2ImplClasses.scala
@@ -0,0 +1,62 @@
+package dotty.tools.dotc
+package transform
+
+import core._
+import TreeTransforms._
+import Contexts.Context
+import Flags._
+import SymUtils._
+import Symbols._
+import SymDenotations._
+import Types._
+import Decorators._
+import DenotTransformers._
+import StdNames._
+import NameOps._
+import Phases._
+import ast.untpd
+import ast.Trees._
+import collection.mutable
+
+/** Rewrite calls
+ *
+ * super[M].f(args)
+ *
+ * where M is a Scala2 trait implemented by the current class to
+ *
+ * M$class.f(this, args)
+ *
+ * provided the implementation class M$class defines a corresponding function `f`.
+ */
+class LinkScala2ImplClasses extends MiniPhaseTransform with IdentityDenotTransformer { thisTransform =>
+ import ast.tpd._
+
+ override def phaseName: String = "linkScala2ImplClasses"
+
+ override def runsAfter: Set[Class[_ <: Phase]] = Set(classOf[Mixin])
+
+ override def transformApply(app: Apply)(implicit ctx: Context, info: TransformerInfo) = {
+ def currentClass = ctx.owner.enclosingClass.asClass
+ app match {
+ case Apply(sel @ Select(Super(_, _), _), args)
+ if sel.symbol.owner.is(Scala2xTrait) && currentClass.mixins.contains(sel.symbol.owner) =>
+ val impl = implMethod(sel.symbol)
+ if (impl.exists) Apply(ref(impl), This(currentClass) :: args).withPos(app.pos)
+ else app // could have been an abstract method in a trait linked to from a super constructor
+ case _ =>
+ app
+ }
+ }
+
+ private def implMethod(meth: Symbol)(implicit ctx: Context): Symbol = {
+ val implInfo = meth.owner.implClass.info
+ if (meth.isConstructor)
+ implInfo.decl(nme.TRAIT_CONSTRUCTOR).symbol
+ else
+ implInfo.decl(meth.name)
+ .suchThat(c => FullParameterization.memberSignature(c.info) == meth.signature)
+ .symbol
+ }
+
+ private val Scala2xTrait = allOf(Scala2x, Trait)
+}