fixed bug in fold-syntax on hashes

This commit is contained in:
Suzanne Soy 2021-03-15 22:51:04 +00:00
parent 61921a827e
commit 5e0564191c

View File

@ -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)]))