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?)