freebsd-dev/contrib/byacc/test/btyacc/err_syntax18.output
Baptiste Daroussin 0c8de5b03c Update to byacc 20140409
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
2014-04-23 05:57:45 +00:00

53 lines
601 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

0 $accept : expr $end
1 expr : '(' expr ')'
state 0
$accept : . expr $end (0)
'(' shift 1
. error
expr goto 2
state 1
expr : '(' . expr ')' (1)
'(' shift 1
. error
expr goto 3
state 2
$accept : expr . $end (0)
$end accept
state 3
expr : '(' expr . ')' (1)
')' shift 4
. error
state 4
expr : '(' expr ')' . (1)
. reduce 1
4 terminals, 2 nonterminals
2 grammar rules, 5 states
grammar parser grammar
symbol# value# symbol
0 0 $end
1 256 error
2 40 '('
3 41 ')'
4 257 $accept
5 258 expr