0c8de5b03c
Among all the modifications, this new byacc also solves a 14 year old bug [1] PR: bin/23254 [1] Submitted by: marka@nominum.com [1] MFC after: 3 weeks
35 lines
389 B
Plaintext
35 lines
389 B
Plaintext
0 $accept : S $end
|
||
|
||
1 S : error
|
||
|
||
state 0
|
||
$accept : . S $end (0)
|
||
|
||
error shift 1
|
||
. error
|
||
|
||
S goto 2
|
||
|
||
|
||
state 1
|
||
S : error . (1)
|
||
|
||
. reduce 1
|
||
|
||
|
||
state 2
|
||
$accept : S . $end (0)
|
||
|
||
$end accept
|
||
|
||
|
||
2 terminals, 2 nonterminals
|
||
2 grammar rules, 3 states
|
||
|
||
grammar parser grammar
|
||
symbol# value# symbol
|
||
0 0 $end
|
||
1 256 error
|
||
2 257 $accept
|
||
3 258 S
|