Hello, i am investigating peg to parse the grammar of a programming language i am working on.
Is there any way to store the generated AST in a flat Vec instead of building it up with boxes?
The documentation says that rust actions must be deterministic and must not have side effects, is this not possible because of this? Any "workarounds"?
Thanks in advance and have a nice day ::)