summaryrefslogtreecommitdiffstats
path: root/tests/012
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-08-19 07:01:36 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-08-19 07:01:36 -0700
commit36a61da3883e8baca45a80c703211ae71be4c6ff (patch)
tree7bc01b48e5a04e8b0c126c5d92a6fca70d197e6d /tests/012
parentfb444e43852b08ff6d1fb74339f7bce780931c4f (diff)
downloadtxr-36a61da3883e8baca45a80c703211ae71be4c6ff.tar.gz
txr-36a61da3883e8baca45a80c703211ae71be4c6ff.tar.bz2
txr-36a61da3883e8baca45a80c703211ae71be4c6ff.zip
Fix broken @@@<n>/@@@rest references in quasiliterals.
* parser.y (quasi_meta_helper): When obj is a sys:var, leave it alone; don't add another layer of var. Also, do the same if it is a sys:expr. * tests/012/quasi.tl: Added test case.
Diffstat (limited to 'tests/012')
-rw-r--r--tests/012/quasi.tl4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/012/quasi.tl b/tests/012/quasi.tl
index 7511d4bd..1c4092e2 100644
--- a/tests/012/quasi.tl
+++ b/tests/012/quasi.tl
@@ -21,3 +21,7 @@
(test
[(ret `@1-@@rest`) 1 2 3 4]
"1-2 3 4")
+
+(test
+ [(ret [(ret `@1 @rest @@1 @@rest @@@rest @@@1`) 1 10]) 2 20]
+ "1 10 1 10 20 2")