freebsd-skq/contrib/byacc/test/yacc/err_syntax20.output
bapt 380a6c91bc 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

42 lines
424 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 : '(' recur ')'
state 0
$accept : . expr $end (0)
'(' shift 1
. error
expr goto 2
state 1
expr : '(' . recur ')' (1)
recur shift 3
. error
state 2
$accept : expr . $end (0)
$end accept
state 3
expr : '(' recur . ')' (1)
')' shift 4
. error
state 4
expr : '(' recur ')' . (1)
. reduce 1
5 terminals, 2 nonterminals
2 grammar rules, 5 states