1.11 Experimental
The following facilities are experimental.
1.11.1 Contracts for Macro Sub-expressions
This module is deprecated; it reprovides expr/c for backward
compatibility.
1.11.2 Contracts for Syntax Classes
|
|
syntax-class-contract | | = | | (syntax-class/c (mandatory-arg ...)) | | | | | | | | | | | | arg | | = | | contract-expr | | | | | | keyword contract-expr |
|
|
|
Provides the syntax class (or splicing syntax class)
syntax-class-id with the given contracts imposed on its
formal parameters.
1.11.3 Reflection
A syntax class can be reified into a run-time value, and a reified
syntax class can be used in a pattern via the ~reflect and
~splicing-reflect pattern forms.
Reifies the syntax class named syntax-class-id as a run-time
value. The same form also handles splicing syntax classes. Syntax
classes with the #:no-delimit-cut option cannot be reified.
Returns #t if x is a reified (normal) syntax class
or a reified splicing syntax class, respectively.
Returns the reified syntax class’s attributes.
Partially applies the reified syntax class to the given arguments. If
more arguments are given than the reified syntax class accepts, an
error is raised.
S-pattern | | = | | .... |
| | | | | (~reflect var-id (reified-expr arg-expr ...) maybe-attrs) |
| | | | |
H-pattern | | = | | .... |
| | | | | |
(~reflect var-id (reified-expr arg-expr ...) maybe-attrs) |
|
maybe-attrs | | = | | | | | | | | #:attributes (attr-arity-decl ...) |
|
Like ~var, except that the syntax class position is an
expression evaluating to a reified syntax object, not a syntax class
name, and the attributes bound by the reified syntax class (if any)
must be specified explicitly.
Like ~reflect but for reified splicing syntax classes.
Examples:
|
|
> (define r-nat> (reify-syntax-class nat>)) |
> (define r-nat/mult (reify-syntax-class nat/mult)) |
|
> (partition/r #'(1 2 3 4 5) r-nat> 3) |
#<syntax:eval:5:0 ((4 5) (1 2 3))> |
> (partition/r #'(1 2 3 4 5) r-nat/mult 2) |
#<syntax:eval:5:0 ((2 4) (1 3 5))> |
|
> (bad-attrs r-nat>) |
#<syntax 3> |
> (bad-attrs r-nat/mult) |
reflect-syntax-class: reified syntax-class is missing |
declared attribute `diff' |
1.11.4 Procedural Splicing Syntax Classes
Defines a splicing syntax via a procedural parser.
The parser procedure is given two arguments, the syntax to parse and a
failure procedure. To signal a successful parse, the parser procedure
returns a list of N+1 elements, where N is the
number of attributes declared by the splicing syntax class. The first
element is the size of the prefix consumed. The rest of the list
contains the values of the attributes.
To indicate failure, the parser calls the failure procedure with an
optional message argument.
1.11.5 Ellipsis-head Alternative Sets
Unlike single-term patterns and head patterns, ellipsis-head patterns
cannot be encapsulated by syntax classes, since they describe not only
sets of terms but also repetition constraints.
This module provides ellipsis-head alternative sets,
reusable encapsulations of ellipsis-head patterns.
Defines
name as an ellipsis-head alternative set. Using
name (via
~eh-var) in an ellipsis-head pattern is
equivalent to including each of the alternatives in the pattern via
~alt, except that the attributes bound by the alternatives
are prefixed with the name given to
~eh-var.
Unlike syntax classes, ellipsis-head alternative sets must be defined
before they are referenced, and they do not delimit cuts (use
~delimit-cut instead).
EH-pattern | | = | | .... |
| | | | | (~eh-var name eh-alternative-set-id) |
(~eh-var name eh-alternative-set-id) |
Includes the alternatives of eh-alternative-set-id, prefixing
their attributes with name.
Examples:
|
|
> (parse/options #'(m #:a 1 #:b 2 #:b 3)) |
#<syntax:eval:12:0 (1 (2 3))> |
> (parse/options #'(m #:a 1 #:a 2)) |
m: too many occurrences of #:a option |
at: () |
within: (m #:a 1 #:a 2) |
in: (m #:a 1 #:a 2) |
|
> (parse/more-options #'(m #:a 1 #:b 2 #:c 3 4 #:c 5 6)) |
#<syntax:eval:15:0 (1 (2) ((3 4) (5 6)))> |
|
|
#<syntax:eval:18:0 (1 (2) ((3 4) (5 6)))> |
1.11.6 Syntax Class Specialization
(define-syntax-class/specialize header syntax-class-use)
|
|
header | | = | | id | | | | | | (id . kw-formals) | | | | | | syntax-class-use | | = | | target-stxclass-id | | | | | | (target-stxclass-id arg ...) |
|
Defines id as a syntax class with the same attributes,
options (eg, #:commit, #:no-delimit-cut), and
patterns as target-stxclass-id but with the given
args supplied.
Examples:
1.11.7 Syntax Templates
Equivalent to
~? and
~@, respectively.
Defines
metafunction-id as a
template
metafunction. A metafunction application in a
syntax
or
template expression is evaluated by
applying the metafunction to the result of processing the “argument”
part of the template.
Examples:
|
> (template (join a b c)) |
#<syntax:eval:23:0 abc> |
|
#<syntax:eval:24:0 ((a tmp-a) (b tmp-b) (c tmp-c))> |
Metafunctions are useful for performing transformations in contexts
where macro expansion does not occur, such as binding occurrences. For
example:
|
'(let-values (((posn? make-posn posn-x posn-y) (make-struct-type ___))) ___) |
If join were defined as a macro, it would not be usable in
the context above; instead, let-values would report an
invalid binding list.