Merge pull request #2 from AlexKnauth/hash

add scopes within boxes, vectors, hashes, and prefab structs
This commit is contained in:
Georges Dupéron 2018-05-24 23:02:29 +02:00 committed by GitHub
commit bcd232aab9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
#lang racket
(require racket/syntax
racket/struct
racket/string
racket/format
debug-scopes/named-scopes-sli-parameter)
@ -114,6 +115,16 @@
[(syntax? e) (datum->syntax e (add-scopes (syntax-e e)) e e)]
[(pair? e) (cons (add-scopes (car e))
(add-scopes (cdr e)))]
[(box? e)
(box-immutable (add-scopes (unbox e)))]
[(vector? e)
(apply vector-immutable (map add-scopes (vector->list e)))]
[(hash? e)
(for/fold ([e e]) ([k (in-hash-keys e)])
(hash-update e k add-scopes))]
[(prefab-struct-key e)
(define key (prefab-struct-key e))
(apply make-prefab-struct key (map add-scopes (struct->list e)))]
[else e]))
(define (sli/use whole-stx)