|
|
|
@ -39,11 +39,10 @@
|
|
|
|
|
|
|
|
|
|
(define-macro (syntax-parse/easy STX LITS . EXPS)
|
|
|
|
|
(with-syntax ([(BOUND-LITS UNBOUND-LITS) (generate-bound-and-unbound-literals #'LITS)])
|
|
|
|
|
#'(let ([stx STX])
|
|
|
|
|
(syntax-parse (if (syntax? stx) stx (datum->syntax #'here stx))
|
|
|
|
|
#:literals BOUND-LITS
|
|
|
|
|
#:datum-literals UNBOUND-LITS
|
|
|
|
|
. EXPS))))
|
|
|
|
|
#'(syntax-parse (syntax-case STX () [any #'any])
|
|
|
|
|
#:literals BOUND-LITS
|
|
|
|
|
#:datum-literals UNBOUND-LITS
|
|
|
|
|
. EXPS)))
|
|
|
|
|
|
|
|
|
|
(define-macro-cases pattern-case
|
|
|
|
|
[(_ STX-ARG
|
|
|
|
|