Say I have this in BNF:
a ::= b {c}
| d {e}
Is there any way to translate to Gold-Parser? Without breaking it up like this:
<a> ::= <b> <c>
<c> ::=
| <c> terminal
Side Note: If anybody has a better title/more tags, please edit it, thanks!