![]() |
|
Problems? Is your data what you think it is? | |
PerlMonks |
Left-associative binary operators in Parse::RecDescentby samtregar (Abbot) |
on Dec 14, 2004 at 14:27 UTC ( #414823=perlquestion: print w/replies, xml ) | Need Help?? |
samtregar has asked for the wisdom of the Perl Monks concerning the following question:
Hello all. I'm working on a hairy parsing problem in HTML::Template::Expr and I'm not making much progress. In case you're not familiar, HTML::Template::Expr is an add-on to HTML::Template which adds basic expression support to the templating language. Stuff like:
All the above expressions (and a lot more) work just fine. I parse them with a Parse::RecDescent grammar which produces a tree. Executing the tree is a piece of cake. Now I want to support:
But that won't parse with my grammar. The way I have it setup each || requires exactly two items and must be enclosed in parens unless it's on the outer-most scope. The outer-most scope is special because my code will add an enclosing () if none is present. To do three conditions this is required:
I've been hacking on the grammar all morning but nothing's working. I'm sure it's got something to do with leftop but what exactly is beyond me. If anyone could help I'd be greatly appreciative! Here's the grammar, which you can also find in the latest version of the module:
Thanks!
PS: I'd also be interested in a way to remove the need for parens entirely ("n == 10 || n == 50") which seems like it could be the same problem...
Back to
Seekers of Perl Wisdom
|
|