/* <add op> ::= PLUSOP | MINUSOP #process_op */
if (tok == PLUSOP || tok == MINUSOP) { match(tok); *op = process_op(); } else syntax_error(tok); }