-
Notifications
You must be signed in to change notification settings - Fork 155
New issue
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
Stack overflow #93
Comments
Hmm... |
It does, it's followed by |
Code to reproduce the bug: @BuildParseTree
public class BugParser extends BaseParser<Object>
{
Rule Root()
{
Var<Object> var = new Var<>();
return Expr(var);
}
Rule Expr(Var<Object> var)
{
return SubExpr(var);
}
Rule SubExpr(Var<Object> var)
{
return Sequence('(', Expr(var), ')');
}
} |
Ok, thank you! |
Running into similar issues, any news? |
Same for me. |
Exception:
What's wrong? Am I missing something important?
The text was updated successfully, but these errors were encountered: