glr2.cc: put glr_state_set and glr_stack_item in unnamed namespace
[bison.git] / doc / else.y
blob01e1f938c9f7642639395ea5a2619c26502bfe1c
1 %%
2 stmt:
3 expr
4 | if_stmt
7 if_stmt:
8 "if" expr "then" stmt
9 | "if" expr "then" stmt "else" stmt
12 expr:
13 "identifier"