syntax-error
-- r7rs
Definition syntax
;
syntax-error
(from vonuvoli
);Syntax keywords:
Syntax variants:
(_ message)
(_ message argument |...|)
scheme:base
-- (scheme base)
;scheme
-- (scheme)
;(syntax-error <message> <args> ...)
syntax-error
behaves similarly toerror
except that implementations with an expansion pass separate from evaluation should signal an error as soon assyntax-error
is expanded. This can be used as asyntax-rules
<template>
for a<pattern>
that is an invalid use of the macro, which can provide more descriptive error messages.<message>
is a string literal, and<args>
arbitrary expressions providing additional information. Applications cannot count on being able to catch syntax errors with exception handlers or guards.(define-syntax simple-let (syntax-rules () ((_ (head ... ((x . y) val) . tail) body1 body2 ...) (syntax-error "expected an identifier but got" (x . y))) ((_ ((name val) ...) body1 body2 ...) ((lambda (name ...) body1 body2 ...) val ...))))
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.