Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm somewhat new to YACC and have a question. I'm trying to extend the PHP syntax on the foreach() token, but ran into a problem where I don't know how to reference higher (or if it's even possible) tokens that are needed. The specific portion I'm looking at is:

expression:
...
| T_FOREACH '(' variable T_AS
  { zend_do_foreach_begin(&$1, &$2, &$3, &$4, 0 TSRMLS_CC); }
  variable foreach_optional_arg ')' { zend_check_writable_variable(&$6); zend_do_foreach_cont(&$1, &$2, &$4, &$6, &$7 TSRMLS_CC); }
  ....

foreach_optional_arg:
   { $$.op_type = IS_UNUSED; }
   | T_DOUBLE_ARROW foreach_variable { $$ = $2; }

My question here, is, inside the foreach_option_arg expantion, is there a way to reference the parents &$1 (ie: the T_FOREACH token?)

share|improve this question

migrated from programmers.stackexchange.com Jan 18 at 17:16

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.