dictionaries
svn: r9383 original commit: a0f65ba33efbd2f7e5f6c2fa549d55117a986946
This commit is contained in:
parent
ea0eea3f29
commit
e509e38f20
|
@ -195,6 +195,18 @@
|
||||||
(hash-set! ht v v2)
|
(hash-set! ht v v2)
|
||||||
(set-box! v2 (copy-value (unbox v) ht))
|
(set-box! v2 (copy-value (unbox v) ht))
|
||||||
v2)]
|
v2)]
|
||||||
|
[(hash? v) (let ([ph (make-placeholder #f)])
|
||||||
|
(hash-set! ht v ph)
|
||||||
|
(let ([a (hash-map v (lambda (k v)
|
||||||
|
(cons (copy-value k ht)
|
||||||
|
(copy-value v ht))))])
|
||||||
|
(placeholder-set!
|
||||||
|
ph
|
||||||
|
((if (hash-eq? v)
|
||||||
|
make-hasheq-placeholder
|
||||||
|
make-hash-placeholder)
|
||||||
|
a)))
|
||||||
|
ph)]
|
||||||
[else v]))
|
[else v]))
|
||||||
|
|
||||||
(define (strip-comments stx)
|
(define (strip-comments stx)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user