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
layoutOpen
LBNF file:
P. Decl ::= "private" "{" [Decl] "}" ; separator Decl ";" ; layout "private" ;
Input:
private private private {} -- should work
This is reconstructed as
private { ; private {} private {} -- missing semicolon }
The problem is that the following code does not check whether a layoutSep needs to be inserted:
layoutSep
bnfc/source/src/BNFC/Backend/Haskell/CFtoLayout.hs
Lines 103 to 105 in e34f1b8
The text was updated successfully, but these errors were encountered:
c3ddb7b
andreasabel
No branches or pull requests
LBNF file:
Input:
This is reconstructed as
The problem is that the following code does not check whether a
layoutSep
needs to be inserted:bnfc/source/src/BNFC/Backend/Haskell/CFtoLayout.hs
Lines 103 to 105 in e34f1b8
The text was updated successfully, but these errors were encountered: