summaryrefslogtreecommitdiff
path: root/test/files/run/macro-sip19-revised
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2012-07-17 12:36:11 +0200
committerEugene Burmako <xeno.by@gmail.com>2012-07-20 10:04:58 +0200
commit30f5a36941aa1671849322ba79ebff0881ae7ff0 (patch)
treee76028cbb9d52b9ade6067b2d3aa82c8326fb009 /test/files/run/macro-sip19-revised
parenta8bd1e25b9fe32a8eff2f51ee3bfa527440beb84 (diff)
downloadscala-30f5a36941aa1671849322ba79ebff0881ae7ff0.tar.gz
scala-30f5a36941aa1671849322ba79ebff0881ae7ff0.tar.bz2
scala-30f5a36941aa1671849322ba79ebff0881ae7ff0.zip
SI-5999 removes Context.reify
Currently there are discrepancies between the behavior of c.reify and c.universe.reify. First step in fixing these problems is removing the duplication in the API. That's why I'm cutting away the Context.reify shortcut. Context.reify is a magic macro, hardwired in the fast track mechanism, so removing it requires redeploying the starr (because an old starr will crash if launched on sources that don't contain Context.reify). To cleanly redeploy a starr I've left a Context.reify stub in sources, but hidden it behind a `protected` modifier. When starr is redeployed (in a subsequent commit) the stub will be removed. I've also updated the tests to use c.universe.reify instead of c.reify. This will break some of them, because c.universe.reify uses a standard compiler mirror, which unlike a macro mirror doesn't like packageless classes. That's an annoyance, but I think having clean separation of commits is more important that being 100% consistent.
Diffstat (limited to 'test/files/run/macro-sip19-revised')
-rw-r--r--test/files/run/macro-sip19-revised/Impls_Macros_1.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/macro-sip19-revised/Impls_Macros_1.scala b/test/files/run/macro-sip19-revised/Impls_Macros_1.scala
index 994421808e..013130d181 100644
--- a/test/files/run/macro-sip19-revised/Impls_Macros_1.scala
+++ b/test/files/run/macro-sip19-revised/Impls_Macros_1.scala
@@ -11,7 +11,7 @@ object Macros {
val fileName = fun.pos.fileInfo.getName
val line = fun.pos.line
val charOffset = fun.pos.point
- c.reify { SourceLocation1(outer.splice, c.literal(fileName).splice, c.literal(line).splice, c.literal(charOffset).splice) }
+ c.universe.reify { SourceLocation1(outer.splice, c.literal(fileName).splice, c.literal(line).splice, c.literal(charOffset).splice) }
}
implicit def sourceLocation: SourceLocation1 = macro impl