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

Lines Matching defs:stmt

68 %type	<p>	simple_stmt opt_simple_stmt stmt stmtlist
124 FOR '(' opt_simple_stmt ';' opt_nl pattern ';' opt_nl opt_simple_stmt rparen {inloop++;} stmt
126 | FOR '(' opt_simple_stmt ';' ';' opt_nl opt_simple_stmt rparen {inloop++;} stmt
128 | FOR '(' varname IN varname rparen {inloop++;} stmt
316 stmt:
321 | do {inloop++;} stmt {--inloop;} WHILE '(' pattern ')' st
326 | if stmt else stmt { $$ = stat3(IF, $1, $2, $4); }
327 | if stmt { $$ = stat3(IF, $1, $2, NIL); }
338 | while {inloop++;} stmt { --inloop; $$ = stat2(WHILE, $1, $3); }
343 stmt
344 | stmtlist stmt { $$ = linkum($1, $2); }