-
Parser combinator libraries, like our very own `miniparsec`, are often vulnerable to left-recursion:
> **Expressions with left recursion cannot be encoded by recursive descent parsers and will dive…
-
Currently the parser is a naive recursive descent parser. It would be much better to have the parser implement a more efficient algorithm like the packrat parser.
Would also be good to include benc…
-
create a recursive descent parser to use in tutorials
quoha updated
11 years ago
-
https://python3-cookbook.readthedocs.io/zh_CN/latest/c02/p19_writing_recursive_descent_parser.html
-
I was trying to run some basic grammar that had some left recursion and realized that the parser doesn't seem to support that. Is there a reason for that/would it be possible for the parser to support…
-
I am working on a recursive descent parser for Modelica written in Julia in order to automatically translate more Modelica models as test cases for Modia.
-
The recursive-descent parser I have in place works, but it's kind of clunky.
We need to either move to an auto-generated parser (ply or PEG) or some sort of parser-combinators library.
I've run …
-
It would be nice if we can support multiple --attr arguments. The question becomes, should they be combined with and or or? As an alternative, perhaps we could make --attr support an expression synt…
-
Add items of this kind as comments to this issue.
-
```
matcher=" or "
```