syntax-rules: support splicing in template
This commit is contained in:
parent
691d0ad698
commit
af59885858
|
@ -49,6 +49,12 @@
|
||||||
;; | (p . p)
|
;; | (p . p)
|
||||||
;; | (p ...)
|
;; | (p ...)
|
||||||
|
|
||||||
|
;; only template supports (p ... . p) pattern
|
||||||
|
;; tp := constant
|
||||||
|
;; | var
|
||||||
|
;; | (p . p)
|
||||||
|
;; | (p ... . p)
|
||||||
|
|
||||||
(define (compile ellipsis literals rules)
|
(define (compile ellipsis literals rules)
|
||||||
|
|
||||||
(define (constant? obj)
|
(define (constant? obj)
|
||||||
|
@ -63,8 +69,7 @@
|
||||||
(and (pair? pat)
|
(and (pair? pat)
|
||||||
(pair? (cdr pat))
|
(pair? (cdr pat))
|
||||||
(variable? (cadr pat))
|
(variable? (cadr pat))
|
||||||
(variable=? (cadr pat) ellipsis)
|
(variable=? (cadr pat) ellipsis)))
|
||||||
(eq? (cddr pat) '())))
|
|
||||||
|
|
||||||
(define (pattern-validator pat) ; pattern -> validator
|
(define (pattern-validator pat) ; pattern -> validator
|
||||||
(letrec
|
(letrec
|
||||||
|
@ -166,7 +171,9 @@
|
||||||
;; ((a . (x1 x2)) (b . (y1 y2 y3)) (c . z1)) -> ((x1 x2) (y1 y2 y3) (z1))
|
;; ((a . (x1 x2)) (b . (y1 y2 y3)) (c . z1)) -> ((x1 x2) (y1 y2 y3) (z1))
|
||||||
(list-of-selectors
|
(list-of-selectors
|
||||||
(map (lambda (x) (if (list? x) x (list x))) (map cdr filtered-selectors))))
|
(map (lambda (x) (if (list? x) x (list x))) (map cdr filtered-selectors))))
|
||||||
#`(map (lambda #,inner-tmps #,inner-rep) #,@list-of-selectors)))
|
(let ((rep1 #`(map (lambda #,inner-tmps #,inner-rep) #,@list-of-selectors))
|
||||||
|
(rep2 (template-representation (cddr pat) levels selectors)))
|
||||||
|
#`(append #,rep1 #,rep2))))
|
||||||
((pair? pat)
|
((pair? pat)
|
||||||
#`(cons #,(template-representation (car pat) levels selectors)
|
#`(cons #,(template-representation (car pat) levels selectors)
|
||||||
#,(template-representation (cdr pat) levels selectors)))))
|
#,(template-representation (cdr pat) levels selectors)))))
|
||||||
|
|
Loading…
Reference in New Issue