Open
Description
Question / Feature Request: Is there any way to parse a specific rule as the starting parser? For example, if I have:
%start Expr
%%
Expr -> ...;
Int -> ...;
%%
I also want to be able to parse a string as Int
, not just Expr
.
(I'm trying to port my parser from LALRPOP to lrpar (mainly because of the operator precedence feature) which exposes a parser for any rule prefixed with the keyword pub
.)