Searched refs:star_opt (Results 1 – 1 of 1) sorted by relevance
185 phrase(A) ::= phrase(X) PLUS STRING(Y) star_opt(Z). { in phrase()188 phrase(A) ::= STRING(Y) star_opt(Z). { in phrase()195 %type star_opt {int}196 star_opt(A) ::= STAR. { A = 1; } in star_opt() function197 star_opt(A) ::= . { A = 0; } in star_opt() function