We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Give an error if sub-pattern that expects expression gets statement matcher.
For example, (+ a b) expects both a and b to be expressions. Pattern like (+ (if ...) (for ...)) will never match.
(+ a b)
a
b
(+ (if ...) (for ...))
Error should be given at compile-time and read like:
compile pattern: "(+ (block 1) 2)" error: "arg 0: (block 1) is not an expression in (+ (block 1) 2)"
The exact error message may differ.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Give an error if sub-pattern that expects expression gets statement matcher.
For example,
(+ a b)
expects botha
andb
to be expressions.Pattern like
(+ (if ...) (for ...))
will never match.Error should be given at compile-time and read like:
The exact error message may differ.
The text was updated successfully, but these errors were encountered: