summaryrefslogtreecommitdiff
path: root/test/files/run/macro-basic-mamd-mi/Impls_1.scala
blob: eadb63fa8ef1ec168f335aa7b586ad17fb525776 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import scala.reflect.makro.{Context => Ctx}

object Impls {
  def foo(c: Ctx)(x: c.Expr[Int]): c.Expr[Int] = {
    import c.mirror._
    Apply(Select(x.tree, newTermName("$plus")), List(Literal(Constant(1))))
  }

  def bar(c: Ctx)(x: c.Expr[Int]): c.Expr[Int] = {
    import c.mirror._
    Apply(Select(x.tree, newTermName("$plus")), List(Literal(Constant(2))))
  }

  def quux(c: Ctx)(x: c.Expr[Int]): c.Expr[Int] = {
    import c.mirror._
    val body = Apply(Select(x.tree, newTermName("$plus")), List(Literal(Constant(3))))
    Expr[Int](body)
  }
}