racket/collects/racket/provide-syntax.rkt
Matthew Flatt 0197902309 add var-ref->mod-decl-insp' and switch cur-code-insp' uses
Macros and other tools that need syntax privilege used
`(current-code-inspector)' at the module top-level to try to
capture the right code inspector at load time. It's more
consistent to instead use the enclosing module's declaration-time
inspector, and `var-ref->mod-decl-insp' provides that. The
new function works only on references to anonymous variables,
which limits access to the inspector.

The real function name is longer, of course.
2011-09-20 13:50:36 -06:00

31 lines
891 B
Racket

#lang racket/base
(provide define-provide-syntax)
(require (for-syntax racket/base
"provide-transform.rkt"))
(define-for-syntax orig-insp (variable-reference->module-declaration-inspector
(#%variable-reference)))
(define-for-syntax (make-provide-macro proc)
(make-provide-transformer
(lambda (stx modes)
(let* ([i (make-syntax-introducer)]
[d-stx (syntax-disarm stx orig-insp)]
[new-stx (i (proc (i d-stx)))])
(expand-export (syntax-rearm new-stx stx) modes)))))
(define-syntax (define-provide-syntax stx)
(syntax-case stx ()
[(_ id proc)
(identifier? #'id)
(syntax/loc stx
(define-syntax id
(make-provide-macro proc)))]
[(_ (id . args) . body)
(identifier? #'id)
(syntax/loc stx
(define-provide-syntax id
(lambda args . body)))]))