Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. %nonassoc NO_ELSE
  2. %nonassoc ELSE
  3.  
  4. stmt_conditional
  5. : IF '(' expr { show_if1b($3); } ')'
  6. stmt_compound { show_if1e(); } %prec NO_ELSE
  7. | IF '(' expr { show_if2b($3); } ')'
  8. stmt_compound { show_else(); }
  9. ELSE stmt_compound { show_if2e(); }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement