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 ANTLR, you can have direct left recursive,
expression : outerAttribute+ expression # AttributedExpression // technical, remove left recursive | literalExpression # LiteralExpression_ | pathExpression # PathExpression_ | expression '.' pathExprSegment '(' callParams? ')' # MethodCallExpression // 8.2.10 | expression '.' identifier # FieldExpression // 8.2.11 | expression '.' tupleIndex # TupleIndexingExpression // 8.2.7 ...
which makes it easy to implement any expression with precedence
The text was updated successfully, but these errors were encountered:
duplicate of #460
Sorry, something went wrong.
No branches or pull requests
In ANTLR, you can have direct left recursive,
which makes it easy to implement any expression with precedence
The text was updated successfully, but these errors were encountered: