|
|
|
|
|
by _old_dude_
64 days ago
|
|
Parser generators are great in Python (Lark for me) so you can iterate fast and get a runtime spec of your grammar. A hand-written recursive descent parser is something you do later when you start to industrialize your code, to get better error messages, make the parser incremental, etc. Bison/ANTLR are code generators, they do not fit well in that model. |
|