blob: 58385d2d8f50c4d135ad52cce5b9c3f97447c94f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
** Conflict (shift/reduce) in state 2.
** Token involved: W
** This state is reached from main after reading:
seq W
** The derivations that appear below have the following common factor:
** (The question mark symbol (?) represents the spot where the derivations begin to differ.)
main
(?)
** In state 2, looking ahead at W, shifting is permitted
** because of the following sub-derivation:
seq ending EOL
W . W W
** In state 2, looking ahead at W, reducing production
** seq -> seq W
** is permitted because of the following sub-derivation:
seq ending EOL // lookahead token appears because ending can begin with W
seq W .
|