Let's just make some differently painted identifiers so that some
error messages won't reveal the non-similarly-named ids behind the curtain. (I have my hammer, and damn if I won't use it.) svn: r13107
This commit is contained in:
parent
5e325a6552
commit
12fc114993
|
@ -707,13 +707,14 @@
|
|||
(var-info-id defid)))))
|
||||
(syntax->list (localify #'ivars def-ctx)))
|
||||
|
||||
(let ([marker (make-syntax-introducer)])
|
||||
(with-syntax ([(defn-or-expr ...)
|
||||
(apply append
|
||||
(map (λ (defn-or-expr)
|
||||
(syntax-case defn-or-expr (define-values)
|
||||
[(define-values (id ...) body)
|
||||
(let* ([ids (syntax->list #'(id ...))]
|
||||
[tmps (generate-temporaries ids)]
|
||||
[tmps (map marker ids)]
|
||||
[do-one
|
||||
(λ (id tmp)
|
||||
(let ([var-info (bound-identifier-mapping-get
|
||||
|
@ -739,7 +740,7 @@
|
|||
(apply append (map do-one ids tmps))))]
|
||||
[else (list defn-or-expr)]))
|
||||
expanded-body))])
|
||||
#'(begin-with-definitions defn-or-expr ...)))))))
|
||||
#'(begin-with-definitions defn-or-expr ...))))))))
|
||||
|
||||
(define-for-syntax (redirect-imports/exports import?)
|
||||
(lambda (table-stx
|
||||
|
|
Loading…
Reference in New Issue
Block a user