Finally managed to get syntax-properties-typed.rkt to typecheck, without relying on (Syntaxof Any) in the First-Comments and Comments-After types. The predicates are horrible to write, though :-(
This commit is contained in:
parent
a110b20df1
commit
deca84c956
|
@ -1,7 +0,0 @@
|
||||||
#lang typed/racket
|
|
||||||
(provide (struct-out Some)
|
|
||||||
Maybe)
|
|
||||||
|
|
||||||
(struct (A) Some ([v : A]) #:prefab)
|
|
||||||
(define-type (Maybe A)
|
|
||||||
(U (Some A) #f))
|
|
|
@ -7,7 +7,9 @@
|
||||||
extract-first-comments
|
extract-first-comments
|
||||||
extract-comments-after)
|
extract-comments-after)
|
||||||
|
|
||||||
(require "typed-syntax.rkt")
|
(require "typed-syntax.rkt"
|
||||||
|
"typed-pairof-predicate.rkt"
|
||||||
|
typed-map)
|
||||||
|
|
||||||
(define-type First-Comments
|
(define-type First-Comments
|
||||||
(Rec R (Pairof (U #f (Pairof (Syntaxof 'saved-props+srcloc)
|
(Rec R (Pairof (U #f (Pairof (Syntaxof 'saved-props+srcloc)
|
||||||
|
@ -17,6 +19,37 @@
|
||||||
(define-type Comments-After
|
(define-type Comments-After
|
||||||
(Listof ISyntax))
|
(Listof ISyntax))
|
||||||
|
|
||||||
|
(: first-comments? (→ Any Boolean : (Pairof (U #f (Pairof (Syntaxof 'saved-props+srcloc)
|
||||||
|
First-Comments))
|
||||||
|
(Listof ISyntax))))
|
||||||
|
(define (first-comments? v)
|
||||||
|
(define p? (inst pairof?
|
||||||
|
(U #f (Pairof (Syntaxof 'saved-props+srcloc)
|
||||||
|
First-Comments))
|
||||||
|
(Listof ISyntax)))
|
||||||
|
(p? v first-comments1? first-comments2?))
|
||||||
|
|
||||||
|
(: first-comments1? (→ Any Boolean : (U #f (Pairof (Syntaxof 'saved-props+srcloc)
|
||||||
|
First-Comments))))
|
||||||
|
(define (first-comments1? v)
|
||||||
|
(or (false? v)
|
||||||
|
(first-comments11? v)))
|
||||||
|
|
||||||
|
(: first-comments11? (→ Any Boolean : (Pairof (Syntaxof 'saved-props+srcloc)
|
||||||
|
First-Comments)))
|
||||||
|
(define (first-comments11? v)
|
||||||
|
(define p? (inst pairof?
|
||||||
|
(Syntaxof 'saved-props+srcloc)
|
||||||
|
First-Comments))
|
||||||
|
(p? v
|
||||||
|
(make-predicate (Syntaxof 'saved-props+srcloc))
|
||||||
|
first-comments?))
|
||||||
|
|
||||||
|
(: first-comments2? (→ Any Boolean : (Listof ISyntax)))
|
||||||
|
(define (first-comments2? v)
|
||||||
|
(and (list? v)
|
||||||
|
(andmap isyntax? v)))
|
||||||
|
|
||||||
(: with-first-comments (∀ (A) (→ ISyntax
|
(: with-first-comments (∀ (A) (→ ISyntax
|
||||||
(U #f First-Comments)
|
(U #f First-Comments)
|
||||||
ISyntax)))
|
ISyntax)))
|
||||||
|
@ -37,13 +70,13 @@
|
||||||
(: extract-first-comments (-> (Syntaxof Any) (U #f First-Comments)))
|
(: extract-first-comments (-> (Syntaxof Any) (U #f First-Comments)))
|
||||||
(define (extract-first-comments stx)
|
(define (extract-first-comments stx)
|
||||||
(define c (syntax-property stx 'first-comments))
|
(define c (syntax-property stx 'first-comments))
|
||||||
(if ((make-predicate First-Comments) c)
|
(if (first-comments? c)
|
||||||
c
|
c
|
||||||
#f))
|
#f))
|
||||||
|
|
||||||
(: extract-comments-after (-> (Syntaxof Any) (U #f Comments-After)))
|
(: extract-comments-after (-> (Syntaxof Any) (U #f Comments-After)))
|
||||||
(define (extract-comments-after stx)
|
(define (extract-comments-after stx)
|
||||||
(define c (syntax-property stx 'comments-after))
|
(define c (syntax-property stx 'comments-after))
|
||||||
(if ((make-predicate Comments-After) c)
|
(and (list? c)
|
||||||
c
|
(andmap isyntax? c)
|
||||||
#f))
|
c))
|
|
@ -1,27 +0,0 @@
|
||||||
#lang typed/racket
|
|
||||||
|
|
||||||
(require typed/racket/unsafe)
|
|
||||||
(require "untyped-cross-phase-structs-wrappers.rkt")
|
|
||||||
(unsafe-require/typed "untyped-cross-phase-structs-wrappers.rkt"
|
|
||||||
[#:struct (A) NonSexp ([v : A]) #:type-name NonSexpOf]
|
|
||||||
[#:struct (A) NonSyntax ([v : A]) #:type-name NonSyntaxOf]
|
|
||||||
[#:struct (A) Some ([v : A])])
|
|
||||||
|
|
||||||
;(require typed-racket/base-env/prims-struct)
|
|
||||||
;(dtsi* (A) NonSexp NonSexpOf ([v : A]) #:maker make-NonSexp)
|
|
||||||
|
|
||||||
(provide (struct-out NonSexp))
|
|
||||||
;(struct (A) NonSexp ([v : A]) #:type-name NonSexpOf #:constructor-name make-NonSexp)
|
|
||||||
|
|
||||||
#;(module* test typed/racket
|
|
||||||
(require (submod ".."))
|
|
||||||
(require typed/rackunit)
|
|
||||||
(check-pred procedure? NonSexp)
|
|
||||||
(check-pred NonSexp? (ann (ann (NonSexp 1) (NonSexpOf Number)) Any))
|
|
||||||
(check-not-exn
|
|
||||||
(λ ()
|
|
||||||
(ann (let ([n : (NonSexpOf Any) (NonSexp 1)])
|
|
||||||
(if (number? (NonSexp-v n))
|
|
||||||
(NonSexp-v n)
|
|
||||||
0))
|
|
||||||
Number))))
|
|
|
@ -1,47 +0,0 @@
|
||||||
(module typed-cross-phase-structs '#%kernel
|
|
||||||
(#%declare #:cross-phase-persistent)
|
|
||||||
|
|
||||||
(#%provide struct:NonSexp make-NonSexp NonSexp? NonSexp-ref)
|
|
||||||
(define-values (struct:NonSexp make-NonSexp NonSexp? NonSexp-ref NonSexp-set!)
|
|
||||||
(make-struct-type 'NonSexp ;; name
|
|
||||||
#f ;; parent
|
|
||||||
1 ;; arguments to the constructor
|
|
||||||
0 ;; auto-fields
|
|
||||||
#f ;; auto-v
|
|
||||||
'() ;; props
|
|
||||||
#f ;; inspector
|
|
||||||
#f ;; proc-spec
|
|
||||||
(list 0) ;; immutables
|
|
||||||
#f ;; guard
|
|
||||||
'NonSexp ;; constructor-name
|
|
||||||
))
|
|
||||||
|
|
||||||
(#%provide struct:NonSyntax make-NonSyntax NonSyntax? NonSyntax-ref)
|
|
||||||
(define-values (struct:NonSyntax make-NonSyntax NonSyntax? NonSyntax-ref NonSyntax-set!)
|
|
||||||
(make-struct-type 'NonSyntax ;; name
|
|
||||||
#f ;; parent
|
|
||||||
1 ;; arguments to the constructor
|
|
||||||
0 ;; auto-fields
|
|
||||||
#f ;; auto-v
|
|
||||||
'() ;; props
|
|
||||||
#f ;; inspector
|
|
||||||
#f ;; proc-spec
|
|
||||||
(list 0) ;; immutables
|
|
||||||
#f ;; guard
|
|
||||||
'NonSyntax ;; constructor-name
|
|
||||||
))
|
|
||||||
|
|
||||||
(#%provide struct:Some make-Some Some? Some-ref)
|
|
||||||
(define-values (struct:Some make-Some Some? Some-ref Some-set!)
|
|
||||||
(make-struct-type 'Some ;; name
|
|
||||||
#f ;; parent
|
|
||||||
1 ;; arguments to the constructor
|
|
||||||
0 ;; auto-fields
|
|
||||||
#f ;; auto-v
|
|
||||||
'() ;; props
|
|
||||||
#f ;; inspector
|
|
||||||
#f ;; proc-spec
|
|
||||||
(list 0) ;; immutables
|
|
||||||
#f ;; guard
|
|
||||||
'Some ;; constructor-name
|
|
||||||
)))
|
|
31
comments/typed-pairof-predicate.rkt
Normal file
31
comments/typed-pairof-predicate.rkt
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
#lang typed/racket
|
||||||
|
|
||||||
|
(provide pairof?)
|
||||||
|
|
||||||
|
(require typed/racket/unsafe)
|
||||||
|
(unsafe-require/typed racket/function
|
||||||
|
[[identity unsafe-cast-function] (∀ (A) (→ Any A))])
|
||||||
|
(define-syntax-rule (unsafe-cast v t)
|
||||||
|
((inst unsafe-cast-function t) v))
|
||||||
|
|
||||||
|
(: pairof?* (∀ (A D) (→ Any
|
||||||
|
(→ Any Boolean : A)
|
||||||
|
(→ Any Boolean : D)
|
||||||
|
Boolean)))
|
||||||
|
(define (pairof?* v a? d?)
|
||||||
|
(and (pair? v)
|
||||||
|
(a? (car v))
|
||||||
|
(d? (cdr v))))
|
||||||
|
|
||||||
|
(define pairof?
|
||||||
|
;; Circumvent https://github.com/racket/typed-racket/issues/429
|
||||||
|
(unsafe-cast pairof?*
|
||||||
|
(∀ (A D) (→ Any
|
||||||
|
(→ Any Boolean : A)
|
||||||
|
(→ Any Boolean : D)
|
||||||
|
Boolean
|
||||||
|
:
|
||||||
|
;; Circumvent
|
||||||
|
;; https://github.com/racket/typed-racket/issues/488
|
||||||
|
#:+ (Pairof A D)
|
||||||
|
#:- (! (Pairof A D))))))
|
35
comments/typed-prefab-declarations.rkt
Normal file
35
comments/typed-prefab-declarations.rkt
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
#lang typed/racket
|
||||||
|
|
||||||
|
(struct (A) NonSexp ([v : A]) #:type-name NonSexpOf)
|
||||||
|
(struct (A) NonSyntax ([v : A]) #:type-name NonSyntaxOf)
|
||||||
|
(struct (A) Some ([v : A]))
|
||||||
|
(define-type (Maybe A)
|
||||||
|
(U (Some A) #f))
|
||||||
|
|
||||||
|
(provide (struct-out NonSexp) NonSexpOf
|
||||||
|
(struct-out NonSyntax) NonSyntaxOf
|
||||||
|
(struct-out Some)
|
||||||
|
Maybe)
|
||||||
|
|
||||||
|
(module* test typed/racket
|
||||||
|
(require (submod ".."))
|
||||||
|
(require typed/rackunit)
|
||||||
|
(check-pred procedure? NonSexp)
|
||||||
|
(check-pred NonSexp? (ann (ann (NonSexp 1) (NonSexpOf Number)) Any))
|
||||||
|
(check-not-exn
|
||||||
|
(λ ()
|
||||||
|
(ann (let ([n : (NonSexpOf Any) (NonSexp 1)])
|
||||||
|
(if (number? (NonSexp-v n))
|
||||||
|
(NonSexp-v n)
|
||||||
|
0))
|
||||||
|
Number)))
|
||||||
|
|
||||||
|
(check-not-exn
|
||||||
|
(λ ()
|
||||||
|
(ann (let ([n : Any (NonSexp 1)])
|
||||||
|
(if (NonSexp? n)
|
||||||
|
(if (number? (NonSexp-v n))
|
||||||
|
(NonSexp-v n)
|
||||||
|
2)
|
||||||
|
0))
|
||||||
|
Number))))
|
|
@ -1,12 +1,12 @@
|
||||||
#lang typed/racket
|
#lang typed/racket
|
||||||
|
|
||||||
(require typed-map
|
(require typed-map
|
||||||
typed/racket/unsafe)
|
typed/racket/unsafe
|
||||||
|
"typed-prefab-declarations.rkt")
|
||||||
|
|
||||||
(provide try-any->isexp*
|
(provide try-any->isexp*
|
||||||
try-any->isexp
|
try-any->isexp
|
||||||
any->isexp+non-sexp
|
any->isexp+non-sexp)
|
||||||
(struct-out NonSexp))
|
|
||||||
|
|
||||||
(unsafe-require/typed racket/function
|
(unsafe-require/typed racket/function
|
||||||
[[identity unsafe-cast-function] (∀ (A) (→ Any A))])
|
[[identity unsafe-cast-function] (∀ (A) (→ Any A))])
|
||||||
|
@ -102,10 +102,6 @@
|
||||||
(non-sexp e)]))
|
(non-sexp e)]))
|
||||||
|
|
||||||
|
|
||||||
;; Sexp:
|
|
||||||
|
|
||||||
(struct (A) NonSexp ([value : A]) #:type-name NonSexpOf)
|
|
||||||
|
|
||||||
(: any->isexp+non-sexp (→ Any (Sexpof (NonSexpOf Any))))
|
(: any->isexp+non-sexp (→ Any (Sexpof (NonSexpOf Any))))
|
||||||
(define (any->isexp+non-sexp e)
|
(define (any->isexp+non-sexp e)
|
||||||
(let*-values ([(e* status) (try-any->isexp*
|
(let*-values ([(e* status) (try-any->isexp*
|
||||||
|
@ -122,13 +118,13 @@
|
||||||
" not return #f."))])))
|
" not return #f."))])))
|
||||||
|
|
||||||
|
|
||||||
(: try-any->isexp (→ Any (U (List Any) #f)))
|
(: try-any->isexp (→ Any (Maybe Sexp)))
|
||||||
(define (try-any->isexp e)
|
(define (try-any->isexp e)
|
||||||
(let*-values ([(e* status) (try-any->isexp*
|
(let*-values ([(e* status) (try-any->isexp*
|
||||||
e
|
e
|
||||||
(λ (non-sexp-e)
|
(λ (non-sexp-e)
|
||||||
(values #f #f)))])
|
(values #f #f)))])
|
||||||
(case status
|
(case status
|
||||||
[(unmodified) (list e)]
|
[(unmodified) (Some (unsafe-cast e Sexp))]
|
||||||
[(modified) (list e*)]
|
[(modified) (Some e*)]
|
||||||
[(#f) #f])))
|
[(#f) #f])))
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
|
|
||||||
(require typed-map
|
(require typed-map
|
||||||
typed/racket/unsafe
|
typed/racket/unsafe
|
||||||
"typed-syntax-convert.rkt"
|
"typed-prefab-declarations.rkt")
|
||||||
"maybe.rkt")
|
|
||||||
(unsafe-require/typed racket/base
|
(unsafe-require/typed racket/base
|
||||||
[[datum->syntax datum->syntax*]
|
[[datum->syntax datum->syntax*]
|
||||||
(∀ (A) (→ (Syntaxof Any)
|
(∀ (A) (→ (Syntaxof Any)
|
||||||
|
@ -18,16 +18,14 @@
|
||||||
ISyntax-E
|
ISyntax-E
|
||||||
ISyntax/Non
|
ISyntax/Non
|
||||||
ISyntax/Non-E
|
ISyntax/Non-E
|
||||||
(struct-out NonSyntax)
|
any->isyntax/non
|
||||||
;(struct-out NonSexp) ; already exported in typed-syntax-convert.rkt
|
syntax->isyntax/non
|
||||||
NonSyntaxOf
|
any->isyntax/non-e
|
||||||
NonSexpOf
|
|
||||||
any->isyntax+non
|
|
||||||
syntax->isyntax+non
|
|
||||||
any->isyntax-e+non
|
|
||||||
try-any->isyntax
|
try-any->isyntax
|
||||||
try-syntax->isyntax
|
try-syntax->isyntax
|
||||||
try-any->isyntax-e)
|
try-any->isyntax-e
|
||||||
|
isyntax?
|
||||||
|
isyntax-e?)
|
||||||
|
|
||||||
(unsafe-require/typed racket/function
|
(unsafe-require/typed racket/function
|
||||||
[[identity unsafe-cast-function] (∀ (A) (→ Any A))])
|
[[identity unsafe-cast-function] (∀ (A) (→ Any A))])
|
||||||
|
@ -68,9 +66,6 @@
|
||||||
(Pairof (ISyntaxOf A B) L))))
|
(Pairof (ISyntaxOf A B) L))))
|
||||||
(Vectorof (ISyntaxOf A B))))
|
(Vectorof (ISyntaxOf A B))))
|
||||||
|
|
||||||
(struct (A) NonSyntax ([value : A]) #:type-name NonSyntaxOf)
|
|
||||||
(struct (A) NonSexp ([value : A]) #:type-name NonSexpOf)
|
|
||||||
|
|
||||||
(define-type ISyntax/Non (ISyntaxOf (NonSyntaxOf Any) (NonSexpOf Any)))
|
(define-type ISyntax/Non (ISyntaxOf (NonSyntaxOf Any) (NonSexpOf Any)))
|
||||||
(define-type ISyntax/Non-E (ISyntaxOf-E (NonSyntaxOf Any) (NonSexpOf Any)))
|
(define-type ISyntax/Non-E (ISyntaxOf-E (NonSyntaxOf Any) (NonSexpOf Any)))
|
||||||
|
|
||||||
|
@ -254,8 +249,8 @@
|
||||||
[else
|
[else
|
||||||
(nsexp e)]))
|
(nsexp e)]))
|
||||||
|
|
||||||
(: any->isyntax+non (→ Any ISyntax/Non))
|
(: any->isyntax/non (→ Any ISyntax/Non))
|
||||||
(define (any->isyntax+non e)
|
(define (any->isyntax/non e)
|
||||||
(define e*+status
|
(define e*+status
|
||||||
(any->isyntax* e
|
(any->isyntax* e
|
||||||
(λ (n) (cons (NonSyntax n) 'modified))
|
(λ (n) (cons (NonSyntax n) 'modified))
|
||||||
|
@ -264,8 +259,8 @@
|
||||||
(car e*+status)
|
(car e*+status)
|
||||||
(error "Got #f from any->isyntax* with handlers not returning #f")))
|
(error "Got #f from any->isyntax* with handlers not returning #f")))
|
||||||
|
|
||||||
(: syntax->isyntax+non (→ (Syntaxof Any) (Syntaxof ISyntax/Non-E)))
|
(: syntax->isyntax/non (→ (Syntaxof Any) (Syntaxof ISyntax/Non-E)))
|
||||||
(define (syntax->isyntax+non stx)
|
(define (syntax->isyntax/non stx)
|
||||||
(define e*+status
|
(define e*+status
|
||||||
(syntax->isyntax* stx
|
(syntax->isyntax* stx
|
||||||
(λ (n) (cons (NonSyntax n) 'modified))
|
(λ (n) (cons (NonSyntax n) 'modified))
|
||||||
|
@ -274,8 +269,8 @@
|
||||||
(car e*+status)
|
(car e*+status)
|
||||||
(error "Got #f from any->isyntax* with handlers not returning #f")))
|
(error "Got #f from any->isyntax* with handlers not returning #f")))
|
||||||
|
|
||||||
(: any->isyntax-e+non (→ Any ISyntax/Non-E))
|
(: any->isyntax/non-e (→ Any ISyntax/Non-E))
|
||||||
(define (any->isyntax-e+non e)
|
(define (any->isyntax/non-e e)
|
||||||
(define e*+status
|
(define e*+status
|
||||||
(any->isyntax-e* e
|
(any->isyntax-e* e
|
||||||
(λ (n) (cons (NonSyntax n) 'modified))
|
(λ (n) (cons (NonSyntax n) 'modified))
|
||||||
|
@ -312,4 +307,22 @@
|
||||||
(λ (n) Result#f)))
|
(λ (n) Result#f)))
|
||||||
(if (cdr e*+status)
|
(if (cdr e*+status)
|
||||||
(Some (car e*+status))
|
(Some (car e*+status))
|
||||||
#f))
|
#f))
|
||||||
|
|
||||||
|
(define isyntax?
|
||||||
|
(unsafe-cast (λ ([e : Any]) : Boolean
|
||||||
|
(define e*+status
|
||||||
|
((inst any->isyntax* Nothing Nothing) e
|
||||||
|
(λ (n) Result#f)
|
||||||
|
(λ (n) Result#f)))
|
||||||
|
(eq? (cdr e*+status) 'unmodified))
|
||||||
|
(→ Any Boolean : ISyntax)))
|
||||||
|
|
||||||
|
(define isyntax-e?
|
||||||
|
(unsafe-cast (λ ([e : Any]) : Boolean
|
||||||
|
(define e*+status
|
||||||
|
((inst any->isyntax-e* Nothing Nothing) e
|
||||||
|
(λ (n) Result#f)
|
||||||
|
(λ (n) Result#f)))
|
||||||
|
(eq? (cdr e*+status) 'unmodified))
|
||||||
|
(→ Any Boolean : ISyntax-E)))
|
|
@ -4,19 +4,26 @@
|
||||||
try-any->isexp
|
try-any->isexp
|
||||||
any->isexp+non-sexp
|
any->isexp+non-sexp
|
||||||
CoreSexp
|
CoreSexp
|
||||||
|
isyntax?
|
||||||
|
isyntax-e?
|
||||||
ISyntax
|
ISyntax
|
||||||
ISyntax-E
|
ISyntax-E
|
||||||
ISyntaxOf
|
ISyntaxOf
|
||||||
ISyntaxOf-E
|
ISyntaxOf-E
|
||||||
ISyntax/Non
|
ISyntax/Non
|
||||||
ISyntax/Non-E
|
ISyntax/Non-E
|
||||||
NonSyntaxOf
|
any->isyntax/non
|
||||||
NonSexpOf
|
syntax->isyntax/non
|
||||||
any->isyntax ;; TODO: make wrappers for these, which discard the second value
|
any->isyntax/non-e
|
||||||
syntax->isyntax
|
try-any->isyntax
|
||||||
any->isyntax-e)
|
try-syntax->isyntax
|
||||||
|
try-any->isyntax-e
|
||||||
|
NonSexp NonSexp? NonSexp-v NonSexpOf
|
||||||
|
NonSyntax NonSyntax? NonSyntax-v NonSyntaxOf
|
||||||
|
Some Some? Some-v)
|
||||||
|
|
||||||
(require "typed-syntax-convert.rkt"
|
(require "typed-syntax-convert.rkt"
|
||||||
"typed-syntax-convert2.rkt"
|
"typed-syntax-convert2.rkt"
|
||||||
"typed-syntax-predicate.rkt")
|
"typed-syntax-predicate.rkt"
|
||||||
|
"typed-prefab-declarations.rkt")
|
||||||
|
|
||||||
|
|
|
@ -1,48 +0,0 @@
|
||||||
#lang racket
|
|
||||||
|
|
||||||
(require "typed-cross-phase-structs.rkt"
|
|
||||||
(for-syntax racket/struct-info))
|
|
||||||
|
|
||||||
(define-syntax-rule (define+provide-struct-wrapper-single-field
|
|
||||||
[struct:S make-S S? S-ref S field S-field S-struct-info]
|
|
||||||
...)
|
|
||||||
(begin
|
|
||||||
(begin
|
|
||||||
(provide (struct-out S))
|
|
||||||
(define S-field
|
|
||||||
(values (make-struct-field-accessor S-ref 0 'field)))
|
|
||||||
(begin-for-syntax
|
|
||||||
(struct S-struct-info ()
|
|
||||||
#:transparent
|
|
||||||
#:property prop:struct-info
|
|
||||||
(λ (self)
|
|
||||||
(list #'struct:S
|
|
||||||
#'make-S
|
|
||||||
#'S?
|
|
||||||
(list #'S-field) ;; in reverse order
|
|
||||||
(list #f) ;; in reverse order
|
|
||||||
#t))
|
|
||||||
#:property prop:set!-transformer
|
|
||||||
(lambda (stx)
|
|
||||||
(syntax-case stx (set!)
|
|
||||||
[(set! id _)
|
|
||||||
(raise-syntax-error 'set! "Cannot mutate struct identifier" stx)]
|
|
||||||
[id
|
|
||||||
(identifier? #'id)
|
|
||||||
#'make-S]
|
|
||||||
[(id . args)
|
|
||||||
(identifier? #'id)
|
|
||||||
(syntax/loc stx
|
|
||||||
(make-S . args))]))))
|
|
||||||
(define-syntax S (S-struct-info)))
|
|
||||||
...))
|
|
||||||
|
|
||||||
(define+provide-struct-wrapper-single-field
|
|
||||||
[struct:NonSexp make-NonSexp NonSexp? NonSexp-ref
|
|
||||||
NonSexp v NonSexp-v NonSexp-struct-info]
|
|
||||||
|
|
||||||
[struct:NonSyntax make-NonSyntax NonSyntax? NonSyntax-ref
|
|
||||||
NonSyntax v NonSyntax-v NonSyntax-struct-info]
|
|
||||||
|
|
||||||
[struct:Some make-Some Some? Some-ref
|
|
||||||
Some v Some-v Some-struct-info])
|
|
Loading…
Reference in New Issue
Block a user