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
In several grammars they refer to EOI in the lexer, something like:
EOI
<xq,xe,xus><<EOF>> { yyerror("unterminated quoted string"); } ... <xb><<EOF>> { yyerror("unterminated bit string literal"); } ... <*><<EOF>> return 'EOF'; ... <<EOF>> { SET_YYLLOC(); yyterminate(); }
How to use/access the EOI through a grammar ?
The text was updated successfully, but these errors were encountered:
I once added <<EOF>> support, but it didn't work well. Harmut suggested removing it as 'nobody needs that feature' or some-such.
Let me think about it again with the benefit of greater experience.
Sorry, something went wrong.
Can you point it out in git history ?
git
This pre-github. The first proper release was in 2006 (I think it was on CodeProject originally) and it was committed to github in August 2012.
No branches or pull requests
In several grammars they refer to
EOI
in the lexer, something like:How to use/access the
EOI
through a grammar ?The text was updated successfully, but these errors were encountered: