Is it possible to compile a single PGE grammar against multiple sets of actions to get multiple different parsers? This would be good for Lisp-like languages where you have one parser that spits out PIR code and a parser that is invoked for "(read)" calls and spits out s-expression objects. Both would work off the same grammar, but the different actions allow for different outputs from the parsers.
- Istarex