summaryrefslogtreecommitdiff
path: root/test/files/pos/t8013
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2014-01-29 19:06:56 +0300
committerEugene Burmako <xeno.by@gmail.com>2014-02-14 14:19:44 +0100
commitb5c4666be9b53a5d8e8d656a3aa597b3897a37c8 (patch)
tree69e3bcc2e7da99c28376793c6dea59e9b9d6246e /test/files/pos/t8013
parent2c05f0139758613fbe26a5c03d60a9da29f2f5e5 (diff)
downloadscala-b5c4666be9b53a5d8e8d656a3aa597b3897a37c8.tar.gz
scala-b5c4666be9b53a5d8e8d656a3aa597b3897a37c8.tar.bz2
scala-b5c4666be9b53a5d8e8d656a3aa597b3897a37c8.zip
SI-6931 cleans up the position API
I have finally overcome my fear of positions and got to cleaning up its public interface. Apparently it isn’t so bad, since there’s a sane core of methods (thanks to whoever wrote the comments to internal#Position): 1) Checks to distinguish offsets, opaque ranges and transparent ranges 2) Essentials that inclide start, point, end and source 3) Factories that create new positions based on existing ones It looks like methods from the 3rd group are exactly what we’ve been looking for in SI-6931, so we have nothing to add in this commit.
Diffstat (limited to 'test/files/pos/t8013')
-rw-r--r--test/files/pos/t8013/inpervolator_1.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/t8013/inpervolator_1.scala b/test/files/pos/t8013/inpervolator_1.scala
index 89b7c22709..612e1d727d 100644
--- a/test/files/pos/t8013/inpervolator_1.scala
+++ b/test/files/pos/t8013/inpervolator_1.scala
@@ -18,7 +18,7 @@ object Perverse {
def pImpl(c: Context)(args: c.Expr[Any]*): c.Expr[String] = {
import c.universe._
val macroPos = c.macroApplication.pos
- val text = macroPos.lineContent substring macroPos.column
+ val text = macroPos.source.lineToString(macroPos.line - 1) substring macroPos.column
val tt = Literal(Constant(text))
val tree = q"t8013.Perverse.pervert($tt)"
c.Expr[String](tree)