summaryrefslogblamecommitdiff
path: root/test/files/run/macro-repl-basic.check
blob: 5323f429da4859bd272e3a56eeab828f63e6be62 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                   
                                                                                   




                                     
                                                                                   




                                      
                                                                                   
























                                                             
Type in expressions to have them evaluated.
Type :help for more information.

scala> 

scala> import language.experimental.macros
import language.experimental.macros

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

scala> 

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

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

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

scala> object Macros {
  object Shmacros {
    def foo(x: Int): Int = macro Impls.foo
  }
  def bar(x: Int): Int = macro Impls.bar
}; class Macros {
  def quux(x: Int): Int = macro Impls.quux
}
defined module Macros
defined class Macros

scala> 

scala> import Macros.Shmacros._
import Macros.Shmacros._

scala> println(foo(2) + Macros.bar(2) * new Macros().quux(4))
31

scala>