1.9 Unwindable State
procedure
(syntax-parse-state-ref key [default]) → any/c
key : any/c default : default/c = (lambda () (error ....))
procedure
(syntax-parse-state-set! key value) → void?
key : any/c value : any/c
procedure
(syntax-parse-state-update! key update [ default]) → void? key : any/c update : (-> any/c any/c) default : default/c = (lambda () (error ....))
procedure
(syntax-parse-state-cons! key value [default]) → void?
key : any/c value : any/c default : default/c = null
The state can be updated only within ~do patterns (or #:do blocks). In addition, syntax-parse automatically adds identifiers that match literals (from ~literal patterns and literals declared with #:literals, but not from ~datum or #:datum-literals) under the key 'literals.
> (define-syntax-class cond-clause #:literals (=> else) (pattern [test:expr => ~! answer:expr ...]) (pattern [else answer:expr ...]) (pattern [test:expr answer:expr ...]))
> (syntax-parse #'(cond [A => B] [else C]) [(_ c:cond-clause ...) (syntax-parse-state-ref 'literals null)]) '(#<syntax:eval:2:0 else> #<syntax:eval:2:0 =>>)
Added in version 6.11.0.4 of package base.
procedure
(syntax-parse-track-literals stx [ #:introduce? introduce?]) → syntax? stx : syntax? introduce? : any/c = #t
Due to the way syntax-parse automatically adds identifiers that match literals to the state under the key 'literals, as described in the documentation for syntax-parse-state-ref, syntax-parse-track-literals can be used to automatically add any identifiers used as literals to the 'disappeared-use property.
If syntax-parse-track-literals is called within the dynamic extent of a syntax transformer (see syntax-transforming?), introduce? is not #f, and the value in the current syntax-parse state under the key 'literals is a list, then syntax-local-introduce is applied to any identifiers in the list before they are added to stx’s 'disappeared-use property.
Most of the time, it is unnecessary to call this function directly. Instead, the #:track-literals option should be provided to syntax-parse, which will automatically call syntax-parse-track-literals on syntax-valued results.
> (define-syntax-class cond-clause #:literals (=> else) (pattern [test:expr => ~! answer:expr ...]) (pattern [else answer:expr ...]) (pattern [test:expr answer:expr ...]))
> (syntax-property (syntax-parse #'(cond [A => B] [else C]) [(_ c:cond-clause ...) (syntax-parse-track-literals #'#f)]) 'disappeared-use) '(#<syntax:eval:4:0 else> #<syntax:eval:4:0 =>>)
Added in version 6.90.0.29 of package base.