Searched refs:stmt (Results 1 – 3 of 3) sorted by relevance
6 #define CI(stmt) try { stmt; abort(); } catch (int) { } argument
68 %type <p> simple_stmt opt_simple_stmt stmt stmtlist124 FOR '(' opt_simple_stmt ';' opt_nl pattern ';' opt_nl opt_simple_stmt rparen {inloop++;} stmt126 | FOR '(' opt_simple_stmt ';' ';' opt_nl opt_simple_stmt rparen {inloop++;} stmt128 | FOR '(' varname IN varname rparen {inloop++;} stmt316 stmt:321 | do {inloop++;} stmt {--inloop;} WHILE '(' pattern ')' st326 | 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[all …]