summaryrefslogtreecommitdiffstats
path: root/tests/011
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-06-03 07:32:42 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-06-03 07:32:42 -0700
commitc12f969791bec0b2d6e985193c67b1f79db99ccc (patch)
treef6ea8571a540b5dd8d6d1c920d329312f1b15969 /tests/011
parent2749a5ace7f404dae2eeb8c94c9290af16eee234 (diff)
downloadtxr-c12f969791bec0b2d6e985193c67b1f79db99ccc.tar.gz
txr-c12f969791bec0b2d6e985193c67b1f79db99ccc.tar.bz2
txr-c12f969791bec0b2d6e985193c67b1f79db99ccc.zip
json: pattern matching test cases and bugfix.
* parser.y (json_val): We must nreverse the json_pairs which were pushed in right to left order. This didn't matter for constructing hashes so it was left out, but under quasiquoting the order matters: it determines the order of evaluation and of pattern matching. * tests/011/patmatch.tl: New quasiquoting pattern matching cases, including JSON. * y.tab.c.shipped: Regenerated.
Diffstat (limited to 'tests/011')
-rw-r--r--tests/011/patmatch.tl17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/011/patmatch.tl b/tests/011/patmatch.tl
index 071243fb..8a304a6d 100644
--- a/tests/011/patmatch.tl
+++ b/tests/011/patmatch.tl
@@ -472,6 +472,23 @@
(list x y))
((1 2) (1 4) (3 2) (3 4) (5 2) (5 4)))
+(mtest
+ (when-match ^(,a ,b) '(1 2) (list a b)) (1 2)
+ (when-match ^#(,a ,b) #(1 2) (list a b)) (1 2)
+ (when-match ^#S(,type year ,y) #S(time year 2021)
+ (list (struct-type-name type) y)) (time 2021)
+ (when-match ^#H(() (x ,y) (,(symbolp @y) ,datum))
+ #H(() (x k) (k 42))
+ datum) (42))
+
+(mtest
+ (when-match ^#J~a 42.0 a) 42.0
+ (when-match ^#J[~a, ~b] #J[true, false] (list a b)) (t nil)
+ (when-match ^#J{"x" : ~y, ~(symbolp @y) : ~datum}
+ #J{"x" : true, true : 42}
+ datum) (42.0)
+ (when-match ^#J{"foo" : {"x" : ~val}} #J{"foo" : {"x" : "y"}} val) "y")
+
(compile-only
(eval-only
(compile-file (base-name *load-path*) "temp.tlo")