repo.or.cz
/
bison.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
tests: grep -E is not portable
[bison.git]
/
doc
/
else.y
blob
01e1f938c9f7642639395ea5a2619c26502bfe1c
1
%%
2
stmt:
3
expr
4
| if_stmt
5
;
6
7
if_stmt:
8
"if"
expr
"then"
stmt
9
|
"if"
expr
"then"
stmt
"else"
stmt
10
;
11
12
expr:
13
"identifier"