1.8 Library Syntax Classes and Literal Sets
1.8.1 Syntax Classes
syntax class
syntax class
syntax class
syntax class
syntax class
syntax class
syntax class
syntax class
syntax class
syntax class
syntax class
syntax class
Added in version 6.9.0.4 of package base.
syntax class
syntax class
syntax class
syntax class
syntax class
(static predicate description) → syntax class
predicate : (-> any/c any/c) description : (or/c string? #f)
When used outside of the dynamic extent of a macro transformer (see syntax-transforming?), matching fails.
The attribute value contains the value the name is bound to.
If matching succeeds, static additionally adds the matched identifier to the current syntax-parse state under the key 'literals using syntax-parse-state-cons!, in the same way as identifiers matched using #:literals or ~literal.
Changed in version 6.90.0.29 of package base: Changed to add matched identifiers to the syntax-parse state under the key 'literals.
syntax class
(expr/c contract-expr [ #:arg? arg? #:positive pos-blame #:negative neg-blame #:name expr-name #:macro macro-name #:context context]) → syntax class contract-expr : syntax? arg? : any/c = #t
pos-blame : (or/c syntax? string? module-path-index? 'from-macro 'use-site 'unknown) = 'from-macro
neg-blame : (or/c syntax? string? module-path-index? 'from-macro 'use-site 'unknown) = 'use-site expr-name : (or/c identifier? string? symbol?) = #f macro-name : (or/c identifier? string? symbol?) = #f context : (or/c syntax? #f) = determined automatically
The positive blame represents the obligations of the macro imposing
the contract—
If the argument is a string, it is used directly as the blame label.
If the argument is syntax, its source location is used to produce the blame label.
If the argument is a module path index, its resolved module path is used.
If the argument is 'from-macro, the macro is inferred from either the macro-name argument (if macro-name is an identifier) or the context argument, and the module where it is defined is used as the blame location. If neither an identifier macro-name nor a context argument is given, the location is "unknown".
If the argument is 'use-site, the module being expanded is used.
If the argument is 'unknown, the blame label is "unknown".
The macro-name argument is used to determine the macro’s binding, if it is an identifier. If expr-name is given, macro-name is also included in the contract error message. If macro-name is omitted or #f, but context is a syntax object, then macro-name is determined from context.
If expr-name is not #f, it is used in the contract’s error message to describe the expression the contract is applied to.
The context argument is used, when necessary, to infer the macro name for the negative blame party and the contract error message. The context should be either an identifier or a syntax pair with an identifier in operator position; in either case, that identifier is taken as the macro ultimately requesting the contract wrapping.
See Contracts on Macro Sub-expressions for an example.
Important: Make sure when using expr/c to use the c attribute. The expr/c syntax class does not change how pattern variables are bound; it only computes an attribute that represents the checked expression.
Changed in version 7.2.0.3 of package base: Added the #:arg? keyword argument and changed the default values and interpretation of the #:positive and #:negative arguments.
1.8.2 Literal Sets
syntax
Note that the literal-set uses the names #%plain-lambda and #%plain-app, not lambda and #%app.
1.8.3 Function Headers
(require syntax/parse/lib/function-header) | |
package: base |