I added the line
Parse::RecDescent->Precompile($grammar, "Grammar");
and looked at the source of the parser that was created. @args is simply never set! It's simply inherited down from the parent production as if [ $item[2] ] wasn't there. So I tried to see if it worked with simpler expressions:

# NO WORKS: funcdefine: /function/i name "(" parameter[ $item[2] ](s? /,/) ")" "{" # WORKS: funcdefine: /function/i name "(" parameter[ $item[2] ](s?) ")" "{" # WORKS: funcdefine: /function/i name "(" parameter[ $item[2] ] ")" "{"

So it's a bug in Parse::RecDescent in the (... /,/) code. btw, (... /,/) is implemented as a <leftop>, so you could try using <leftop> directly (might not work), or try using the code said to be equivalent to <leftop> in the docmentaton (will definitely work), or use my little hack below (will definitely work).

# HACKED TO WORK: functiondefine: /function/i name "(" {@arg=($item[2]);1} parameter(s? /,/) ")" "{"

I only renamed functiondefine above so that the lines wouldn't wrap.


In reply to Re: Problem with Parse::RecDescent and subrule arguments by ikegami
in thread Problem with Parse::RecDescent and subrule arguments by richard5mith

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.