csvpath 0.0.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- csvpath/__init__.py +1 -0
- csvpath/csvpath.py +368 -0
- csvpath/matching/__init__.py +1 -0
- csvpath/matching/expression_encoder.py +108 -0
- csvpath/matching/expression_math.py +123 -0
- csvpath/matching/expression_utility.py +29 -0
- csvpath/matching/functions/above.py +36 -0
- csvpath/matching/functions/add.py +24 -0
- csvpath/matching/functions/below.py +36 -0
- csvpath/matching/functions/concat.py +25 -0
- csvpath/matching/functions/count.py +44 -0
- csvpath/matching/functions/count_lines.py +12 -0
- csvpath/matching/functions/count_scans.py +13 -0
- csvpath/matching/functions/divide.py +30 -0
- csvpath/matching/functions/end.py +18 -0
- csvpath/matching/functions/every.py +33 -0
- csvpath/matching/functions/first.py +46 -0
- csvpath/matching/functions/function.py +31 -0
- csvpath/matching/functions/function_factory.py +114 -0
- csvpath/matching/functions/inf.py +38 -0
- csvpath/matching/functions/is_instance.py +95 -0
- csvpath/matching/functions/length.py +33 -0
- csvpath/matching/functions/lower.py +21 -0
- csvpath/matching/functions/minf.py +167 -0
- csvpath/matching/functions/multiply.py +27 -0
- csvpath/matching/functions/no.py +10 -0
- csvpath/matching/functions/notf.py +26 -0
- csvpath/matching/functions/now.py +33 -0
- csvpath/matching/functions/orf.py +28 -0
- csvpath/matching/functions/percent.py +29 -0
- csvpath/matching/functions/random.py +33 -0
- csvpath/matching/functions/regex.py +38 -0
- csvpath/matching/functions/subtract.py +28 -0
- csvpath/matching/functions/tally.py +36 -0
- csvpath/matching/functions/upper.py +21 -0
- csvpath/matching/matcher.py +215 -0
- csvpath/matching/matching_lexer.py +66 -0
- csvpath/matching/parser.out +1287 -0
- csvpath/matching/parsetab.py +1427 -0
- csvpath/matching/productions/equality.py +158 -0
- csvpath/matching/productions/expression.py +16 -0
- csvpath/matching/productions/header.py +30 -0
- csvpath/matching/productions/matchable.py +41 -0
- csvpath/matching/productions/term.py +11 -0
- csvpath/matching/productions/variable.py +15 -0
- csvpath/parser_utility.py +39 -0
- csvpath/scanning/__init__.py +1 -0
- csvpath/scanning/parser.out +1 -0
- csvpath/scanning/parsetab.py +231 -0
- csvpath/scanning/scanner.py +165 -0
- csvpath/scanning/scanning_lexer.py +47 -0
- csvpath-0.0.2.dist-info/METADATA +184 -0
- csvpath-0.0.2.dist-info/RECORD +54 -0
- csvpath-0.0.2.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,1287 @@
|
|
|
1
|
+
Created by PLY version 3.11 (http://www.dabeaz.com/ply)
|
|
2
|
+
|
|
3
|
+
Grammar
|
|
4
|
+
|
|
5
|
+
Rule 0 S' -> match_part
|
|
6
|
+
Rule 1 match_part -> LEFT_BRACKET expression RIGHT_BRACKET
|
|
7
|
+
Rule 2 match_part -> LEFT_BRACKET expressions RIGHT_BRACKET
|
|
8
|
+
Rule 3 expressions -> expression
|
|
9
|
+
Rule 4 expressions -> expressions expression
|
|
10
|
+
Rule 5 expression -> function
|
|
11
|
+
Rule 6 expression -> assignment_or_equality
|
|
12
|
+
Rule 7 expression -> header
|
|
13
|
+
Rule 8 function -> NAME OPEN_PAREN CLOSE_PAREN
|
|
14
|
+
Rule 9 function -> NAME OPEN_PAREN equality CLOSE_PAREN
|
|
15
|
+
Rule 10 function -> NAME OPEN_PAREN function CLOSE_PAREN
|
|
16
|
+
Rule 11 function -> NAME OPEN_PAREN var_or_header CLOSE_PAREN
|
|
17
|
+
Rule 12 function -> NAME OPEN_PAREN term CLOSE_PAREN
|
|
18
|
+
Rule 13 assignment_or_equality -> equality
|
|
19
|
+
Rule 14 assignment_or_equality -> assignment
|
|
20
|
+
Rule 15 equality -> function op term
|
|
21
|
+
Rule 16 equality -> function op function
|
|
22
|
+
Rule 17 equality -> function op var_or_header
|
|
23
|
+
Rule 18 equality -> var_or_header op function
|
|
24
|
+
Rule 19 equality -> var_or_header op term
|
|
25
|
+
Rule 20 equality -> var_or_header op var_or_header
|
|
26
|
+
Rule 21 equality -> term op var_or_header
|
|
27
|
+
Rule 22 equality -> term op term
|
|
28
|
+
Rule 23 equality -> term op function
|
|
29
|
+
Rule 24 equality -> equality op equality
|
|
30
|
+
Rule 25 equality -> equality op term
|
|
31
|
+
Rule 26 equality -> equality op function
|
|
32
|
+
Rule 27 op -> EQUALS
|
|
33
|
+
Rule 28 op -> OPERATION
|
|
34
|
+
Rule 29 assignment -> var ASSIGNMENT var
|
|
35
|
+
Rule 30 assignment -> var ASSIGNMENT term
|
|
36
|
+
Rule 31 assignment -> var ASSIGNMENT function
|
|
37
|
+
Rule 32 assignment -> var ASSIGNMENT header
|
|
38
|
+
Rule 33 term -> QUOTE NAME QUOTE
|
|
39
|
+
Rule 34 term -> QUOTE DATE QUOTE
|
|
40
|
+
Rule 35 term -> QUOTE NUMBER QUOTE
|
|
41
|
+
Rule 36 term -> NUMBER
|
|
42
|
+
Rule 37 term -> REGEX
|
|
43
|
+
Rule 38 var_or_header -> header
|
|
44
|
+
Rule 39 var_or_header -> var
|
|
45
|
+
Rule 40 var -> VAR_SYM NAME
|
|
46
|
+
Rule 41 header -> HEADER_SYM NAME
|
|
47
|
+
Rule 42 header -> HEADER_SYM NUMBER
|
|
48
|
+
|
|
49
|
+
Terminals, with rules where they appear
|
|
50
|
+
|
|
51
|
+
ASSIGNMENT : 29 30 31 32
|
|
52
|
+
CLOSE_PAREN : 8 9 10 11 12
|
|
53
|
+
DATE : 34
|
|
54
|
+
EQUALS : 27
|
|
55
|
+
HEADER_SYM : 41 42
|
|
56
|
+
LEFT_BRACKET : 1 2
|
|
57
|
+
NAME : 8 9 10 11 12 33 40 41
|
|
58
|
+
NUMBER : 35 36 42
|
|
59
|
+
OPEN_PAREN : 8 9 10 11 12
|
|
60
|
+
OPERATION : 28
|
|
61
|
+
QUOTE : 33 33 34 34 35 35
|
|
62
|
+
REGEX : 37
|
|
63
|
+
RIGHT_BRACKET : 1 2
|
|
64
|
+
VAR_SYM : 40
|
|
65
|
+
error :
|
|
66
|
+
|
|
67
|
+
Nonterminals, with rules where they appear
|
|
68
|
+
|
|
69
|
+
assignment : 14
|
|
70
|
+
assignment_or_equality : 6
|
|
71
|
+
equality : 9 13 24 24 25 26
|
|
72
|
+
expression : 1 3 4
|
|
73
|
+
expressions : 2 4
|
|
74
|
+
function : 5 10 15 16 16 17 18 23 26 31
|
|
75
|
+
header : 7 32 38
|
|
76
|
+
match_part : 0
|
|
77
|
+
op : 15 16 17 18 19 20 21 22 23 24 25 26
|
|
78
|
+
term : 12 15 19 21 22 22 23 25 30
|
|
79
|
+
var : 29 29 30 31 32 39
|
|
80
|
+
var_or_header : 11 17 18 19 20 20 21
|
|
81
|
+
|
|
82
|
+
Parsing method: LALR
|
|
83
|
+
|
|
84
|
+
state 0
|
|
85
|
+
|
|
86
|
+
(0) S' -> . match_part
|
|
87
|
+
(1) match_part -> . LEFT_BRACKET expression RIGHT_BRACKET
|
|
88
|
+
(2) match_part -> . LEFT_BRACKET expressions RIGHT_BRACKET
|
|
89
|
+
|
|
90
|
+
LEFT_BRACKET shift and go to state 2
|
|
91
|
+
|
|
92
|
+
match_part shift and go to state 1
|
|
93
|
+
|
|
94
|
+
state 1
|
|
95
|
+
|
|
96
|
+
(0) S' -> match_part .
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
state 2
|
|
101
|
+
|
|
102
|
+
(1) match_part -> LEFT_BRACKET . expression RIGHT_BRACKET
|
|
103
|
+
(2) match_part -> LEFT_BRACKET . expressions RIGHT_BRACKET
|
|
104
|
+
(5) expression -> . function
|
|
105
|
+
(6) expression -> . assignment_or_equality
|
|
106
|
+
(7) expression -> . header
|
|
107
|
+
(3) expressions -> . expression
|
|
108
|
+
(4) expressions -> . expressions expression
|
|
109
|
+
(8) function -> . NAME OPEN_PAREN CLOSE_PAREN
|
|
110
|
+
(9) function -> . NAME OPEN_PAREN equality CLOSE_PAREN
|
|
111
|
+
(10) function -> . NAME OPEN_PAREN function CLOSE_PAREN
|
|
112
|
+
(11) function -> . NAME OPEN_PAREN var_or_header CLOSE_PAREN
|
|
113
|
+
(12) function -> . NAME OPEN_PAREN term CLOSE_PAREN
|
|
114
|
+
(13) assignment_or_equality -> . equality
|
|
115
|
+
(14) assignment_or_equality -> . assignment
|
|
116
|
+
(41) header -> . HEADER_SYM NAME
|
|
117
|
+
(42) header -> . HEADER_SYM NUMBER
|
|
118
|
+
(15) equality -> . function op term
|
|
119
|
+
(16) equality -> . function op function
|
|
120
|
+
(17) equality -> . function op var_or_header
|
|
121
|
+
(18) equality -> . var_or_header op function
|
|
122
|
+
(19) equality -> . var_or_header op term
|
|
123
|
+
(20) equality -> . var_or_header op var_or_header
|
|
124
|
+
(21) equality -> . term op var_or_header
|
|
125
|
+
(22) equality -> . term op term
|
|
126
|
+
(23) equality -> . term op function
|
|
127
|
+
(24) equality -> . equality op equality
|
|
128
|
+
(25) equality -> . equality op term
|
|
129
|
+
(26) equality -> . equality op function
|
|
130
|
+
(29) assignment -> . var ASSIGNMENT var
|
|
131
|
+
(30) assignment -> . var ASSIGNMENT term
|
|
132
|
+
(31) assignment -> . var ASSIGNMENT function
|
|
133
|
+
(32) assignment -> . var ASSIGNMENT header
|
|
134
|
+
(38) var_or_header -> . header
|
|
135
|
+
(39) var_or_header -> . var
|
|
136
|
+
(33) term -> . QUOTE NAME QUOTE
|
|
137
|
+
(34) term -> . QUOTE DATE QUOTE
|
|
138
|
+
(35) term -> . QUOTE NUMBER QUOTE
|
|
139
|
+
(36) term -> . NUMBER
|
|
140
|
+
(37) term -> . REGEX
|
|
141
|
+
(40) var -> . VAR_SYM NAME
|
|
142
|
+
|
|
143
|
+
NAME shift and go to state 8
|
|
144
|
+
HEADER_SYM shift and go to state 13
|
|
145
|
+
QUOTE shift and go to state 16
|
|
146
|
+
NUMBER shift and go to state 14
|
|
147
|
+
REGEX shift and go to state 17
|
|
148
|
+
VAR_SYM shift and go to state 18
|
|
149
|
+
|
|
150
|
+
expression shift and go to state 3
|
|
151
|
+
expressions shift and go to state 4
|
|
152
|
+
function shift and go to state 5
|
|
153
|
+
assignment_or_equality shift and go to state 6
|
|
154
|
+
header shift and go to state 7
|
|
155
|
+
equality shift and go to state 9
|
|
156
|
+
var_or_header shift and go to state 10
|
|
157
|
+
term shift and go to state 11
|
|
158
|
+
assignment shift and go to state 12
|
|
159
|
+
var shift and go to state 15
|
|
160
|
+
|
|
161
|
+
state 3
|
|
162
|
+
|
|
163
|
+
(1) match_part -> LEFT_BRACKET expression . RIGHT_BRACKET
|
|
164
|
+
(3) expressions -> expression .
|
|
165
|
+
|
|
166
|
+
! shift/reduce conflict for RIGHT_BRACKET resolved as shift
|
|
167
|
+
RIGHT_BRACKET shift and go to state 19
|
|
168
|
+
NAME reduce using rule 3 (expressions -> expression .)
|
|
169
|
+
HEADER_SYM reduce using rule 3 (expressions -> expression .)
|
|
170
|
+
QUOTE reduce using rule 3 (expressions -> expression .)
|
|
171
|
+
NUMBER reduce using rule 3 (expressions -> expression .)
|
|
172
|
+
REGEX reduce using rule 3 (expressions -> expression .)
|
|
173
|
+
VAR_SYM reduce using rule 3 (expressions -> expression .)
|
|
174
|
+
|
|
175
|
+
! RIGHT_BRACKET [ reduce using rule 3 (expressions -> expression .) ]
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
state 4
|
|
179
|
+
|
|
180
|
+
(2) match_part -> LEFT_BRACKET expressions . RIGHT_BRACKET
|
|
181
|
+
(4) expressions -> expressions . expression
|
|
182
|
+
(5) expression -> . function
|
|
183
|
+
(6) expression -> . assignment_or_equality
|
|
184
|
+
(7) expression -> . header
|
|
185
|
+
(8) function -> . NAME OPEN_PAREN CLOSE_PAREN
|
|
186
|
+
(9) function -> . NAME OPEN_PAREN equality CLOSE_PAREN
|
|
187
|
+
(10) function -> . NAME OPEN_PAREN function CLOSE_PAREN
|
|
188
|
+
(11) function -> . NAME OPEN_PAREN var_or_header CLOSE_PAREN
|
|
189
|
+
(12) function -> . NAME OPEN_PAREN term CLOSE_PAREN
|
|
190
|
+
(13) assignment_or_equality -> . equality
|
|
191
|
+
(14) assignment_or_equality -> . assignment
|
|
192
|
+
(41) header -> . HEADER_SYM NAME
|
|
193
|
+
(42) header -> . HEADER_SYM NUMBER
|
|
194
|
+
(15) equality -> . function op term
|
|
195
|
+
(16) equality -> . function op function
|
|
196
|
+
(17) equality -> . function op var_or_header
|
|
197
|
+
(18) equality -> . var_or_header op function
|
|
198
|
+
(19) equality -> . var_or_header op term
|
|
199
|
+
(20) equality -> . var_or_header op var_or_header
|
|
200
|
+
(21) equality -> . term op var_or_header
|
|
201
|
+
(22) equality -> . term op term
|
|
202
|
+
(23) equality -> . term op function
|
|
203
|
+
(24) equality -> . equality op equality
|
|
204
|
+
(25) equality -> . equality op term
|
|
205
|
+
(26) equality -> . equality op function
|
|
206
|
+
(29) assignment -> . var ASSIGNMENT var
|
|
207
|
+
(30) assignment -> . var ASSIGNMENT term
|
|
208
|
+
(31) assignment -> . var ASSIGNMENT function
|
|
209
|
+
(32) assignment -> . var ASSIGNMENT header
|
|
210
|
+
(38) var_or_header -> . header
|
|
211
|
+
(39) var_or_header -> . var
|
|
212
|
+
(33) term -> . QUOTE NAME QUOTE
|
|
213
|
+
(34) term -> . QUOTE DATE QUOTE
|
|
214
|
+
(35) term -> . QUOTE NUMBER QUOTE
|
|
215
|
+
(36) term -> . NUMBER
|
|
216
|
+
(37) term -> . REGEX
|
|
217
|
+
(40) var -> . VAR_SYM NAME
|
|
218
|
+
|
|
219
|
+
RIGHT_BRACKET shift and go to state 20
|
|
220
|
+
NAME shift and go to state 8
|
|
221
|
+
HEADER_SYM shift and go to state 13
|
|
222
|
+
QUOTE shift and go to state 16
|
|
223
|
+
NUMBER shift and go to state 14
|
|
224
|
+
REGEX shift and go to state 17
|
|
225
|
+
VAR_SYM shift and go to state 18
|
|
226
|
+
|
|
227
|
+
expression shift and go to state 21
|
|
228
|
+
function shift and go to state 5
|
|
229
|
+
assignment_or_equality shift and go to state 6
|
|
230
|
+
header shift and go to state 7
|
|
231
|
+
equality shift and go to state 9
|
|
232
|
+
var_or_header shift and go to state 10
|
|
233
|
+
term shift and go to state 11
|
|
234
|
+
assignment shift and go to state 12
|
|
235
|
+
var shift and go to state 15
|
|
236
|
+
|
|
237
|
+
state 5
|
|
238
|
+
|
|
239
|
+
(5) expression -> function .
|
|
240
|
+
(15) equality -> function . op term
|
|
241
|
+
(16) equality -> function . op function
|
|
242
|
+
(17) equality -> function . op var_or_header
|
|
243
|
+
(27) op -> . EQUALS
|
|
244
|
+
(28) op -> . OPERATION
|
|
245
|
+
|
|
246
|
+
RIGHT_BRACKET reduce using rule 5 (expression -> function .)
|
|
247
|
+
NAME reduce using rule 5 (expression -> function .)
|
|
248
|
+
HEADER_SYM reduce using rule 5 (expression -> function .)
|
|
249
|
+
QUOTE reduce using rule 5 (expression -> function .)
|
|
250
|
+
NUMBER reduce using rule 5 (expression -> function .)
|
|
251
|
+
REGEX reduce using rule 5 (expression -> function .)
|
|
252
|
+
VAR_SYM reduce using rule 5 (expression -> function .)
|
|
253
|
+
EQUALS shift and go to state 23
|
|
254
|
+
OPERATION shift and go to state 24
|
|
255
|
+
|
|
256
|
+
op shift and go to state 22
|
|
257
|
+
|
|
258
|
+
state 6
|
|
259
|
+
|
|
260
|
+
(6) expression -> assignment_or_equality .
|
|
261
|
+
|
|
262
|
+
RIGHT_BRACKET reduce using rule 6 (expression -> assignment_or_equality .)
|
|
263
|
+
NAME reduce using rule 6 (expression -> assignment_or_equality .)
|
|
264
|
+
HEADER_SYM reduce using rule 6 (expression -> assignment_or_equality .)
|
|
265
|
+
QUOTE reduce using rule 6 (expression -> assignment_or_equality .)
|
|
266
|
+
NUMBER reduce using rule 6 (expression -> assignment_or_equality .)
|
|
267
|
+
REGEX reduce using rule 6 (expression -> assignment_or_equality .)
|
|
268
|
+
VAR_SYM reduce using rule 6 (expression -> assignment_or_equality .)
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
state 7
|
|
272
|
+
|
|
273
|
+
(7) expression -> header .
|
|
274
|
+
(38) var_or_header -> header .
|
|
275
|
+
|
|
276
|
+
RIGHT_BRACKET reduce using rule 7 (expression -> header .)
|
|
277
|
+
NAME reduce using rule 7 (expression -> header .)
|
|
278
|
+
HEADER_SYM reduce using rule 7 (expression -> header .)
|
|
279
|
+
QUOTE reduce using rule 7 (expression -> header .)
|
|
280
|
+
NUMBER reduce using rule 7 (expression -> header .)
|
|
281
|
+
REGEX reduce using rule 7 (expression -> header .)
|
|
282
|
+
VAR_SYM reduce using rule 7 (expression -> header .)
|
|
283
|
+
EQUALS reduce using rule 38 (var_or_header -> header .)
|
|
284
|
+
OPERATION reduce using rule 38 (var_or_header -> header .)
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
state 8
|
|
288
|
+
|
|
289
|
+
(8) function -> NAME . OPEN_PAREN CLOSE_PAREN
|
|
290
|
+
(9) function -> NAME . OPEN_PAREN equality CLOSE_PAREN
|
|
291
|
+
(10) function -> NAME . OPEN_PAREN function CLOSE_PAREN
|
|
292
|
+
(11) function -> NAME . OPEN_PAREN var_or_header CLOSE_PAREN
|
|
293
|
+
(12) function -> NAME . OPEN_PAREN term CLOSE_PAREN
|
|
294
|
+
|
|
295
|
+
OPEN_PAREN shift and go to state 25
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
state 9
|
|
299
|
+
|
|
300
|
+
(13) assignment_or_equality -> equality .
|
|
301
|
+
(24) equality -> equality . op equality
|
|
302
|
+
(25) equality -> equality . op term
|
|
303
|
+
(26) equality -> equality . op function
|
|
304
|
+
(27) op -> . EQUALS
|
|
305
|
+
(28) op -> . OPERATION
|
|
306
|
+
|
|
307
|
+
RIGHT_BRACKET reduce using rule 13 (assignment_or_equality -> equality .)
|
|
308
|
+
NAME reduce using rule 13 (assignment_or_equality -> equality .)
|
|
309
|
+
HEADER_SYM reduce using rule 13 (assignment_or_equality -> equality .)
|
|
310
|
+
QUOTE reduce using rule 13 (assignment_or_equality -> equality .)
|
|
311
|
+
NUMBER reduce using rule 13 (assignment_or_equality -> equality .)
|
|
312
|
+
REGEX reduce using rule 13 (assignment_or_equality -> equality .)
|
|
313
|
+
VAR_SYM reduce using rule 13 (assignment_or_equality -> equality .)
|
|
314
|
+
EQUALS shift and go to state 23
|
|
315
|
+
OPERATION shift and go to state 24
|
|
316
|
+
|
|
317
|
+
op shift and go to state 26
|
|
318
|
+
|
|
319
|
+
state 10
|
|
320
|
+
|
|
321
|
+
(18) equality -> var_or_header . op function
|
|
322
|
+
(19) equality -> var_or_header . op term
|
|
323
|
+
(20) equality -> var_or_header . op var_or_header
|
|
324
|
+
(27) op -> . EQUALS
|
|
325
|
+
(28) op -> . OPERATION
|
|
326
|
+
|
|
327
|
+
EQUALS shift and go to state 23
|
|
328
|
+
OPERATION shift and go to state 24
|
|
329
|
+
|
|
330
|
+
op shift and go to state 27
|
|
331
|
+
|
|
332
|
+
state 11
|
|
333
|
+
|
|
334
|
+
(21) equality -> term . op var_or_header
|
|
335
|
+
(22) equality -> term . op term
|
|
336
|
+
(23) equality -> term . op function
|
|
337
|
+
(27) op -> . EQUALS
|
|
338
|
+
(28) op -> . OPERATION
|
|
339
|
+
|
|
340
|
+
EQUALS shift and go to state 23
|
|
341
|
+
OPERATION shift and go to state 24
|
|
342
|
+
|
|
343
|
+
op shift and go to state 28
|
|
344
|
+
|
|
345
|
+
state 12
|
|
346
|
+
|
|
347
|
+
(14) assignment_or_equality -> assignment .
|
|
348
|
+
|
|
349
|
+
RIGHT_BRACKET reduce using rule 14 (assignment_or_equality -> assignment .)
|
|
350
|
+
NAME reduce using rule 14 (assignment_or_equality -> assignment .)
|
|
351
|
+
HEADER_SYM reduce using rule 14 (assignment_or_equality -> assignment .)
|
|
352
|
+
QUOTE reduce using rule 14 (assignment_or_equality -> assignment .)
|
|
353
|
+
NUMBER reduce using rule 14 (assignment_or_equality -> assignment .)
|
|
354
|
+
REGEX reduce using rule 14 (assignment_or_equality -> assignment .)
|
|
355
|
+
VAR_SYM reduce using rule 14 (assignment_or_equality -> assignment .)
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
state 13
|
|
359
|
+
|
|
360
|
+
(41) header -> HEADER_SYM . NAME
|
|
361
|
+
(42) header -> HEADER_SYM . NUMBER
|
|
362
|
+
|
|
363
|
+
NAME shift and go to state 29
|
|
364
|
+
NUMBER shift and go to state 30
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
state 14
|
|
368
|
+
|
|
369
|
+
(36) term -> NUMBER .
|
|
370
|
+
|
|
371
|
+
EQUALS reduce using rule 36 (term -> NUMBER .)
|
|
372
|
+
OPERATION reduce using rule 36 (term -> NUMBER .)
|
|
373
|
+
RIGHT_BRACKET reduce using rule 36 (term -> NUMBER .)
|
|
374
|
+
NAME reduce using rule 36 (term -> NUMBER .)
|
|
375
|
+
HEADER_SYM reduce using rule 36 (term -> NUMBER .)
|
|
376
|
+
QUOTE reduce using rule 36 (term -> NUMBER .)
|
|
377
|
+
NUMBER reduce using rule 36 (term -> NUMBER .)
|
|
378
|
+
REGEX reduce using rule 36 (term -> NUMBER .)
|
|
379
|
+
VAR_SYM reduce using rule 36 (term -> NUMBER .)
|
|
380
|
+
CLOSE_PAREN reduce using rule 36 (term -> NUMBER .)
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
state 15
|
|
384
|
+
|
|
385
|
+
(29) assignment -> var . ASSIGNMENT var
|
|
386
|
+
(30) assignment -> var . ASSIGNMENT term
|
|
387
|
+
(31) assignment -> var . ASSIGNMENT function
|
|
388
|
+
(32) assignment -> var . ASSIGNMENT header
|
|
389
|
+
(39) var_or_header -> var .
|
|
390
|
+
|
|
391
|
+
ASSIGNMENT shift and go to state 31
|
|
392
|
+
EQUALS reduce using rule 39 (var_or_header -> var .)
|
|
393
|
+
OPERATION reduce using rule 39 (var_or_header -> var .)
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
state 16
|
|
397
|
+
|
|
398
|
+
(33) term -> QUOTE . NAME QUOTE
|
|
399
|
+
(34) term -> QUOTE . DATE QUOTE
|
|
400
|
+
(35) term -> QUOTE . NUMBER QUOTE
|
|
401
|
+
|
|
402
|
+
NAME shift and go to state 32
|
|
403
|
+
DATE shift and go to state 33
|
|
404
|
+
NUMBER shift and go to state 34
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
state 17
|
|
408
|
+
|
|
409
|
+
(37) term -> REGEX .
|
|
410
|
+
|
|
411
|
+
EQUALS reduce using rule 37 (term -> REGEX .)
|
|
412
|
+
OPERATION reduce using rule 37 (term -> REGEX .)
|
|
413
|
+
RIGHT_BRACKET reduce using rule 37 (term -> REGEX .)
|
|
414
|
+
NAME reduce using rule 37 (term -> REGEX .)
|
|
415
|
+
HEADER_SYM reduce using rule 37 (term -> REGEX .)
|
|
416
|
+
QUOTE reduce using rule 37 (term -> REGEX .)
|
|
417
|
+
NUMBER reduce using rule 37 (term -> REGEX .)
|
|
418
|
+
REGEX reduce using rule 37 (term -> REGEX .)
|
|
419
|
+
VAR_SYM reduce using rule 37 (term -> REGEX .)
|
|
420
|
+
CLOSE_PAREN reduce using rule 37 (term -> REGEX .)
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
state 18
|
|
424
|
+
|
|
425
|
+
(40) var -> VAR_SYM . NAME
|
|
426
|
+
|
|
427
|
+
NAME shift and go to state 35
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
state 19
|
|
431
|
+
|
|
432
|
+
(1) match_part -> LEFT_BRACKET expression RIGHT_BRACKET .
|
|
433
|
+
|
|
434
|
+
$end reduce using rule 1 (match_part -> LEFT_BRACKET expression RIGHT_BRACKET .)
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
state 20
|
|
438
|
+
|
|
439
|
+
(2) match_part -> LEFT_BRACKET expressions RIGHT_BRACKET .
|
|
440
|
+
|
|
441
|
+
$end reduce using rule 2 (match_part -> LEFT_BRACKET expressions RIGHT_BRACKET .)
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
state 21
|
|
445
|
+
|
|
446
|
+
(4) expressions -> expressions expression .
|
|
447
|
+
|
|
448
|
+
RIGHT_BRACKET reduce using rule 4 (expressions -> expressions expression .)
|
|
449
|
+
NAME reduce using rule 4 (expressions -> expressions expression .)
|
|
450
|
+
HEADER_SYM reduce using rule 4 (expressions -> expressions expression .)
|
|
451
|
+
QUOTE reduce using rule 4 (expressions -> expressions expression .)
|
|
452
|
+
NUMBER reduce using rule 4 (expressions -> expressions expression .)
|
|
453
|
+
REGEX reduce using rule 4 (expressions -> expressions expression .)
|
|
454
|
+
VAR_SYM reduce using rule 4 (expressions -> expressions expression .)
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
state 22
|
|
458
|
+
|
|
459
|
+
(15) equality -> function op . term
|
|
460
|
+
(16) equality -> function op . function
|
|
461
|
+
(17) equality -> function op . var_or_header
|
|
462
|
+
(33) term -> . QUOTE NAME QUOTE
|
|
463
|
+
(34) term -> . QUOTE DATE QUOTE
|
|
464
|
+
(35) term -> . QUOTE NUMBER QUOTE
|
|
465
|
+
(36) term -> . NUMBER
|
|
466
|
+
(37) term -> . REGEX
|
|
467
|
+
(8) function -> . NAME OPEN_PAREN CLOSE_PAREN
|
|
468
|
+
(9) function -> . NAME OPEN_PAREN equality CLOSE_PAREN
|
|
469
|
+
(10) function -> . NAME OPEN_PAREN function CLOSE_PAREN
|
|
470
|
+
(11) function -> . NAME OPEN_PAREN var_or_header CLOSE_PAREN
|
|
471
|
+
(12) function -> . NAME OPEN_PAREN term CLOSE_PAREN
|
|
472
|
+
(38) var_or_header -> . header
|
|
473
|
+
(39) var_or_header -> . var
|
|
474
|
+
(41) header -> . HEADER_SYM NAME
|
|
475
|
+
(42) header -> . HEADER_SYM NUMBER
|
|
476
|
+
(40) var -> . VAR_SYM NAME
|
|
477
|
+
|
|
478
|
+
QUOTE shift and go to state 16
|
|
479
|
+
NUMBER shift and go to state 14
|
|
480
|
+
REGEX shift and go to state 17
|
|
481
|
+
NAME shift and go to state 8
|
|
482
|
+
HEADER_SYM shift and go to state 13
|
|
483
|
+
VAR_SYM shift and go to state 18
|
|
484
|
+
|
|
485
|
+
function shift and go to state 36
|
|
486
|
+
term shift and go to state 37
|
|
487
|
+
var_or_header shift and go to state 38
|
|
488
|
+
header shift and go to state 39
|
|
489
|
+
var shift and go to state 40
|
|
490
|
+
|
|
491
|
+
state 23
|
|
492
|
+
|
|
493
|
+
(27) op -> EQUALS .
|
|
494
|
+
|
|
495
|
+
QUOTE reduce using rule 27 (op -> EQUALS .)
|
|
496
|
+
NUMBER reduce using rule 27 (op -> EQUALS .)
|
|
497
|
+
REGEX reduce using rule 27 (op -> EQUALS .)
|
|
498
|
+
NAME reduce using rule 27 (op -> EQUALS .)
|
|
499
|
+
HEADER_SYM reduce using rule 27 (op -> EQUALS .)
|
|
500
|
+
VAR_SYM reduce using rule 27 (op -> EQUALS .)
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
state 24
|
|
504
|
+
|
|
505
|
+
(28) op -> OPERATION .
|
|
506
|
+
|
|
507
|
+
QUOTE reduce using rule 28 (op -> OPERATION .)
|
|
508
|
+
NUMBER reduce using rule 28 (op -> OPERATION .)
|
|
509
|
+
REGEX reduce using rule 28 (op -> OPERATION .)
|
|
510
|
+
NAME reduce using rule 28 (op -> OPERATION .)
|
|
511
|
+
HEADER_SYM reduce using rule 28 (op -> OPERATION .)
|
|
512
|
+
VAR_SYM reduce using rule 28 (op -> OPERATION .)
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
state 25
|
|
516
|
+
|
|
517
|
+
(8) function -> NAME OPEN_PAREN . CLOSE_PAREN
|
|
518
|
+
(9) function -> NAME OPEN_PAREN . equality CLOSE_PAREN
|
|
519
|
+
(10) function -> NAME OPEN_PAREN . function CLOSE_PAREN
|
|
520
|
+
(11) function -> NAME OPEN_PAREN . var_or_header CLOSE_PAREN
|
|
521
|
+
(12) function -> NAME OPEN_PAREN . term CLOSE_PAREN
|
|
522
|
+
(15) equality -> . function op term
|
|
523
|
+
(16) equality -> . function op function
|
|
524
|
+
(17) equality -> . function op var_or_header
|
|
525
|
+
(18) equality -> . var_or_header op function
|
|
526
|
+
(19) equality -> . var_or_header op term
|
|
527
|
+
(20) equality -> . var_or_header op var_or_header
|
|
528
|
+
(21) equality -> . term op var_or_header
|
|
529
|
+
(22) equality -> . term op term
|
|
530
|
+
(23) equality -> . term op function
|
|
531
|
+
(24) equality -> . equality op equality
|
|
532
|
+
(25) equality -> . equality op term
|
|
533
|
+
(26) equality -> . equality op function
|
|
534
|
+
(8) function -> . NAME OPEN_PAREN CLOSE_PAREN
|
|
535
|
+
(9) function -> . NAME OPEN_PAREN equality CLOSE_PAREN
|
|
536
|
+
(10) function -> . NAME OPEN_PAREN function CLOSE_PAREN
|
|
537
|
+
(11) function -> . NAME OPEN_PAREN var_or_header CLOSE_PAREN
|
|
538
|
+
(12) function -> . NAME OPEN_PAREN term CLOSE_PAREN
|
|
539
|
+
(38) var_or_header -> . header
|
|
540
|
+
(39) var_or_header -> . var
|
|
541
|
+
(33) term -> . QUOTE NAME QUOTE
|
|
542
|
+
(34) term -> . QUOTE DATE QUOTE
|
|
543
|
+
(35) term -> . QUOTE NUMBER QUOTE
|
|
544
|
+
(36) term -> . NUMBER
|
|
545
|
+
(37) term -> . REGEX
|
|
546
|
+
(41) header -> . HEADER_SYM NAME
|
|
547
|
+
(42) header -> . HEADER_SYM NUMBER
|
|
548
|
+
(40) var -> . VAR_SYM NAME
|
|
549
|
+
|
|
550
|
+
CLOSE_PAREN shift and go to state 41
|
|
551
|
+
NAME shift and go to state 8
|
|
552
|
+
QUOTE shift and go to state 16
|
|
553
|
+
NUMBER shift and go to state 14
|
|
554
|
+
REGEX shift and go to state 17
|
|
555
|
+
HEADER_SYM shift and go to state 13
|
|
556
|
+
VAR_SYM shift and go to state 18
|
|
557
|
+
|
|
558
|
+
equality shift and go to state 42
|
|
559
|
+
function shift and go to state 43
|
|
560
|
+
var_or_header shift and go to state 44
|
|
561
|
+
term shift and go to state 45
|
|
562
|
+
header shift and go to state 39
|
|
563
|
+
var shift and go to state 40
|
|
564
|
+
|
|
565
|
+
state 26
|
|
566
|
+
|
|
567
|
+
(24) equality -> equality op . equality
|
|
568
|
+
(25) equality -> equality op . term
|
|
569
|
+
(26) equality -> equality op . function
|
|
570
|
+
(15) equality -> . function op term
|
|
571
|
+
(16) equality -> . function op function
|
|
572
|
+
(17) equality -> . function op var_or_header
|
|
573
|
+
(18) equality -> . var_or_header op function
|
|
574
|
+
(19) equality -> . var_or_header op term
|
|
575
|
+
(20) equality -> . var_or_header op var_or_header
|
|
576
|
+
(21) equality -> . term op var_or_header
|
|
577
|
+
(22) equality -> . term op term
|
|
578
|
+
(23) equality -> . term op function
|
|
579
|
+
(24) equality -> . equality op equality
|
|
580
|
+
(25) equality -> . equality op term
|
|
581
|
+
(26) equality -> . equality op function
|
|
582
|
+
(33) term -> . QUOTE NAME QUOTE
|
|
583
|
+
(34) term -> . QUOTE DATE QUOTE
|
|
584
|
+
(35) term -> . QUOTE NUMBER QUOTE
|
|
585
|
+
(36) term -> . NUMBER
|
|
586
|
+
(37) term -> . REGEX
|
|
587
|
+
(8) function -> . NAME OPEN_PAREN CLOSE_PAREN
|
|
588
|
+
(9) function -> . NAME OPEN_PAREN equality CLOSE_PAREN
|
|
589
|
+
(10) function -> . NAME OPEN_PAREN function CLOSE_PAREN
|
|
590
|
+
(11) function -> . NAME OPEN_PAREN var_or_header CLOSE_PAREN
|
|
591
|
+
(12) function -> . NAME OPEN_PAREN term CLOSE_PAREN
|
|
592
|
+
(38) var_or_header -> . header
|
|
593
|
+
(39) var_or_header -> . var
|
|
594
|
+
(41) header -> . HEADER_SYM NAME
|
|
595
|
+
(42) header -> . HEADER_SYM NUMBER
|
|
596
|
+
(40) var -> . VAR_SYM NAME
|
|
597
|
+
|
|
598
|
+
QUOTE shift and go to state 16
|
|
599
|
+
NUMBER shift and go to state 14
|
|
600
|
+
REGEX shift and go to state 17
|
|
601
|
+
NAME shift and go to state 8
|
|
602
|
+
HEADER_SYM shift and go to state 13
|
|
603
|
+
VAR_SYM shift and go to state 18
|
|
604
|
+
|
|
605
|
+
equality shift and go to state 46
|
|
606
|
+
term shift and go to state 47
|
|
607
|
+
function shift and go to state 48
|
|
608
|
+
var_or_header shift and go to state 10
|
|
609
|
+
header shift and go to state 39
|
|
610
|
+
var shift and go to state 40
|
|
611
|
+
|
|
612
|
+
state 27
|
|
613
|
+
|
|
614
|
+
(18) equality -> var_or_header op . function
|
|
615
|
+
(19) equality -> var_or_header op . term
|
|
616
|
+
(20) equality -> var_or_header op . var_or_header
|
|
617
|
+
(8) function -> . NAME OPEN_PAREN CLOSE_PAREN
|
|
618
|
+
(9) function -> . NAME OPEN_PAREN equality CLOSE_PAREN
|
|
619
|
+
(10) function -> . NAME OPEN_PAREN function CLOSE_PAREN
|
|
620
|
+
(11) function -> . NAME OPEN_PAREN var_or_header CLOSE_PAREN
|
|
621
|
+
(12) function -> . NAME OPEN_PAREN term CLOSE_PAREN
|
|
622
|
+
(33) term -> . QUOTE NAME QUOTE
|
|
623
|
+
(34) term -> . QUOTE DATE QUOTE
|
|
624
|
+
(35) term -> . QUOTE NUMBER QUOTE
|
|
625
|
+
(36) term -> . NUMBER
|
|
626
|
+
(37) term -> . REGEX
|
|
627
|
+
(38) var_or_header -> . header
|
|
628
|
+
(39) var_or_header -> . var
|
|
629
|
+
(41) header -> . HEADER_SYM NAME
|
|
630
|
+
(42) header -> . HEADER_SYM NUMBER
|
|
631
|
+
(40) var -> . VAR_SYM NAME
|
|
632
|
+
|
|
633
|
+
NAME shift and go to state 8
|
|
634
|
+
QUOTE shift and go to state 16
|
|
635
|
+
NUMBER shift and go to state 14
|
|
636
|
+
REGEX shift and go to state 17
|
|
637
|
+
HEADER_SYM shift and go to state 13
|
|
638
|
+
VAR_SYM shift and go to state 18
|
|
639
|
+
|
|
640
|
+
var_or_header shift and go to state 49
|
|
641
|
+
function shift and go to state 50
|
|
642
|
+
term shift and go to state 51
|
|
643
|
+
header shift and go to state 39
|
|
644
|
+
var shift and go to state 40
|
|
645
|
+
|
|
646
|
+
state 28
|
|
647
|
+
|
|
648
|
+
(21) equality -> term op . var_or_header
|
|
649
|
+
(22) equality -> term op . term
|
|
650
|
+
(23) equality -> term op . function
|
|
651
|
+
(38) var_or_header -> . header
|
|
652
|
+
(39) var_or_header -> . var
|
|
653
|
+
(33) term -> . QUOTE NAME QUOTE
|
|
654
|
+
(34) term -> . QUOTE DATE QUOTE
|
|
655
|
+
(35) term -> . QUOTE NUMBER QUOTE
|
|
656
|
+
(36) term -> . NUMBER
|
|
657
|
+
(37) term -> . REGEX
|
|
658
|
+
(8) function -> . NAME OPEN_PAREN CLOSE_PAREN
|
|
659
|
+
(9) function -> . NAME OPEN_PAREN equality CLOSE_PAREN
|
|
660
|
+
(10) function -> . NAME OPEN_PAREN function CLOSE_PAREN
|
|
661
|
+
(11) function -> . NAME OPEN_PAREN var_or_header CLOSE_PAREN
|
|
662
|
+
(12) function -> . NAME OPEN_PAREN term CLOSE_PAREN
|
|
663
|
+
(41) header -> . HEADER_SYM NAME
|
|
664
|
+
(42) header -> . HEADER_SYM NUMBER
|
|
665
|
+
(40) var -> . VAR_SYM NAME
|
|
666
|
+
|
|
667
|
+
QUOTE shift and go to state 16
|
|
668
|
+
NUMBER shift and go to state 14
|
|
669
|
+
REGEX shift and go to state 17
|
|
670
|
+
NAME shift and go to state 8
|
|
671
|
+
HEADER_SYM shift and go to state 13
|
|
672
|
+
VAR_SYM shift and go to state 18
|
|
673
|
+
|
|
674
|
+
term shift and go to state 52
|
|
675
|
+
var_or_header shift and go to state 53
|
|
676
|
+
function shift and go to state 54
|
|
677
|
+
header shift and go to state 39
|
|
678
|
+
var shift and go to state 40
|
|
679
|
+
|
|
680
|
+
state 29
|
|
681
|
+
|
|
682
|
+
(41) header -> HEADER_SYM NAME .
|
|
683
|
+
|
|
684
|
+
RIGHT_BRACKET reduce using rule 41 (header -> HEADER_SYM NAME .)
|
|
685
|
+
NAME reduce using rule 41 (header -> HEADER_SYM NAME .)
|
|
686
|
+
HEADER_SYM reduce using rule 41 (header -> HEADER_SYM NAME .)
|
|
687
|
+
QUOTE reduce using rule 41 (header -> HEADER_SYM NAME .)
|
|
688
|
+
NUMBER reduce using rule 41 (header -> HEADER_SYM NAME .)
|
|
689
|
+
REGEX reduce using rule 41 (header -> HEADER_SYM NAME .)
|
|
690
|
+
VAR_SYM reduce using rule 41 (header -> HEADER_SYM NAME .)
|
|
691
|
+
EQUALS reduce using rule 41 (header -> HEADER_SYM NAME .)
|
|
692
|
+
OPERATION reduce using rule 41 (header -> HEADER_SYM NAME .)
|
|
693
|
+
CLOSE_PAREN reduce using rule 41 (header -> HEADER_SYM NAME .)
|
|
694
|
+
|
|
695
|
+
|
|
696
|
+
state 30
|
|
697
|
+
|
|
698
|
+
(42) header -> HEADER_SYM NUMBER .
|
|
699
|
+
|
|
700
|
+
RIGHT_BRACKET reduce using rule 42 (header -> HEADER_SYM NUMBER .)
|
|
701
|
+
NAME reduce using rule 42 (header -> HEADER_SYM NUMBER .)
|
|
702
|
+
HEADER_SYM reduce using rule 42 (header -> HEADER_SYM NUMBER .)
|
|
703
|
+
QUOTE reduce using rule 42 (header -> HEADER_SYM NUMBER .)
|
|
704
|
+
NUMBER reduce using rule 42 (header -> HEADER_SYM NUMBER .)
|
|
705
|
+
REGEX reduce using rule 42 (header -> HEADER_SYM NUMBER .)
|
|
706
|
+
VAR_SYM reduce using rule 42 (header -> HEADER_SYM NUMBER .)
|
|
707
|
+
EQUALS reduce using rule 42 (header -> HEADER_SYM NUMBER .)
|
|
708
|
+
OPERATION reduce using rule 42 (header -> HEADER_SYM NUMBER .)
|
|
709
|
+
CLOSE_PAREN reduce using rule 42 (header -> HEADER_SYM NUMBER .)
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
state 31
|
|
713
|
+
|
|
714
|
+
(29) assignment -> var ASSIGNMENT . var
|
|
715
|
+
(30) assignment -> var ASSIGNMENT . term
|
|
716
|
+
(31) assignment -> var ASSIGNMENT . function
|
|
717
|
+
(32) assignment -> var ASSIGNMENT . header
|
|
718
|
+
(40) var -> . VAR_SYM NAME
|
|
719
|
+
(33) term -> . QUOTE NAME QUOTE
|
|
720
|
+
(34) term -> . QUOTE DATE QUOTE
|
|
721
|
+
(35) term -> . QUOTE NUMBER QUOTE
|
|
722
|
+
(36) term -> . NUMBER
|
|
723
|
+
(37) term -> . REGEX
|
|
724
|
+
(8) function -> . NAME OPEN_PAREN CLOSE_PAREN
|
|
725
|
+
(9) function -> . NAME OPEN_PAREN equality CLOSE_PAREN
|
|
726
|
+
(10) function -> . NAME OPEN_PAREN function CLOSE_PAREN
|
|
727
|
+
(11) function -> . NAME OPEN_PAREN var_or_header CLOSE_PAREN
|
|
728
|
+
(12) function -> . NAME OPEN_PAREN term CLOSE_PAREN
|
|
729
|
+
(41) header -> . HEADER_SYM NAME
|
|
730
|
+
(42) header -> . HEADER_SYM NUMBER
|
|
731
|
+
|
|
732
|
+
VAR_SYM shift and go to state 18
|
|
733
|
+
QUOTE shift and go to state 16
|
|
734
|
+
NUMBER shift and go to state 14
|
|
735
|
+
REGEX shift and go to state 17
|
|
736
|
+
NAME shift and go to state 8
|
|
737
|
+
HEADER_SYM shift and go to state 13
|
|
738
|
+
|
|
739
|
+
var shift and go to state 55
|
|
740
|
+
term shift and go to state 56
|
|
741
|
+
function shift and go to state 57
|
|
742
|
+
header shift and go to state 58
|
|
743
|
+
|
|
744
|
+
state 32
|
|
745
|
+
|
|
746
|
+
(33) term -> QUOTE NAME . QUOTE
|
|
747
|
+
|
|
748
|
+
QUOTE shift and go to state 59
|
|
749
|
+
|
|
750
|
+
|
|
751
|
+
state 33
|
|
752
|
+
|
|
753
|
+
(34) term -> QUOTE DATE . QUOTE
|
|
754
|
+
|
|
755
|
+
QUOTE shift and go to state 60
|
|
756
|
+
|
|
757
|
+
|
|
758
|
+
state 34
|
|
759
|
+
|
|
760
|
+
(35) term -> QUOTE NUMBER . QUOTE
|
|
761
|
+
|
|
762
|
+
QUOTE shift and go to state 61
|
|
763
|
+
|
|
764
|
+
|
|
765
|
+
state 35
|
|
766
|
+
|
|
767
|
+
(40) var -> VAR_SYM NAME .
|
|
768
|
+
|
|
769
|
+
ASSIGNMENT reduce using rule 40 (var -> VAR_SYM NAME .)
|
|
770
|
+
EQUALS reduce using rule 40 (var -> VAR_SYM NAME .)
|
|
771
|
+
OPERATION reduce using rule 40 (var -> VAR_SYM NAME .)
|
|
772
|
+
RIGHT_BRACKET reduce using rule 40 (var -> VAR_SYM NAME .)
|
|
773
|
+
NAME reduce using rule 40 (var -> VAR_SYM NAME .)
|
|
774
|
+
HEADER_SYM reduce using rule 40 (var -> VAR_SYM NAME .)
|
|
775
|
+
QUOTE reduce using rule 40 (var -> VAR_SYM NAME .)
|
|
776
|
+
NUMBER reduce using rule 40 (var -> VAR_SYM NAME .)
|
|
777
|
+
REGEX reduce using rule 40 (var -> VAR_SYM NAME .)
|
|
778
|
+
VAR_SYM reduce using rule 40 (var -> VAR_SYM NAME .)
|
|
779
|
+
CLOSE_PAREN reduce using rule 40 (var -> VAR_SYM NAME .)
|
|
780
|
+
|
|
781
|
+
|
|
782
|
+
state 36
|
|
783
|
+
|
|
784
|
+
(16) equality -> function op function .
|
|
785
|
+
|
|
786
|
+
EQUALS reduce using rule 16 (equality -> function op function .)
|
|
787
|
+
OPERATION reduce using rule 16 (equality -> function op function .)
|
|
788
|
+
RIGHT_BRACKET reduce using rule 16 (equality -> function op function .)
|
|
789
|
+
NAME reduce using rule 16 (equality -> function op function .)
|
|
790
|
+
HEADER_SYM reduce using rule 16 (equality -> function op function .)
|
|
791
|
+
QUOTE reduce using rule 16 (equality -> function op function .)
|
|
792
|
+
NUMBER reduce using rule 16 (equality -> function op function .)
|
|
793
|
+
REGEX reduce using rule 16 (equality -> function op function .)
|
|
794
|
+
VAR_SYM reduce using rule 16 (equality -> function op function .)
|
|
795
|
+
CLOSE_PAREN reduce using rule 16 (equality -> function op function .)
|
|
796
|
+
|
|
797
|
+
|
|
798
|
+
state 37
|
|
799
|
+
|
|
800
|
+
(15) equality -> function op term .
|
|
801
|
+
|
|
802
|
+
EQUALS reduce using rule 15 (equality -> function op term .)
|
|
803
|
+
OPERATION reduce using rule 15 (equality -> function op term .)
|
|
804
|
+
RIGHT_BRACKET reduce using rule 15 (equality -> function op term .)
|
|
805
|
+
NAME reduce using rule 15 (equality -> function op term .)
|
|
806
|
+
HEADER_SYM reduce using rule 15 (equality -> function op term .)
|
|
807
|
+
QUOTE reduce using rule 15 (equality -> function op term .)
|
|
808
|
+
NUMBER reduce using rule 15 (equality -> function op term .)
|
|
809
|
+
REGEX reduce using rule 15 (equality -> function op term .)
|
|
810
|
+
VAR_SYM reduce using rule 15 (equality -> function op term .)
|
|
811
|
+
CLOSE_PAREN reduce using rule 15 (equality -> function op term .)
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
state 38
|
|
815
|
+
|
|
816
|
+
(17) equality -> function op var_or_header .
|
|
817
|
+
|
|
818
|
+
EQUALS reduce using rule 17 (equality -> function op var_or_header .)
|
|
819
|
+
OPERATION reduce using rule 17 (equality -> function op var_or_header .)
|
|
820
|
+
RIGHT_BRACKET reduce using rule 17 (equality -> function op var_or_header .)
|
|
821
|
+
NAME reduce using rule 17 (equality -> function op var_or_header .)
|
|
822
|
+
HEADER_SYM reduce using rule 17 (equality -> function op var_or_header .)
|
|
823
|
+
QUOTE reduce using rule 17 (equality -> function op var_or_header .)
|
|
824
|
+
NUMBER reduce using rule 17 (equality -> function op var_or_header .)
|
|
825
|
+
REGEX reduce using rule 17 (equality -> function op var_or_header .)
|
|
826
|
+
VAR_SYM reduce using rule 17 (equality -> function op var_or_header .)
|
|
827
|
+
CLOSE_PAREN reduce using rule 17 (equality -> function op var_or_header .)
|
|
828
|
+
|
|
829
|
+
|
|
830
|
+
state 39
|
|
831
|
+
|
|
832
|
+
(38) var_or_header -> header .
|
|
833
|
+
|
|
834
|
+
EQUALS reduce using rule 38 (var_or_header -> header .)
|
|
835
|
+
OPERATION reduce using rule 38 (var_or_header -> header .)
|
|
836
|
+
RIGHT_BRACKET reduce using rule 38 (var_or_header -> header .)
|
|
837
|
+
NAME reduce using rule 38 (var_or_header -> header .)
|
|
838
|
+
HEADER_SYM reduce using rule 38 (var_or_header -> header .)
|
|
839
|
+
QUOTE reduce using rule 38 (var_or_header -> header .)
|
|
840
|
+
NUMBER reduce using rule 38 (var_or_header -> header .)
|
|
841
|
+
REGEX reduce using rule 38 (var_or_header -> header .)
|
|
842
|
+
VAR_SYM reduce using rule 38 (var_or_header -> header .)
|
|
843
|
+
CLOSE_PAREN reduce using rule 38 (var_or_header -> header .)
|
|
844
|
+
|
|
845
|
+
|
|
846
|
+
state 40
|
|
847
|
+
|
|
848
|
+
(39) var_or_header -> var .
|
|
849
|
+
|
|
850
|
+
EQUALS reduce using rule 39 (var_or_header -> var .)
|
|
851
|
+
OPERATION reduce using rule 39 (var_or_header -> var .)
|
|
852
|
+
RIGHT_BRACKET reduce using rule 39 (var_or_header -> var .)
|
|
853
|
+
NAME reduce using rule 39 (var_or_header -> var .)
|
|
854
|
+
HEADER_SYM reduce using rule 39 (var_or_header -> var .)
|
|
855
|
+
QUOTE reduce using rule 39 (var_or_header -> var .)
|
|
856
|
+
NUMBER reduce using rule 39 (var_or_header -> var .)
|
|
857
|
+
REGEX reduce using rule 39 (var_or_header -> var .)
|
|
858
|
+
VAR_SYM reduce using rule 39 (var_or_header -> var .)
|
|
859
|
+
CLOSE_PAREN reduce using rule 39 (var_or_header -> var .)
|
|
860
|
+
|
|
861
|
+
|
|
862
|
+
state 41
|
|
863
|
+
|
|
864
|
+
(8) function -> NAME OPEN_PAREN CLOSE_PAREN .
|
|
865
|
+
|
|
866
|
+
EQUALS reduce using rule 8 (function -> NAME OPEN_PAREN CLOSE_PAREN .)
|
|
867
|
+
OPERATION reduce using rule 8 (function -> NAME OPEN_PAREN CLOSE_PAREN .)
|
|
868
|
+
RIGHT_BRACKET reduce using rule 8 (function -> NAME OPEN_PAREN CLOSE_PAREN .)
|
|
869
|
+
NAME reduce using rule 8 (function -> NAME OPEN_PAREN CLOSE_PAREN .)
|
|
870
|
+
HEADER_SYM reduce using rule 8 (function -> NAME OPEN_PAREN CLOSE_PAREN .)
|
|
871
|
+
QUOTE reduce using rule 8 (function -> NAME OPEN_PAREN CLOSE_PAREN .)
|
|
872
|
+
NUMBER reduce using rule 8 (function -> NAME OPEN_PAREN CLOSE_PAREN .)
|
|
873
|
+
REGEX reduce using rule 8 (function -> NAME OPEN_PAREN CLOSE_PAREN .)
|
|
874
|
+
VAR_SYM reduce using rule 8 (function -> NAME OPEN_PAREN CLOSE_PAREN .)
|
|
875
|
+
CLOSE_PAREN reduce using rule 8 (function -> NAME OPEN_PAREN CLOSE_PAREN .)
|
|
876
|
+
|
|
877
|
+
|
|
878
|
+
state 42
|
|
879
|
+
|
|
880
|
+
(9) function -> NAME OPEN_PAREN equality . CLOSE_PAREN
|
|
881
|
+
(24) equality -> equality . op equality
|
|
882
|
+
(25) equality -> equality . op term
|
|
883
|
+
(26) equality -> equality . op function
|
|
884
|
+
(27) op -> . EQUALS
|
|
885
|
+
(28) op -> . OPERATION
|
|
886
|
+
|
|
887
|
+
CLOSE_PAREN shift and go to state 62
|
|
888
|
+
EQUALS shift and go to state 23
|
|
889
|
+
OPERATION shift and go to state 24
|
|
890
|
+
|
|
891
|
+
op shift and go to state 26
|
|
892
|
+
|
|
893
|
+
state 43
|
|
894
|
+
|
|
895
|
+
(10) function -> NAME OPEN_PAREN function . CLOSE_PAREN
|
|
896
|
+
(15) equality -> function . op term
|
|
897
|
+
(16) equality -> function . op function
|
|
898
|
+
(17) equality -> function . op var_or_header
|
|
899
|
+
(27) op -> . EQUALS
|
|
900
|
+
(28) op -> . OPERATION
|
|
901
|
+
|
|
902
|
+
CLOSE_PAREN shift and go to state 63
|
|
903
|
+
EQUALS shift and go to state 23
|
|
904
|
+
OPERATION shift and go to state 24
|
|
905
|
+
|
|
906
|
+
op shift and go to state 22
|
|
907
|
+
|
|
908
|
+
state 44
|
|
909
|
+
|
|
910
|
+
(11) function -> NAME OPEN_PAREN var_or_header . CLOSE_PAREN
|
|
911
|
+
(18) equality -> var_or_header . op function
|
|
912
|
+
(19) equality -> var_or_header . op term
|
|
913
|
+
(20) equality -> var_or_header . op var_or_header
|
|
914
|
+
(27) op -> . EQUALS
|
|
915
|
+
(28) op -> . OPERATION
|
|
916
|
+
|
|
917
|
+
CLOSE_PAREN shift and go to state 64
|
|
918
|
+
EQUALS shift and go to state 23
|
|
919
|
+
OPERATION shift and go to state 24
|
|
920
|
+
|
|
921
|
+
op shift and go to state 27
|
|
922
|
+
|
|
923
|
+
state 45
|
|
924
|
+
|
|
925
|
+
(12) function -> NAME OPEN_PAREN term . CLOSE_PAREN
|
|
926
|
+
(21) equality -> term . op var_or_header
|
|
927
|
+
(22) equality -> term . op term
|
|
928
|
+
(23) equality -> term . op function
|
|
929
|
+
(27) op -> . EQUALS
|
|
930
|
+
(28) op -> . OPERATION
|
|
931
|
+
|
|
932
|
+
CLOSE_PAREN shift and go to state 65
|
|
933
|
+
EQUALS shift and go to state 23
|
|
934
|
+
OPERATION shift and go to state 24
|
|
935
|
+
|
|
936
|
+
op shift and go to state 28
|
|
937
|
+
|
|
938
|
+
state 46
|
|
939
|
+
|
|
940
|
+
(24) equality -> equality op equality .
|
|
941
|
+
(24) equality -> equality . op equality
|
|
942
|
+
(25) equality -> equality . op term
|
|
943
|
+
(26) equality -> equality . op function
|
|
944
|
+
(27) op -> . EQUALS
|
|
945
|
+
(28) op -> . OPERATION
|
|
946
|
+
|
|
947
|
+
! shift/reduce conflict for EQUALS resolved as shift
|
|
948
|
+
! shift/reduce conflict for OPERATION resolved as shift
|
|
949
|
+
RIGHT_BRACKET reduce using rule 24 (equality -> equality op equality .)
|
|
950
|
+
NAME reduce using rule 24 (equality -> equality op equality .)
|
|
951
|
+
HEADER_SYM reduce using rule 24 (equality -> equality op equality .)
|
|
952
|
+
QUOTE reduce using rule 24 (equality -> equality op equality .)
|
|
953
|
+
NUMBER reduce using rule 24 (equality -> equality op equality .)
|
|
954
|
+
REGEX reduce using rule 24 (equality -> equality op equality .)
|
|
955
|
+
VAR_SYM reduce using rule 24 (equality -> equality op equality .)
|
|
956
|
+
CLOSE_PAREN reduce using rule 24 (equality -> equality op equality .)
|
|
957
|
+
EQUALS shift and go to state 23
|
|
958
|
+
OPERATION shift and go to state 24
|
|
959
|
+
|
|
960
|
+
! EQUALS [ reduce using rule 24 (equality -> equality op equality .) ]
|
|
961
|
+
! OPERATION [ reduce using rule 24 (equality -> equality op equality .) ]
|
|
962
|
+
|
|
963
|
+
op shift and go to state 26
|
|
964
|
+
|
|
965
|
+
state 47
|
|
966
|
+
|
|
967
|
+
(25) equality -> equality op term .
|
|
968
|
+
(21) equality -> term . op var_or_header
|
|
969
|
+
(22) equality -> term . op term
|
|
970
|
+
(23) equality -> term . op function
|
|
971
|
+
(27) op -> . EQUALS
|
|
972
|
+
(28) op -> . OPERATION
|
|
973
|
+
|
|
974
|
+
! shift/reduce conflict for EQUALS resolved as shift
|
|
975
|
+
! shift/reduce conflict for OPERATION resolved as shift
|
|
976
|
+
RIGHT_BRACKET reduce using rule 25 (equality -> equality op term .)
|
|
977
|
+
NAME reduce using rule 25 (equality -> equality op term .)
|
|
978
|
+
HEADER_SYM reduce using rule 25 (equality -> equality op term .)
|
|
979
|
+
QUOTE reduce using rule 25 (equality -> equality op term .)
|
|
980
|
+
NUMBER reduce using rule 25 (equality -> equality op term .)
|
|
981
|
+
REGEX reduce using rule 25 (equality -> equality op term .)
|
|
982
|
+
VAR_SYM reduce using rule 25 (equality -> equality op term .)
|
|
983
|
+
CLOSE_PAREN reduce using rule 25 (equality -> equality op term .)
|
|
984
|
+
EQUALS shift and go to state 23
|
|
985
|
+
OPERATION shift and go to state 24
|
|
986
|
+
|
|
987
|
+
! EQUALS [ reduce using rule 25 (equality -> equality op term .) ]
|
|
988
|
+
! OPERATION [ reduce using rule 25 (equality -> equality op term .) ]
|
|
989
|
+
|
|
990
|
+
op shift and go to state 28
|
|
991
|
+
|
|
992
|
+
state 48
|
|
993
|
+
|
|
994
|
+
(26) equality -> equality op function .
|
|
995
|
+
(15) equality -> function . op term
|
|
996
|
+
(16) equality -> function . op function
|
|
997
|
+
(17) equality -> function . op var_or_header
|
|
998
|
+
(27) op -> . EQUALS
|
|
999
|
+
(28) op -> . OPERATION
|
|
1000
|
+
|
|
1001
|
+
! shift/reduce conflict for EQUALS resolved as shift
|
|
1002
|
+
! shift/reduce conflict for OPERATION resolved as shift
|
|
1003
|
+
RIGHT_BRACKET reduce using rule 26 (equality -> equality op function .)
|
|
1004
|
+
NAME reduce using rule 26 (equality -> equality op function .)
|
|
1005
|
+
HEADER_SYM reduce using rule 26 (equality -> equality op function .)
|
|
1006
|
+
QUOTE reduce using rule 26 (equality -> equality op function .)
|
|
1007
|
+
NUMBER reduce using rule 26 (equality -> equality op function .)
|
|
1008
|
+
REGEX reduce using rule 26 (equality -> equality op function .)
|
|
1009
|
+
VAR_SYM reduce using rule 26 (equality -> equality op function .)
|
|
1010
|
+
CLOSE_PAREN reduce using rule 26 (equality -> equality op function .)
|
|
1011
|
+
EQUALS shift and go to state 23
|
|
1012
|
+
OPERATION shift and go to state 24
|
|
1013
|
+
|
|
1014
|
+
! EQUALS [ reduce using rule 26 (equality -> equality op function .) ]
|
|
1015
|
+
! OPERATION [ reduce using rule 26 (equality -> equality op function .) ]
|
|
1016
|
+
|
|
1017
|
+
op shift and go to state 22
|
|
1018
|
+
|
|
1019
|
+
state 49
|
|
1020
|
+
|
|
1021
|
+
(20) equality -> var_or_header op var_or_header .
|
|
1022
|
+
|
|
1023
|
+
EQUALS reduce using rule 20 (equality -> var_or_header op var_or_header .)
|
|
1024
|
+
OPERATION reduce using rule 20 (equality -> var_or_header op var_or_header .)
|
|
1025
|
+
RIGHT_BRACKET reduce using rule 20 (equality -> var_or_header op var_or_header .)
|
|
1026
|
+
NAME reduce using rule 20 (equality -> var_or_header op var_or_header .)
|
|
1027
|
+
HEADER_SYM reduce using rule 20 (equality -> var_or_header op var_or_header .)
|
|
1028
|
+
QUOTE reduce using rule 20 (equality -> var_or_header op var_or_header .)
|
|
1029
|
+
NUMBER reduce using rule 20 (equality -> var_or_header op var_or_header .)
|
|
1030
|
+
REGEX reduce using rule 20 (equality -> var_or_header op var_or_header .)
|
|
1031
|
+
VAR_SYM reduce using rule 20 (equality -> var_or_header op var_or_header .)
|
|
1032
|
+
CLOSE_PAREN reduce using rule 20 (equality -> var_or_header op var_or_header .)
|
|
1033
|
+
|
|
1034
|
+
|
|
1035
|
+
state 50
|
|
1036
|
+
|
|
1037
|
+
(18) equality -> var_or_header op function .
|
|
1038
|
+
|
|
1039
|
+
EQUALS reduce using rule 18 (equality -> var_or_header op function .)
|
|
1040
|
+
OPERATION reduce using rule 18 (equality -> var_or_header op function .)
|
|
1041
|
+
RIGHT_BRACKET reduce using rule 18 (equality -> var_or_header op function .)
|
|
1042
|
+
NAME reduce using rule 18 (equality -> var_or_header op function .)
|
|
1043
|
+
HEADER_SYM reduce using rule 18 (equality -> var_or_header op function .)
|
|
1044
|
+
QUOTE reduce using rule 18 (equality -> var_or_header op function .)
|
|
1045
|
+
NUMBER reduce using rule 18 (equality -> var_or_header op function .)
|
|
1046
|
+
REGEX reduce using rule 18 (equality -> var_or_header op function .)
|
|
1047
|
+
VAR_SYM reduce using rule 18 (equality -> var_or_header op function .)
|
|
1048
|
+
CLOSE_PAREN reduce using rule 18 (equality -> var_or_header op function .)
|
|
1049
|
+
|
|
1050
|
+
|
|
1051
|
+
state 51
|
|
1052
|
+
|
|
1053
|
+
(19) equality -> var_or_header op term .
|
|
1054
|
+
|
|
1055
|
+
EQUALS reduce using rule 19 (equality -> var_or_header op term .)
|
|
1056
|
+
OPERATION reduce using rule 19 (equality -> var_or_header op term .)
|
|
1057
|
+
RIGHT_BRACKET reduce using rule 19 (equality -> var_or_header op term .)
|
|
1058
|
+
NAME reduce using rule 19 (equality -> var_or_header op term .)
|
|
1059
|
+
HEADER_SYM reduce using rule 19 (equality -> var_or_header op term .)
|
|
1060
|
+
QUOTE reduce using rule 19 (equality -> var_or_header op term .)
|
|
1061
|
+
NUMBER reduce using rule 19 (equality -> var_or_header op term .)
|
|
1062
|
+
REGEX reduce using rule 19 (equality -> var_or_header op term .)
|
|
1063
|
+
VAR_SYM reduce using rule 19 (equality -> var_or_header op term .)
|
|
1064
|
+
CLOSE_PAREN reduce using rule 19 (equality -> var_or_header op term .)
|
|
1065
|
+
|
|
1066
|
+
|
|
1067
|
+
state 52
|
|
1068
|
+
|
|
1069
|
+
(22) equality -> term op term .
|
|
1070
|
+
|
|
1071
|
+
EQUALS reduce using rule 22 (equality -> term op term .)
|
|
1072
|
+
OPERATION reduce using rule 22 (equality -> term op term .)
|
|
1073
|
+
RIGHT_BRACKET reduce using rule 22 (equality -> term op term .)
|
|
1074
|
+
NAME reduce using rule 22 (equality -> term op term .)
|
|
1075
|
+
HEADER_SYM reduce using rule 22 (equality -> term op term .)
|
|
1076
|
+
QUOTE reduce using rule 22 (equality -> term op term .)
|
|
1077
|
+
NUMBER reduce using rule 22 (equality -> term op term .)
|
|
1078
|
+
REGEX reduce using rule 22 (equality -> term op term .)
|
|
1079
|
+
VAR_SYM reduce using rule 22 (equality -> term op term .)
|
|
1080
|
+
CLOSE_PAREN reduce using rule 22 (equality -> term op term .)
|
|
1081
|
+
|
|
1082
|
+
|
|
1083
|
+
state 53
|
|
1084
|
+
|
|
1085
|
+
(21) equality -> term op var_or_header .
|
|
1086
|
+
|
|
1087
|
+
EQUALS reduce using rule 21 (equality -> term op var_or_header .)
|
|
1088
|
+
OPERATION reduce using rule 21 (equality -> term op var_or_header .)
|
|
1089
|
+
RIGHT_BRACKET reduce using rule 21 (equality -> term op var_or_header .)
|
|
1090
|
+
NAME reduce using rule 21 (equality -> term op var_or_header .)
|
|
1091
|
+
HEADER_SYM reduce using rule 21 (equality -> term op var_or_header .)
|
|
1092
|
+
QUOTE reduce using rule 21 (equality -> term op var_or_header .)
|
|
1093
|
+
NUMBER reduce using rule 21 (equality -> term op var_or_header .)
|
|
1094
|
+
REGEX reduce using rule 21 (equality -> term op var_or_header .)
|
|
1095
|
+
VAR_SYM reduce using rule 21 (equality -> term op var_or_header .)
|
|
1096
|
+
CLOSE_PAREN reduce using rule 21 (equality -> term op var_or_header .)
|
|
1097
|
+
|
|
1098
|
+
|
|
1099
|
+
state 54
|
|
1100
|
+
|
|
1101
|
+
(23) equality -> term op function .
|
|
1102
|
+
|
|
1103
|
+
EQUALS reduce using rule 23 (equality -> term op function .)
|
|
1104
|
+
OPERATION reduce using rule 23 (equality -> term op function .)
|
|
1105
|
+
RIGHT_BRACKET reduce using rule 23 (equality -> term op function .)
|
|
1106
|
+
NAME reduce using rule 23 (equality -> term op function .)
|
|
1107
|
+
HEADER_SYM reduce using rule 23 (equality -> term op function .)
|
|
1108
|
+
QUOTE reduce using rule 23 (equality -> term op function .)
|
|
1109
|
+
NUMBER reduce using rule 23 (equality -> term op function .)
|
|
1110
|
+
REGEX reduce using rule 23 (equality -> term op function .)
|
|
1111
|
+
VAR_SYM reduce using rule 23 (equality -> term op function .)
|
|
1112
|
+
CLOSE_PAREN reduce using rule 23 (equality -> term op function .)
|
|
1113
|
+
|
|
1114
|
+
|
|
1115
|
+
state 55
|
|
1116
|
+
|
|
1117
|
+
(29) assignment -> var ASSIGNMENT var .
|
|
1118
|
+
|
|
1119
|
+
RIGHT_BRACKET reduce using rule 29 (assignment -> var ASSIGNMENT var .)
|
|
1120
|
+
NAME reduce using rule 29 (assignment -> var ASSIGNMENT var .)
|
|
1121
|
+
HEADER_SYM reduce using rule 29 (assignment -> var ASSIGNMENT var .)
|
|
1122
|
+
QUOTE reduce using rule 29 (assignment -> var ASSIGNMENT var .)
|
|
1123
|
+
NUMBER reduce using rule 29 (assignment -> var ASSIGNMENT var .)
|
|
1124
|
+
REGEX reduce using rule 29 (assignment -> var ASSIGNMENT var .)
|
|
1125
|
+
VAR_SYM reduce using rule 29 (assignment -> var ASSIGNMENT var .)
|
|
1126
|
+
|
|
1127
|
+
|
|
1128
|
+
state 56
|
|
1129
|
+
|
|
1130
|
+
(30) assignment -> var ASSIGNMENT term .
|
|
1131
|
+
|
|
1132
|
+
RIGHT_BRACKET reduce using rule 30 (assignment -> var ASSIGNMENT term .)
|
|
1133
|
+
NAME reduce using rule 30 (assignment -> var ASSIGNMENT term .)
|
|
1134
|
+
HEADER_SYM reduce using rule 30 (assignment -> var ASSIGNMENT term .)
|
|
1135
|
+
QUOTE reduce using rule 30 (assignment -> var ASSIGNMENT term .)
|
|
1136
|
+
NUMBER reduce using rule 30 (assignment -> var ASSIGNMENT term .)
|
|
1137
|
+
REGEX reduce using rule 30 (assignment -> var ASSIGNMENT term .)
|
|
1138
|
+
VAR_SYM reduce using rule 30 (assignment -> var ASSIGNMENT term .)
|
|
1139
|
+
|
|
1140
|
+
|
|
1141
|
+
state 57
|
|
1142
|
+
|
|
1143
|
+
(31) assignment -> var ASSIGNMENT function .
|
|
1144
|
+
|
|
1145
|
+
RIGHT_BRACKET reduce using rule 31 (assignment -> var ASSIGNMENT function .)
|
|
1146
|
+
NAME reduce using rule 31 (assignment -> var ASSIGNMENT function .)
|
|
1147
|
+
HEADER_SYM reduce using rule 31 (assignment -> var ASSIGNMENT function .)
|
|
1148
|
+
QUOTE reduce using rule 31 (assignment -> var ASSIGNMENT function .)
|
|
1149
|
+
NUMBER reduce using rule 31 (assignment -> var ASSIGNMENT function .)
|
|
1150
|
+
REGEX reduce using rule 31 (assignment -> var ASSIGNMENT function .)
|
|
1151
|
+
VAR_SYM reduce using rule 31 (assignment -> var ASSIGNMENT function .)
|
|
1152
|
+
|
|
1153
|
+
|
|
1154
|
+
state 58
|
|
1155
|
+
|
|
1156
|
+
(32) assignment -> var ASSIGNMENT header .
|
|
1157
|
+
|
|
1158
|
+
RIGHT_BRACKET reduce using rule 32 (assignment -> var ASSIGNMENT header .)
|
|
1159
|
+
NAME reduce using rule 32 (assignment -> var ASSIGNMENT header .)
|
|
1160
|
+
HEADER_SYM reduce using rule 32 (assignment -> var ASSIGNMENT header .)
|
|
1161
|
+
QUOTE reduce using rule 32 (assignment -> var ASSIGNMENT header .)
|
|
1162
|
+
NUMBER reduce using rule 32 (assignment -> var ASSIGNMENT header .)
|
|
1163
|
+
REGEX reduce using rule 32 (assignment -> var ASSIGNMENT header .)
|
|
1164
|
+
VAR_SYM reduce using rule 32 (assignment -> var ASSIGNMENT header .)
|
|
1165
|
+
|
|
1166
|
+
|
|
1167
|
+
state 59
|
|
1168
|
+
|
|
1169
|
+
(33) term -> QUOTE NAME QUOTE .
|
|
1170
|
+
|
|
1171
|
+
EQUALS reduce using rule 33 (term -> QUOTE NAME QUOTE .)
|
|
1172
|
+
OPERATION reduce using rule 33 (term -> QUOTE NAME QUOTE .)
|
|
1173
|
+
RIGHT_BRACKET reduce using rule 33 (term -> QUOTE NAME QUOTE .)
|
|
1174
|
+
NAME reduce using rule 33 (term -> QUOTE NAME QUOTE .)
|
|
1175
|
+
HEADER_SYM reduce using rule 33 (term -> QUOTE NAME QUOTE .)
|
|
1176
|
+
QUOTE reduce using rule 33 (term -> QUOTE NAME QUOTE .)
|
|
1177
|
+
NUMBER reduce using rule 33 (term -> QUOTE NAME QUOTE .)
|
|
1178
|
+
REGEX reduce using rule 33 (term -> QUOTE NAME QUOTE .)
|
|
1179
|
+
VAR_SYM reduce using rule 33 (term -> QUOTE NAME QUOTE .)
|
|
1180
|
+
CLOSE_PAREN reduce using rule 33 (term -> QUOTE NAME QUOTE .)
|
|
1181
|
+
|
|
1182
|
+
|
|
1183
|
+
state 60
|
|
1184
|
+
|
|
1185
|
+
(34) term -> QUOTE DATE QUOTE .
|
|
1186
|
+
|
|
1187
|
+
EQUALS reduce using rule 34 (term -> QUOTE DATE QUOTE .)
|
|
1188
|
+
OPERATION reduce using rule 34 (term -> QUOTE DATE QUOTE .)
|
|
1189
|
+
RIGHT_BRACKET reduce using rule 34 (term -> QUOTE DATE QUOTE .)
|
|
1190
|
+
NAME reduce using rule 34 (term -> QUOTE DATE QUOTE .)
|
|
1191
|
+
HEADER_SYM reduce using rule 34 (term -> QUOTE DATE QUOTE .)
|
|
1192
|
+
QUOTE reduce using rule 34 (term -> QUOTE DATE QUOTE .)
|
|
1193
|
+
NUMBER reduce using rule 34 (term -> QUOTE DATE QUOTE .)
|
|
1194
|
+
REGEX reduce using rule 34 (term -> QUOTE DATE QUOTE .)
|
|
1195
|
+
VAR_SYM reduce using rule 34 (term -> QUOTE DATE QUOTE .)
|
|
1196
|
+
CLOSE_PAREN reduce using rule 34 (term -> QUOTE DATE QUOTE .)
|
|
1197
|
+
|
|
1198
|
+
|
|
1199
|
+
state 61
|
|
1200
|
+
|
|
1201
|
+
(35) term -> QUOTE NUMBER QUOTE .
|
|
1202
|
+
|
|
1203
|
+
EQUALS reduce using rule 35 (term -> QUOTE NUMBER QUOTE .)
|
|
1204
|
+
OPERATION reduce using rule 35 (term -> QUOTE NUMBER QUOTE .)
|
|
1205
|
+
RIGHT_BRACKET reduce using rule 35 (term -> QUOTE NUMBER QUOTE .)
|
|
1206
|
+
NAME reduce using rule 35 (term -> QUOTE NUMBER QUOTE .)
|
|
1207
|
+
HEADER_SYM reduce using rule 35 (term -> QUOTE NUMBER QUOTE .)
|
|
1208
|
+
QUOTE reduce using rule 35 (term -> QUOTE NUMBER QUOTE .)
|
|
1209
|
+
NUMBER reduce using rule 35 (term -> QUOTE NUMBER QUOTE .)
|
|
1210
|
+
REGEX reduce using rule 35 (term -> QUOTE NUMBER QUOTE .)
|
|
1211
|
+
VAR_SYM reduce using rule 35 (term -> QUOTE NUMBER QUOTE .)
|
|
1212
|
+
CLOSE_PAREN reduce using rule 35 (term -> QUOTE NUMBER QUOTE .)
|
|
1213
|
+
|
|
1214
|
+
|
|
1215
|
+
state 62
|
|
1216
|
+
|
|
1217
|
+
(9) function -> NAME OPEN_PAREN equality CLOSE_PAREN .
|
|
1218
|
+
|
|
1219
|
+
EQUALS reduce using rule 9 (function -> NAME OPEN_PAREN equality CLOSE_PAREN .)
|
|
1220
|
+
OPERATION reduce using rule 9 (function -> NAME OPEN_PAREN equality CLOSE_PAREN .)
|
|
1221
|
+
RIGHT_BRACKET reduce using rule 9 (function -> NAME OPEN_PAREN equality CLOSE_PAREN .)
|
|
1222
|
+
NAME reduce using rule 9 (function -> NAME OPEN_PAREN equality CLOSE_PAREN .)
|
|
1223
|
+
HEADER_SYM reduce using rule 9 (function -> NAME OPEN_PAREN equality CLOSE_PAREN .)
|
|
1224
|
+
QUOTE reduce using rule 9 (function -> NAME OPEN_PAREN equality CLOSE_PAREN .)
|
|
1225
|
+
NUMBER reduce using rule 9 (function -> NAME OPEN_PAREN equality CLOSE_PAREN .)
|
|
1226
|
+
REGEX reduce using rule 9 (function -> NAME OPEN_PAREN equality CLOSE_PAREN .)
|
|
1227
|
+
VAR_SYM reduce using rule 9 (function -> NAME OPEN_PAREN equality CLOSE_PAREN .)
|
|
1228
|
+
CLOSE_PAREN reduce using rule 9 (function -> NAME OPEN_PAREN equality CLOSE_PAREN .)
|
|
1229
|
+
|
|
1230
|
+
|
|
1231
|
+
state 63
|
|
1232
|
+
|
|
1233
|
+
(10) function -> NAME OPEN_PAREN function CLOSE_PAREN .
|
|
1234
|
+
|
|
1235
|
+
EQUALS reduce using rule 10 (function -> NAME OPEN_PAREN function CLOSE_PAREN .)
|
|
1236
|
+
OPERATION reduce using rule 10 (function -> NAME OPEN_PAREN function CLOSE_PAREN .)
|
|
1237
|
+
RIGHT_BRACKET reduce using rule 10 (function -> NAME OPEN_PAREN function CLOSE_PAREN .)
|
|
1238
|
+
NAME reduce using rule 10 (function -> NAME OPEN_PAREN function CLOSE_PAREN .)
|
|
1239
|
+
HEADER_SYM reduce using rule 10 (function -> NAME OPEN_PAREN function CLOSE_PAREN .)
|
|
1240
|
+
QUOTE reduce using rule 10 (function -> NAME OPEN_PAREN function CLOSE_PAREN .)
|
|
1241
|
+
NUMBER reduce using rule 10 (function -> NAME OPEN_PAREN function CLOSE_PAREN .)
|
|
1242
|
+
REGEX reduce using rule 10 (function -> NAME OPEN_PAREN function CLOSE_PAREN .)
|
|
1243
|
+
VAR_SYM reduce using rule 10 (function -> NAME OPEN_PAREN function CLOSE_PAREN .)
|
|
1244
|
+
CLOSE_PAREN reduce using rule 10 (function -> NAME OPEN_PAREN function CLOSE_PAREN .)
|
|
1245
|
+
|
|
1246
|
+
|
|
1247
|
+
state 64
|
|
1248
|
+
|
|
1249
|
+
(11) function -> NAME OPEN_PAREN var_or_header CLOSE_PAREN .
|
|
1250
|
+
|
|
1251
|
+
EQUALS reduce using rule 11 (function -> NAME OPEN_PAREN var_or_header CLOSE_PAREN .)
|
|
1252
|
+
OPERATION reduce using rule 11 (function -> NAME OPEN_PAREN var_or_header CLOSE_PAREN .)
|
|
1253
|
+
RIGHT_BRACKET reduce using rule 11 (function -> NAME OPEN_PAREN var_or_header CLOSE_PAREN .)
|
|
1254
|
+
NAME reduce using rule 11 (function -> NAME OPEN_PAREN var_or_header CLOSE_PAREN .)
|
|
1255
|
+
HEADER_SYM reduce using rule 11 (function -> NAME OPEN_PAREN var_or_header CLOSE_PAREN .)
|
|
1256
|
+
QUOTE reduce using rule 11 (function -> NAME OPEN_PAREN var_or_header CLOSE_PAREN .)
|
|
1257
|
+
NUMBER reduce using rule 11 (function -> NAME OPEN_PAREN var_or_header CLOSE_PAREN .)
|
|
1258
|
+
REGEX reduce using rule 11 (function -> NAME OPEN_PAREN var_or_header CLOSE_PAREN .)
|
|
1259
|
+
VAR_SYM reduce using rule 11 (function -> NAME OPEN_PAREN var_or_header CLOSE_PAREN .)
|
|
1260
|
+
CLOSE_PAREN reduce using rule 11 (function -> NAME OPEN_PAREN var_or_header CLOSE_PAREN .)
|
|
1261
|
+
|
|
1262
|
+
|
|
1263
|
+
state 65
|
|
1264
|
+
|
|
1265
|
+
(12) function -> NAME OPEN_PAREN term CLOSE_PAREN .
|
|
1266
|
+
|
|
1267
|
+
EQUALS reduce using rule 12 (function -> NAME OPEN_PAREN term CLOSE_PAREN .)
|
|
1268
|
+
OPERATION reduce using rule 12 (function -> NAME OPEN_PAREN term CLOSE_PAREN .)
|
|
1269
|
+
RIGHT_BRACKET reduce using rule 12 (function -> NAME OPEN_PAREN term CLOSE_PAREN .)
|
|
1270
|
+
NAME reduce using rule 12 (function -> NAME OPEN_PAREN term CLOSE_PAREN .)
|
|
1271
|
+
HEADER_SYM reduce using rule 12 (function -> NAME OPEN_PAREN term CLOSE_PAREN .)
|
|
1272
|
+
QUOTE reduce using rule 12 (function -> NAME OPEN_PAREN term CLOSE_PAREN .)
|
|
1273
|
+
NUMBER reduce using rule 12 (function -> NAME OPEN_PAREN term CLOSE_PAREN .)
|
|
1274
|
+
REGEX reduce using rule 12 (function -> NAME OPEN_PAREN term CLOSE_PAREN .)
|
|
1275
|
+
VAR_SYM reduce using rule 12 (function -> NAME OPEN_PAREN term CLOSE_PAREN .)
|
|
1276
|
+
CLOSE_PAREN reduce using rule 12 (function -> NAME OPEN_PAREN term CLOSE_PAREN .)
|
|
1277
|
+
|
|
1278
|
+
WARNING:
|
|
1279
|
+
WARNING: Conflicts:
|
|
1280
|
+
WARNING:
|
|
1281
|
+
WARNING: shift/reduce conflict for RIGHT_BRACKET in state 3 resolved as shift
|
|
1282
|
+
WARNING: shift/reduce conflict for EQUALS in state 46 resolved as shift
|
|
1283
|
+
WARNING: shift/reduce conflict for OPERATION in state 46 resolved as shift
|
|
1284
|
+
WARNING: shift/reduce conflict for EQUALS in state 47 resolved as shift
|
|
1285
|
+
WARNING: shift/reduce conflict for OPERATION in state 47 resolved as shift
|
|
1286
|
+
WARNING: shift/reduce conflict for EQUALS in state 48 resolved as shift
|
|
1287
|
+
WARNING: shift/reduce conflict for OPERATION in state 48 resolved as shift
|