This repository was archived by the owner on Oct 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.conflicts
255 lines (183 loc) · 7.95 KB
/
parser.conflicts
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
** Conflict (shift/reduce) in state 36.
** Tokens involved: TIMES PLUS OR MINUS DOT DIV BINOP AND
** The following explanations concentrate on token TIMES.
** This state is reached from program after reading:
PRINT LPARENT LBRACKET expression DOT DOT expression
** The derivations that appear below have the following common factor:
** (The question mark symbol (?) represents the spot where the derivations begin to differ.)
program
nonempty_list(statement) EOF
statement
PRINT LPARENT expression RPARENT SEMICOLON
(?)
** In state 36, looking ahead at TIMES, shifting is permitted
** because of the following sub-derivation:
LBRACKET expression DOT DOT expression RBRACKET
expression . TIMES expression
** In state 36, looking ahead at TIMES, reducing production
** expression -> expression DOT DOT expression
** is permitted because of the following sub-derivation:
LBRACKET expression DOT DOT expression RBRACKET
expression TIMES expression // lookahead token appears
expression DOT DOT expression .
** Conflict (shift/reduce) in state 31.
** Token involved: DOT
** This state is reached from program after reading:
PRINT LPARENT expression AND expression
** The derivations that appear below have the following common factor:
** (The question mark symbol (?) represents the spot where the derivations begin to differ.)
program
nonempty_list(statement) EOF
statement
PRINT LPARENT expression RPARENT SEMICOLON
(?)
** In state 31, looking ahead at DOT, reducing production
** expression -> expression AND expression
** is permitted because of the following sub-derivation:
expression DOT DOT expression // lookahead token appears
expression AND expression .
** In state 31, looking ahead at DOT, shifting is permitted
** because of the following sub-derivation:
expression AND expression
expression . DOT DOT expression
** Conflict (shift/reduce) in state 29.
** Token involved: DOT
** This state is reached from program after reading:
PRINT LPARENT expression BINOP expression
** The derivations that appear below have the following common factor:
** (The question mark symbol (?) represents the spot where the derivations begin to differ.)
program
nonempty_list(statement) EOF
statement
PRINT LPARENT expression RPARENT SEMICOLON
(?)
** In state 29, looking ahead at DOT, reducing production
** expression -> expression BINOP expression
** is permitted because of the following sub-derivation:
expression DOT DOT expression // lookahead token appears
expression BINOP expression .
** In state 29, looking ahead at DOT, shifting is permitted
** because of the following sub-derivation:
expression BINOP expression
expression . DOT DOT expression
** Conflict (shift/reduce) in state 27.
** Token involved: DOT
** This state is reached from program after reading:
PRINT LPARENT expression MINUS expression
** The derivations that appear below have the following common factor:
** (The question mark symbol (?) represents the spot where the derivations begin to differ.)
program
nonempty_list(statement) EOF
statement
PRINT LPARENT expression RPARENT SEMICOLON
(?)
** In state 27, looking ahead at DOT, reducing production
** expression -> expression MINUS expression
** is permitted because of the following sub-derivation:
expression DOT DOT expression // lookahead token appears
expression MINUS expression .
** In state 27, looking ahead at DOT, shifting is permitted
** because of the following sub-derivation:
expression MINUS expression
expression . DOT DOT expression
** Conflict (shift/reduce) in state 25.
** Token involved: DOT
** This state is reached from program after reading:
PRINT LPARENT expression OR expression
** The derivations that appear below have the following common factor:
** (The question mark symbol (?) represents the spot where the derivations begin to differ.)
program
nonempty_list(statement) EOF
statement
PRINT LPARENT expression RPARENT SEMICOLON
(?)
** In state 25, looking ahead at DOT, reducing production
** expression -> expression OR expression
** is permitted because of the following sub-derivation:
expression DOT DOT expression // lookahead token appears
expression OR expression .
** In state 25, looking ahead at DOT, shifting is permitted
** because of the following sub-derivation:
expression OR expression
expression . DOT DOT expression
** Conflict (shift/reduce) in state 23.
** Token involved: DOT
** This state is reached from program after reading:
PRINT LPARENT expression DIV expression
** The derivations that appear below have the following common factor:
** (The question mark symbol (?) represents the spot where the derivations begin to differ.)
program
nonempty_list(statement) EOF
statement
PRINT LPARENT expression RPARENT SEMICOLON
(?)
** In state 23, looking ahead at DOT, reducing production
** expression -> expression DIV expression
** is permitted because of the following sub-derivation:
expression DOT DOT expression // lookahead token appears
expression DIV expression .
** In state 23, looking ahead at DOT, shifting is permitted
** because of the following sub-derivation:
expression DIV expression
expression . DOT DOT expression
** Conflict (shift/reduce) in state 21.
** Token involved: DOT
** This state is reached from program after reading:
PRINT LPARENT expression PLUS expression
** The derivations that appear below have the following common factor:
** (The question mark symbol (?) represents the spot where the derivations begin to differ.)
program
nonempty_list(statement) EOF
statement
PRINT LPARENT expression RPARENT SEMICOLON
(?)
** In state 21, looking ahead at DOT, reducing production
** expression -> expression PLUS expression
** is permitted because of the following sub-derivation:
expression DOT DOT expression // lookahead token appears
expression PLUS expression .
** In state 21, looking ahead at DOT, shifting is permitted
** because of the following sub-derivation:
expression PLUS expression
expression . DOT DOT expression
** Conflict (shift/reduce) in state 19.
** Tokens involved: TIMES PLUS OR MINUS DOT DIV BINOP AND
** The following explanations concentrate on token TIMES.
** This state is reached from program after reading:
PRINT LPARENT expression DOT DOT expression
** The derivations that appear below have the following common factor:
** (The question mark symbol (?) represents the spot where the derivations begin to differ.)
program
nonempty_list(statement) EOF
statement
PRINT LPARENT expression RPARENT SEMICOLON
(?)
** In state 19, looking ahead at TIMES, shifting is permitted
** because of the following sub-derivation:
expression DOT DOT expression
expression . TIMES expression
** In state 19, looking ahead at TIMES, reducing production
** expression -> expression DOT DOT expression
** is permitted because of the following sub-derivation:
expression TIMES expression // lookahead token appears
expression DOT DOT expression .
** Conflict (shift/reduce) in state 16.
** Token involved: DOT
** This state is reached from program after reading:
PRINT LPARENT expression TIMES expression
** The derivations that appear below have the following common factor:
** (The question mark symbol (?) represents the spot where the derivations begin to differ.)
program
nonempty_list(statement) EOF
statement
PRINT LPARENT expression RPARENT SEMICOLON
(?)
** In state 16, looking ahead at DOT, reducing production
** expression -> expression TIMES expression
** is permitted because of the following sub-derivation:
expression DOT DOT expression // lookahead token appears
expression TIMES expression .
** In state 16, looking ahead at DOT, shifting is permitted
** because of the following sub-derivation:
expression TIMES expression
expression . DOT DOT expression