fixed bug in fold-syntax on hashes
This commit is contained in:
parent
61921a827e
commit
5e0564191c
|
@ -28,9 +28,9 @@
|
|||
[(hash? stx)
|
||||
(define processed (process (hash->list stx)))
|
||||
(cond
|
||||
[(hash-equal? stx) (hash processed)]
|
||||
[(hash-eqv? stx) (hasheqv processed)]
|
||||
[(hash-eq? stx) (hasheq processed)])]
|
||||
[(hash-equal? stx) (make-hash processed)]
|
||||
[(hash-eqv? stx) (make-hasheqv processed)]
|
||||
[(hash-eq? stx) (make-hasheq processed)])]
|
||||
[(prefab-struct-key stx)
|
||||
(apply make-prefab-struct
|
||||
(prefab-struct-key stx)
|
||||
|
@ -87,4 +87,4 @@
|
|||
(define-syntax (quasisyntax/whole-loc stx)
|
||||
(syntax-case stx ()
|
||||
[(self loc template)
|
||||
#'(replace-whole-loc #`template (syntax-source #'self) loc)]))
|
||||
#'(replace-whole-loc #`template (syntax-source #'self) loc)]))
|
||||
|
|
Loading…
Reference in New Issue
Block a user