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
BNFC (haskell) accepts totally empty input files, but not
;
It should also allow empty declarations consisting just of a ;. This would allow a style like
-- comment ; Rule. S ::= P -- comment ; Rule2. S ::= Q
where semicolons are aligned at the first column.
The text was updated successfully, but these errors were encountered:
This can be fixed by defining custom Def lists with the extra rule:
Def
_. [Def] ::= ";" [Def] ;
Sorry, something went wrong.
6cb6e92
andreasabel
No branches or pull requests
BNFC (haskell) accepts totally empty input files, but not
It should also allow empty declarations consisting just of a
;
.This would allow a style like
where semicolons are aligned at the first column.
The text was updated successfully, but these errors were encountered: