fixed bug in fold-syntax on hashes
This commit is contained in:
parent
61921a827e
commit
5e0564191c
|
@ -28,9 +28,9 @@
|
||||||
[(hash? stx)
|
[(hash? stx)
|
||||||
(define processed (process (hash->list stx)))
|
(define processed (process (hash->list stx)))
|
||||||
(cond
|
(cond
|
||||||
[(hash-equal? stx) (hash processed)]
|
[(hash-equal? stx) (make-hash processed)]
|
||||||
[(hash-eqv? stx) (hasheqv processed)]
|
[(hash-eqv? stx) (make-hasheqv processed)]
|
||||||
[(hash-eq? stx) (hasheq processed)])]
|
[(hash-eq? stx) (make-hasheq processed)])]
|
||||||
[(prefab-struct-key stx)
|
[(prefab-struct-key stx)
|
||||||
(apply make-prefab-struct
|
(apply make-prefab-struct
|
||||||
(prefab-struct-key stx)
|
(prefab-struct-key stx)
|
||||||
|
@ -87,4 +87,4 @@
|
||||||
(define-syntax (quasisyntax/whole-loc stx)
|
(define-syntax (quasisyntax/whole-loc stx)
|
||||||
(syntax-case stx ()
|
(syntax-case stx ()
|
||||||
[(self loc template)
|
[(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