A few small changes, exported make-auto-pvar needed by stxparse-info to have some auto-syntax-e-like behaviour
This commit is contained in:
parent
c066a33ee9
commit
bb376d3942
50
main.rkt
50
main.rkt
|
@ -14,13 +14,18 @@
|
||||||
(provide auto-with-syntax)
|
(provide auto-with-syntax)
|
||||||
(provide auto-syntax)
|
(provide auto-syntax)
|
||||||
(provide auto-syntax-case)
|
(provide auto-syntax-case)
|
||||||
|
(module+ utils
|
||||||
|
(provide (for-syntax make-auto-pvar
|
||||||
|
auto-pvar?)))
|
||||||
|
|
||||||
(define (leaves->datum e depth)
|
(define (leaves->datum e depth)
|
||||||
(if (> depth 0)
|
(if (eq? e #f) ;; for attributes with ~optional holes.
|
||||||
(map (λ (eᵢ) (leaves->datum eᵢ (sub1 depth))) e)
|
e
|
||||||
(if (syntax? e)
|
(if (> depth 0)
|
||||||
(syntax->datum e)
|
(map (λ (eᵢ) (leaves->datum eᵢ (sub1 depth))) e)
|
||||||
e)))
|
(if (syntax? e)
|
||||||
|
(syntax->datum e)
|
||||||
|
e))))
|
||||||
|
|
||||||
|
|
||||||
(define-syntax (to-datum stx)
|
(define-syntax (to-datum stx)
|
||||||
|
@ -36,8 +41,27 @@
|
||||||
#`(leaves->datum #,valvar #,depth))))]))
|
#`(leaves->datum #,valvar #,depth))))]))
|
||||||
|
|
||||||
(begin-for-syntax
|
(begin-for-syntax
|
||||||
|
(define (auto-pvar-proc self stx)
|
||||||
|
(cond
|
||||||
|
[(identifier? stx)
|
||||||
|
(datum->syntax stx
|
||||||
|
`(,(quote-syntax to-datum) ,stx)
|
||||||
|
stx
|
||||||
|
stx)]
|
||||||
|
[(and (pair? (syntax-e stx))
|
||||||
|
(identifier? (car (syntax-e stx))))
|
||||||
|
(datum->syntax stx
|
||||||
|
`((,(quote-syntax to-datum) ,(car (syntax-e stx)))
|
||||||
|
.
|
||||||
|
,(cdr (syntax-e stx)))
|
||||||
|
stx
|
||||||
|
stx)]
|
||||||
|
[else (raise-syntax-error
|
||||||
|
'auto-syntax-e
|
||||||
|
"Improper use of auto-syntax-e pattern variable"
|
||||||
|
stx)]))
|
||||||
(define-values (struct:auto-pvar
|
(define-values (struct:auto-pvar
|
||||||
make-auto-pvar
|
-make-auto-pvar
|
||||||
auto-pvar?
|
auto-pvar?
|
||||||
auto-pvar-ref
|
auto-pvar-ref
|
||||||
auto-pvar-set!)
|
auto-pvar-set!)
|
||||||
|
@ -49,8 +73,9 @@
|
||||||
#f
|
#f
|
||||||
null
|
null
|
||||||
(current-inspector)
|
(current-inspector)
|
||||||
(λ (self stx)
|
auto-pvar-proc))
|
||||||
#`(to-datum #,stx)))))
|
(define (make-auto-pvar depth valvar)
|
||||||
|
(make-set!-transformer (-make-auto-pvar depth valvar))))
|
||||||
|
|
||||||
(define-for-syntax (syntax->tree/ids e)
|
(define-for-syntax (syntax->tree/ids e)
|
||||||
(cond [(identifier? e) e]
|
(cond [(identifier? e) e]
|
||||||
|
@ -76,11 +101,10 @@
|
||||||
(let ()
|
(let ()
|
||||||
(record-disappeared-uses (syntax->list #'(pvar-id ...)))
|
(record-disappeared-uses (syntax->list #'(pvar-id ...)))
|
||||||
#'(let-syntax ([pvar-id
|
#'(let-syntax ([pvar-id
|
||||||
(make-set!-transformer
|
(let ([mapping (syntax-local-value
|
||||||
(let ([mapping (syntax-local-value
|
(quote-syntax pvar-id))])
|
||||||
(quote-syntax pvar-id))])
|
(make-auto-pvar (syntax-mapping-depth mapping)
|
||||||
(make-auto-pvar (syntax-mapping-depth mapping)
|
(syntax-mapping-valvar mapping)))]
|
||||||
(syntax-mapping-valvar mapping))))]
|
|
||||||
...)
|
...)
|
||||||
body ...)))]))
|
body ...)))]))
|
||||||
|
|
||||||
|
|
26
test/test-meta.rkt
Normal file
26
test/test-meta.rkt
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
#lang racket
|
||||||
|
(require auto-syntax-e (for-syntax racket/base))
|
||||||
|
(auto-syntax-case #'(1 2 3) ()
|
||||||
|
[(x ...)
|
||||||
|
(map add1 x)])
|
||||||
|
|
||||||
|
(begin-for-syntax
|
||||||
|
(require auto-syntax-e (for-syntax racket/base))
|
||||||
|
(auto-syntax-case #'(1 2 3) ()
|
||||||
|
[(x ...)
|
||||||
|
(map add1 x)]))
|
||||||
|
|
||||||
|
(begin-for-syntax
|
||||||
|
(begin-for-syntax
|
||||||
|
(require auto-syntax-e (for-syntax racket/base))
|
||||||
|
(auto-syntax-case #'(1 2 3) ()
|
||||||
|
[(x ...)
|
||||||
|
(map add1 x)])))
|
||||||
|
|
||||||
|
(begin-for-syntax
|
||||||
|
(begin-for-syntax
|
||||||
|
(begin-for-syntax
|
||||||
|
(require auto-syntax-e (for-syntax racket/base))
|
||||||
|
(auto-syntax-case #'(1 2 3) ()
|
||||||
|
[(x ...)
|
||||||
|
(map add1 x)]))))
|
Loading…
Reference in New Issue
Block a user