Parser.parseForeachStatement
ForeachStatement parseForeachStatement()Parses a ForeachStatement
$(RULEDEF foreachStatement): ($(LITERAL 'foreach') | $(LITERAL 'foreach_reverse')) $(LITERAL '(') $(RULE foreachTypeList) $(LITERAL ';') $(RULE expression) $(LITERAL ')') $(RULE declarationOrStatement) | ($(LITERAL 'foreach') | $(LITERAL 'foreach_reverse')) $(LITERAL '(') $(RULE foreachType) $(LITERAL ';') $(RULE expression) $(LITERAL '..') $(RULE expression) $(LITERAL ')') $(RULE declarationOrStatement) ;