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
Here is a simplified grammar demonstrating the problem:
grammar T; s : a | 'x'; a : 'a' s ('b' s)?;
No output for input axbx (correct) No output for input x (correct)
axbx
x
Output for input ax (unexpected)
ax
line 1:2 no viable alternative at input '<EOF>'
Output for input aaxbx (unexpected)
aaxbx
line 1:5 no viable alternative at input '<EOF>'
The text was updated successfully, but these errors were encountered:
EOF cannot follow s. would need s' : s EOF ; for that. updating unit test TestParserExec.testOptional
Sorry, something went wrong.
8c03dba
Merge pull request #41 from RedTailedHawk/master
f669c48
Fixed typo: self._buildParseTrees --> self.buildParseTrees
Merge pull request #41 from FloorGoddijn/master
c9f85f1
cpp runtime: updated the vs2013 project reflecting the last changes
Merge pull request antlr#41 from tunnelvisionlabs/use-new-generator
88e74d6
Update the code generator for ANTLR XPath lexer
Merge pull request antlr#41 from brianguertin/native
816cbfc
Implement Kotlin/native variant
No branches or pull requests
Here is a simplified grammar demonstrating the problem:
No output for input
axbx
(correct)No output for input
x
(correct)Output for input
ax
(unexpected)Output for input
aaxbx
(unexpected)The text was updated successfully, but these errors were encountered: