12345678910111213141516171819202122232425262728293031323334 |
- // Generated by GNU Bison 3.0.4.
- // Report bugs to <bug-bison@gnu.org>.
- // Home page: <http://www.gnu.org/software/bison/>.
- digraph "calc.y"
- {
- node [fontname = courier, shape = box, colorscheme = paired6]
- edge [fontname = courier]
- 0 [label="State 0\n\l 0 $accept: . input $end\l"]
- 0 -> 1 [style=dashed label="input"]
- 0 -> "0R1" [style=solid]
- "0R1" [label="R1", fillcolor=3, shape=diamond, style=filled]
- 1 [label="State 1\n\l 0 $accept: input . $end\l 2 input: input . line\l"]
- 1 -> 2 [style=solid label="$end"]
- 1 -> 3 [style=dotted]
- 1 -> 4 [style=solid label="'\\n'"]
- 1 -> 5 [style=dashed label="line"]
- 2 [label="State 2\n\l 0 $accept: input $end .\l"]
- 2 -> "2R0" [style=solid]
- "2R0" [label="Acc", fillcolor=1, shape=diamond, style=filled]
- 3 [label="State 3\n\l 4 line: error . '\\n'\l"]
- 3 -> 6 [style=solid label="'\\n'"]
- 4 [label="State 4\n\l 3 line: '\\n' .\l"]
- 4 -> "4R3" [style=solid]
- "4R3" [label="R3", fillcolor=3, shape=diamond, style=filled]
- 5 [label="State 5\n\l 2 input: input line .\l"]
- 5 -> "5R2" [style=solid]
- "5R2" [label="R2", fillcolor=3, shape=diamond, style=filled]
- 6 [label="State 6\n\l 4 line: error '\\n' .\l"]
- 6 -> "6R4" [style=solid]
- "6R4" [label="R4", fillcolor=3, shape=diamond, style=filled]
- }
|