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
Currently, using the following construct (see Example_productionNotWildcard in amod_productions_test.go):
match { goal [foo: ?blat !*] }
will produce this parse error (via participle):
ERROR: unexpected token "!" (expected "]") (line 9, col 27)
Need to investigate why we get this strange message. The grammar is clear:
PatternSlotItem ::= '!'? ( 'nil' | ident | number | patternvar ) | patternwildcard
I would expect an error more along the lines:
ERROR: unexpected token "*" (expected "nil | ident| number | patternvar") (line 9, col 27)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, using the following construct (see Example_productionNotWildcard in amod_productions_test.go):
will produce this parse error (via participle):
Need to investigate why we get this strange message. The grammar is clear:
I would expect an error more along the lines:
The text was updated successfully, but these errors were encountered: