in reply to Parse::RecDescent: autoactions and precompiled grammars
To answer your question... I'm assuming you are using the command line approach to precompilation suggested in the perldoc:
perl -MParse::RecDescent - grammar Yet::Another::GrammarIf I read the docs correctly, you could write a little script instead. Then you can control all of the flag variables:
Philuse Parse::RecDescent; $::RD_AUTOACTION = ...; Parse::RecDescent->Precompile( $grammar_string, 'Your::Namespace::GrammarModule' );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Parse::RecDescent: autoactions and precompiled grammars
by ikegami (Patriarch) on Apr 10, 2006 at 15:19 UTC | |
|
Re^2: Parse::RecDescent: autoactions and precompiled grammars
by braden (Novice) on Apr 10, 2006 at 16:00 UTC |