summaryrefslogblamecommitdiff
path: root/test/files/run/macro-basic-ma-md-mi/Impls_1.scala
blob: 039488ba3e6b6a5f3a35352c36e229f021dbfe18 (plain) (tree)
1
2
3
4
5
6
7
8
9
10



                                                  
                       
                                                                                      
                     


                                                  
                       
                                                                                      
                     


                                                   
                       
                                                                                      
                     
   
 
import scala.reflect.makro.{Context => Ctx}

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

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

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