Home | History | Annotate | Download | only in nawk-20071023

Lines Matching defs:st

71 %type	<i>	do st
311 st:
317 BREAK st { if (!inloop) SYNTAX("break illegal outside of loops");
319 | CONTINUE st { if (!inloop) SYNTAX("continue illegal outside of loops");
321 | do {inloop++;} stmt {--inloop;} WHILE '(' pattern ')' st
323 | EXIT pattern st { $$ = stat1(EXIT, $2); }
324 | EXIT st { $$ = stat1(EXIT, NIL); }
329 | NEXT st { if (infunc)
332 | NEXTFILE st { if (infunc)
335 | RETURN pattern st { $$ = stat1(RETURN, $2); }
336 | RETURN st { $$ = stat1(RETURN, NIL); }
337 | simple_stmt st