aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/transform/UncurryTreeTransform.scala
blob: f2d8d4d4a075edf3ebb3a1e9bf8f4e64295284d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package dotty.tools.dotc
package transform

import TreeTransforms._
import core.DenotTransformers._
import core.Denotations._
import core.SymDenotations._
import core.Contexts._
import core.Types._
import core.Symbols._
import ast.Trees._
import ast.tpd.{Apply, Tree, cpy}

class UncurryTreeTransform extends MiniPhaseTransform with InfoTransformer {

  override def name: String = "uncurry"
  override def transformApply(tree: Apply)(implicit ctx: Context, info: TransformerInfo): Tree =
    ctx.traceIndented(s"transforming ${tree.show}", show = true) {
    tree.fun match {
      case Apply(fn, args) =>
        def showType(implicit ctx: Context) =
          ctx.log(s"at ${ctx.phase} ${fn.symbol} has type ${fn.symbol.info.widen.show}")
        showType
        ctx.atNextPhase(showType(_))
        showType
        cpy.Apply(tree, fn, args ++ tree.args)
      case _ => tree
    }}

  def uncurry(tp: Type)(implicit ctx: Context): Type = tp match {
    case tp @ MethodType(pnames1, ptypes1) =>
      tp.resultType match {
        case rt @ MethodType(pnames2, ptypes2) =>
          tp.derivedMethodType(pnames1 ++ pnames2, ptypes1 ++ ptypes2, rt.resultType)
        case _ =>
          tp
      }
    case tp: PolyType =>
      tp.derivedPolyType(tp.paramNames, tp.paramBounds, uncurry(tp.resultType))
    case _ =>
      tp
  }

  def transformInfo(tp: Type, sym: Symbol)(implicit ctx: Context): Type =
    uncurry(tp)
}