mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 12:23:04 +00:00
Note that 'make web-manual' fails. * NEWS: Document these changes. * doc/Makefile.am: Adjust to generate example files. * doc/bison.texi: Add a Graphviz section after "Understanding::", the section describing the .output file, because these are similar. * doc/figs/example-reduce.dot, doc/figs/example-reduce.txt, doc/figs/example-shift.dot, doc/figs/example-shift.txt: New, minimal examples to illustrate the documentation. Signed-off-by: Akim Demaille <akim@lrde.epita.fr>
12 lines
377 B
Plaintext
12 lines
377 B
Plaintext
digraph "reduce.y"
|
|
{
|
|
node [fontname=courier shape=box]
|
|
edge [fontname=courier]
|
|
|
|
1 [label="State 1\n 3 a: \"0\" . [\".\"]\l 4 b: \"0\" . [\";\"]\l"]
|
|
1 -> "1R3" [label="" style=solid]
|
|
"1R3" [style=filled shape=diamond fillcolor=yellowgreen label="R3"]
|
|
1 -> "1R4" [label="[\";\"]" style=solid]
|
|
"1R4" [style=filled shape=diamond fillcolor=yellowgreen label="R4"]
|
|
}
|