summaryrefslogtreecommitdiff
path: root/test/files/run/macro-reify-unreify
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2012-09-26 10:40:29 +0200
committerEugene Burmako <xeno.by@gmail.com>2012-09-27 15:53:17 +0200
commita79ba085c5304e304e617c7d95520d25e955d88f (patch)
tree1ccc5b27811285f75aca3daecf0c7217ccb1df19 /test/files/run/macro-reify-unreify
parent02f980c617192fcee84813805e9875f8dfb88fa5 (diff)
downloadscala-a79ba085c5304e304e617c7d95520d25e955d88f.tar.gz
scala-a79ba085c5304e304e617c7d95520d25e955d88f.tar.bz2
scala-a79ba085c5304e304e617c7d95520d25e955d88f.zip
moves Context.runtimeUniverse to TreeBuild.mkRuntimeUniverseRef
Scaladoc-driven cleanup for the win
Diffstat (limited to 'test/files/run/macro-reify-unreify')
-rw-r--r--test/files/run/macro-reify-unreify/Macros_1.scala5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/files/run/macro-reify-unreify/Macros_1.scala b/test/files/run/macro-reify-unreify/Macros_1.scala
index 620a929210..9f04c13014 100644
--- a/test/files/run/macro-reify-unreify/Macros_1.scala
+++ b/test/files/run/macro-reify-unreify/Macros_1.scala
@@ -6,9 +6,10 @@ object Macros {
object Impls {
def foo(c: Ctx)(s: c.Expr[String]) = {
import c.universe._
+ import treeBuild._
- val world = c.reifyTree(c.runtimeUniverse, EmptyTree, s.tree)
- val greeting = c.reifyTree(c.runtimeUniverse, EmptyTree, c.typeCheck(Apply(Select(Literal(Constant("hello ")), newTermName("$plus")), List(c.unreifyTree(world)))))
+ val world = c.reifyTree(mkRuntimeUniverseRef, EmptyTree, s.tree)
+ val greeting = c.reifyTree(mkRuntimeUniverseRef, EmptyTree, c.typeCheck(Apply(Select(Literal(Constant("hello ")), newTermName("$plus")), List(c.unreifyTree(world)))))
val typedGreeting = c.Expr[String](greeting)
c.universe.reify {