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
Description of existing behaviour:
Currently parser generates full parsing forest only in case, if root production rule doesn't have alternatives.
Described specificity requires, that root production rule should be defined without alternatives. For example:
Root -> X X -> A | B | C A -> ... B -> ... ...
On the other hand, parser will generate only subset of the parsing forest - if grammar will be expressed in the following form:
Root -> A | B | C A -> ... B -> ... ...
TODO: This limitation can be relaxed by careful refactoring of existing code (no algorithmic changes needed).
The text was updated successfully, but these errors were encountered:
I think it would be helpful if this info was provided in the README.
Sorry, something went wrong.
No branches or pull requests
Description of existing behaviour:
Currently parser generates full parsing forest only in case, if root production rule doesn't have alternatives.
Described specificity requires, that root production rule should be defined without alternatives. For example:
On the other hand, parser will generate only subset of the parsing forest - if grammar will be expressed in the following form:
TODO:
This limitation can be relaxed by careful refactoring of existing code (no algorithmic changes needed).
The text was updated successfully, but these errors were encountered: