summaryrefslogtreecommitdiff
path: root/test/files/run/macro-expand-override/Impls_1.scala
blob: 0b127f5a59016015354b50e2b0cc1c1ae02bb35a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import scala.reflect.makro.{Context => Ctx}

object Impls {
  def impl(c: Ctx)(tag: String, x: c.Expr[_]) = {
    import c.{prefix => prefix}
    import c.mirror._
    val body = Apply(Select(Ident(definitions.PredefModule), newTermName("println")), List(Literal(Constant(tag)), Literal(Constant(prefix.toString)), x.tree))
    Expr[Unit](body)
  }

  def fooBString(c: Ctx)(x: c.Expr[_]) = impl(c)("fooBString", x)
  def fooBInt(c: Ctx)(x: c.Expr[_]) = impl(c)("fooBInt", x)
  def fooDInt(c: Ctx)(x: c.Expr[_]) = impl(c)("fooDInt", x)
  def fooZString(c: Ctx)(x: c.Expr[_]) = impl(c)("fooZString", x)
}