-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparser.out
More file actions
1909 lines (1486 loc) · 64.3 KB
/
Copy pathparser.out
File metadata and controls
1909 lines (1486 loc) · 64.3 KB
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Created by PLY version 3.11 (http://www.dabeaz.com/ply)
Grammar
Rule 0 S' -> converter
Rule 1 converter -> file
Rule 2 file -> file_lines last_line
Rule 3 file_lines -> line
Rule 4 file_lines -> file_lines line
Rule 5 line -> NEWLINE
Rule 6 line -> elem_newline
Rule 7 last_line -> elem
Rule 8 last_line -> empty
Rule 9 elem_newline -> atrib NEWLINE
Rule 10 elem_newline -> table NEWLINE
Rule 11 elem_newline -> array_table NEWLINE
Rule 12 empty -> <empty>
Rule 13 elem -> atrib
Rule 14 elem -> table
Rule 15 elem -> array_table
Rule 16 atrib -> FLOAT EQUALS content
Rule 17 atrib -> key EQUALS content
Rule 18 atrib -> key EQUALS content COMMENT
Rule 19 atrib -> key DOT atrib
Rule 20 content -> value
Rule 21 content -> APAR arr_cont
Rule 22 content -> APAR NEWLINE arr_cont
Rule 23 content -> ACHAV table_cont
Rule 24 arr_cont -> CPAR
Rule 25 arr_cont -> a_cont CPAR
Rule 26 arr_cont -> a_cont COMMA CPAR
Rule 27 arr_cont -> a_cont NEWLINE CPAR
Rule 28 arr_cont -> a_cont COMMA NEWLINE CPAR
Rule 29 a_cont -> COMMENT NEWLINE a_cont
Rule 30 a_cont -> COMMENT NEWLINE
Rule 31 a_cont -> a_cont COMMA NEWLINE
Rule 32 a_cont -> content
Rule 33 a_cont -> a_cont COMMA a_cont
Rule 34 a_cont -> a_cont COMMA NEWLINE a_cont
Rule 35 table_cont -> CCHAV
Rule 36 table_cont -> t_cont CCHAV
Rule 37 t_cont -> key EQUALS content
Rule 38 t_cont -> t_cont COMMA key EQUALS content
Rule 39 key -> KEY
Rule 40 key -> INTEGER
Rule 41 key -> STRING
Rule 42 key -> STRING_LITERAL
Rule 43 value -> STRING
Rule 44 value -> BOOL
Rule 45 value -> NULL
Rule 46 value -> INTEGER
Rule 47 value -> FLOAT
Rule 48 value -> BINARY
Rule 49 value -> OCTAL
Rule 50 value -> HEXA
Rule 51 value -> NAN
Rule 52 value -> INFINITY
Rule 53 value -> DATE
Rule 54 value -> TIME
Rule 55 value -> DATETIME
Rule 56 value -> MULTILINE_STRING
Rule 57 value -> STRING_LITERAL
Rule 58 value -> MULTILINE_STRING_LITERAL
Rule 59 table -> table NEWLINE COMMENT
Rule 60 table -> table NEWLINE atrib
Rule 61 table -> APAR tab_cont CPAR
Rule 62 table -> APAR tab_cont CPAR COMMENT
Rule 63 tab_cont -> FLOAT
Rule 64 tab_cont -> tab_cont DOT tab_cont
Rule 65 tab_cont -> key
Rule 66 array_table -> array_table NEWLINE COMMENT
Rule 67 array_table -> array_table NEWLINE atrib
Rule 68 array_table -> APAR2 arr_table_cont CPAR2
Rule 69 array_table -> APAR2 arr_table_cont CPAR2 COMMENT
Rule 70 arr_table_cont -> arr_table_cont DOT arr_table_cont
Rule 71 arr_table_cont -> key
Terminals, with rules where they appear
ACHAV : 23
APAR : 21 22 61 62
APAR2 : 68 69
BINARY : 48
BOOL : 44
CCHAV : 35 36
COMMA : 26 28 31 33 34 38
COMMENT : 18 29 30 59 62 66 69
CPAR : 24 25 26 27 28 61 62
CPAR2 : 68 69
DATE : 53
DATETIME : 55
DOT : 19 64 70
EQUALS : 16 17 18 37 38
FLOAT : 16 47 63
HEXA : 50
INFINITY : 52
INTEGER : 40 46
KEY : 39
MULTILINE_STRING : 56
MULTILINE_STRING_LITERAL : 58
NAN : 51
NEWLINE : 5 9 10 11 22 27 28 29 30 31 34 59 60 66 67
NULL : 45
OCTAL : 49
STRING : 41 43
STRING_LITERAL : 42 57
TIME : 54
error :
Nonterminals, with rules where they appear
a_cont : 25 26 27 28 29 31 33 33 34 34
arr_cont : 21 22
arr_table_cont : 68 69 70 70
array_table : 11 15 66 67
atrib : 9 13 19 60 67
content : 16 17 18 32 37 38
converter : 0
elem : 7
elem_newline : 6
empty : 8
file : 1
file_lines : 2 4
key : 17 18 19 37 38 65 71
last_line : 2
line : 3 4
t_cont : 36 38
tab_cont : 61 62 64 64
table : 10 14 59 60
table_cont : 23
value : 20
Parsing method: LALR
state 0
(0) S' -> . converter
(1) converter -> . file
(2) file -> . file_lines last_line
(3) file_lines -> . line
(4) file_lines -> . file_lines line
(5) line -> . NEWLINE
(6) line -> . elem_newline
(9) elem_newline -> . atrib NEWLINE
(10) elem_newline -> . table NEWLINE
(11) elem_newline -> . array_table NEWLINE
(16) atrib -> . FLOAT EQUALS content
(17) atrib -> . key EQUALS content
(18) atrib -> . key EQUALS content COMMENT
(19) atrib -> . key DOT atrib
(59) table -> . table NEWLINE COMMENT
(60) table -> . table NEWLINE atrib
(61) table -> . APAR tab_cont CPAR
(62) table -> . APAR tab_cont CPAR COMMENT
(66) array_table -> . array_table NEWLINE COMMENT
(67) array_table -> . array_table NEWLINE atrib
(68) array_table -> . APAR2 arr_table_cont CPAR2
(69) array_table -> . APAR2 arr_table_cont CPAR2 COMMENT
(39) key -> . KEY
(40) key -> . INTEGER
(41) key -> . STRING
(42) key -> . STRING_LITERAL
NEWLINE shift and go to state 5
FLOAT shift and go to state 10
APAR shift and go to state 12
APAR2 shift and go to state 13
KEY shift and go to state 14
INTEGER shift and go to state 15
STRING shift and go to state 16
STRING_LITERAL shift and go to state 17
converter shift and go to state 1
file shift and go to state 2
file_lines shift and go to state 3
line shift and go to state 4
elem_newline shift and go to state 6
atrib shift and go to state 7
table shift and go to state 8
array_table shift and go to state 9
key shift and go to state 11
state 1
(0) S' -> converter .
state 2
(1) converter -> file .
$end reduce using rule 1 (converter -> file .)
state 3
(2) file -> file_lines . last_line
(4) file_lines -> file_lines . line
(7) last_line -> . elem
(8) last_line -> . empty
(5) line -> . NEWLINE
(6) line -> . elem_newline
(13) elem -> . atrib
(14) elem -> . table
(15) elem -> . array_table
(12) empty -> .
(9) elem_newline -> . atrib NEWLINE
(10) elem_newline -> . table NEWLINE
(11) elem_newline -> . array_table NEWLINE
(16) atrib -> . FLOAT EQUALS content
(17) atrib -> . key EQUALS content
(18) atrib -> . key EQUALS content COMMENT
(19) atrib -> . key DOT atrib
(59) table -> . table NEWLINE COMMENT
(60) table -> . table NEWLINE atrib
(61) table -> . APAR tab_cont CPAR
(62) table -> . APAR tab_cont CPAR COMMENT
(66) array_table -> . array_table NEWLINE COMMENT
(67) array_table -> . array_table NEWLINE atrib
(68) array_table -> . APAR2 arr_table_cont CPAR2
(69) array_table -> . APAR2 arr_table_cont CPAR2 COMMENT
(39) key -> . KEY
(40) key -> . INTEGER
(41) key -> . STRING
(42) key -> . STRING_LITERAL
NEWLINE shift and go to state 5
$end reduce using rule 12 (empty -> .)
FLOAT shift and go to state 10
APAR shift and go to state 12
APAR2 shift and go to state 13
KEY shift and go to state 14
INTEGER shift and go to state 15
STRING shift and go to state 16
STRING_LITERAL shift and go to state 17
last_line shift and go to state 18
line shift and go to state 19
elem shift and go to state 20
empty shift and go to state 21
elem_newline shift and go to state 6
atrib shift and go to state 22
table shift and go to state 23
array_table shift and go to state 24
key shift and go to state 11
state 4
(3) file_lines -> line .
NEWLINE reduce using rule 3 (file_lines -> line .)
FLOAT reduce using rule 3 (file_lines -> line .)
APAR reduce using rule 3 (file_lines -> line .)
APAR2 reduce using rule 3 (file_lines -> line .)
KEY reduce using rule 3 (file_lines -> line .)
INTEGER reduce using rule 3 (file_lines -> line .)
STRING reduce using rule 3 (file_lines -> line .)
STRING_LITERAL reduce using rule 3 (file_lines -> line .)
$end reduce using rule 3 (file_lines -> line .)
state 5
(5) line -> NEWLINE .
NEWLINE reduce using rule 5 (line -> NEWLINE .)
FLOAT reduce using rule 5 (line -> NEWLINE .)
APAR reduce using rule 5 (line -> NEWLINE .)
APAR2 reduce using rule 5 (line -> NEWLINE .)
KEY reduce using rule 5 (line -> NEWLINE .)
INTEGER reduce using rule 5 (line -> NEWLINE .)
STRING reduce using rule 5 (line -> NEWLINE .)
STRING_LITERAL reduce using rule 5 (line -> NEWLINE .)
$end reduce using rule 5 (line -> NEWLINE .)
state 6
(6) line -> elem_newline .
NEWLINE reduce using rule 6 (line -> elem_newline .)
FLOAT reduce using rule 6 (line -> elem_newline .)
APAR reduce using rule 6 (line -> elem_newline .)
APAR2 reduce using rule 6 (line -> elem_newline .)
KEY reduce using rule 6 (line -> elem_newline .)
INTEGER reduce using rule 6 (line -> elem_newline .)
STRING reduce using rule 6 (line -> elem_newline .)
STRING_LITERAL reduce using rule 6 (line -> elem_newline .)
$end reduce using rule 6 (line -> elem_newline .)
state 7
(9) elem_newline -> atrib . NEWLINE
NEWLINE shift and go to state 25
state 8
(10) elem_newline -> table . NEWLINE
(59) table -> table . NEWLINE COMMENT
(60) table -> table . NEWLINE atrib
NEWLINE shift and go to state 26
state 9
(11) elem_newline -> array_table . NEWLINE
(66) array_table -> array_table . NEWLINE COMMENT
(67) array_table -> array_table . NEWLINE atrib
NEWLINE shift and go to state 27
state 10
(16) atrib -> FLOAT . EQUALS content
EQUALS shift and go to state 28
state 11
(17) atrib -> key . EQUALS content
(18) atrib -> key . EQUALS content COMMENT
(19) atrib -> key . DOT atrib
EQUALS shift and go to state 29
DOT shift and go to state 30
state 12
(61) table -> APAR . tab_cont CPAR
(62) table -> APAR . tab_cont CPAR COMMENT
(63) tab_cont -> . FLOAT
(64) tab_cont -> . tab_cont DOT tab_cont
(65) tab_cont -> . key
(39) key -> . KEY
(40) key -> . INTEGER
(41) key -> . STRING
(42) key -> . STRING_LITERAL
FLOAT shift and go to state 32
KEY shift and go to state 14
INTEGER shift and go to state 15
STRING shift and go to state 16
STRING_LITERAL shift and go to state 17
tab_cont shift and go to state 31
key shift and go to state 33
state 13
(68) array_table -> APAR2 . arr_table_cont CPAR2
(69) array_table -> APAR2 . arr_table_cont CPAR2 COMMENT
(70) arr_table_cont -> . arr_table_cont DOT arr_table_cont
(71) arr_table_cont -> . key
(39) key -> . KEY
(40) key -> . INTEGER
(41) key -> . STRING
(42) key -> . STRING_LITERAL
KEY shift and go to state 14
INTEGER shift and go to state 15
STRING shift and go to state 16
STRING_LITERAL shift and go to state 17
arr_table_cont shift and go to state 34
key shift and go to state 35
state 14
(39) key -> KEY .
EQUALS reduce using rule 39 (key -> KEY .)
DOT reduce using rule 39 (key -> KEY .)
CPAR reduce using rule 39 (key -> KEY .)
CPAR2 reduce using rule 39 (key -> KEY .)
state 15
(40) key -> INTEGER .
EQUALS reduce using rule 40 (key -> INTEGER .)
DOT reduce using rule 40 (key -> INTEGER .)
CPAR reduce using rule 40 (key -> INTEGER .)
CPAR2 reduce using rule 40 (key -> INTEGER .)
state 16
(41) key -> STRING .
EQUALS reduce using rule 41 (key -> STRING .)
DOT reduce using rule 41 (key -> STRING .)
CPAR reduce using rule 41 (key -> STRING .)
CPAR2 reduce using rule 41 (key -> STRING .)
state 17
(42) key -> STRING_LITERAL .
EQUALS reduce using rule 42 (key -> STRING_LITERAL .)
DOT reduce using rule 42 (key -> STRING_LITERAL .)
CPAR reduce using rule 42 (key -> STRING_LITERAL .)
CPAR2 reduce using rule 42 (key -> STRING_LITERAL .)
state 18
(2) file -> file_lines last_line .
$end reduce using rule 2 (file -> file_lines last_line .)
state 19
(4) file_lines -> file_lines line .
NEWLINE reduce using rule 4 (file_lines -> file_lines line .)
FLOAT reduce using rule 4 (file_lines -> file_lines line .)
APAR reduce using rule 4 (file_lines -> file_lines line .)
APAR2 reduce using rule 4 (file_lines -> file_lines line .)
KEY reduce using rule 4 (file_lines -> file_lines line .)
INTEGER reduce using rule 4 (file_lines -> file_lines line .)
STRING reduce using rule 4 (file_lines -> file_lines line .)
STRING_LITERAL reduce using rule 4 (file_lines -> file_lines line .)
$end reduce using rule 4 (file_lines -> file_lines line .)
state 20
(7) last_line -> elem .
$end reduce using rule 7 (last_line -> elem .)
state 21
(8) last_line -> empty .
$end reduce using rule 8 (last_line -> empty .)
state 22
(13) elem -> atrib .
(9) elem_newline -> atrib . NEWLINE
$end reduce using rule 13 (elem -> atrib .)
NEWLINE shift and go to state 25
state 23
(14) elem -> table .
(10) elem_newline -> table . NEWLINE
(59) table -> table . NEWLINE COMMENT
(60) table -> table . NEWLINE atrib
$end reduce using rule 14 (elem -> table .)
NEWLINE shift and go to state 26
state 24
(15) elem -> array_table .
(11) elem_newline -> array_table . NEWLINE
(66) array_table -> array_table . NEWLINE COMMENT
(67) array_table -> array_table . NEWLINE atrib
$end reduce using rule 15 (elem -> array_table .)
NEWLINE shift and go to state 27
state 25
(9) elem_newline -> atrib NEWLINE .
NEWLINE reduce using rule 9 (elem_newline -> atrib NEWLINE .)
FLOAT reduce using rule 9 (elem_newline -> atrib NEWLINE .)
APAR reduce using rule 9 (elem_newline -> atrib NEWLINE .)
APAR2 reduce using rule 9 (elem_newline -> atrib NEWLINE .)
KEY reduce using rule 9 (elem_newline -> atrib NEWLINE .)
INTEGER reduce using rule 9 (elem_newline -> atrib NEWLINE .)
STRING reduce using rule 9 (elem_newline -> atrib NEWLINE .)
STRING_LITERAL reduce using rule 9 (elem_newline -> atrib NEWLINE .)
$end reduce using rule 9 (elem_newline -> atrib NEWLINE .)
state 26
(10) elem_newline -> table NEWLINE .
(59) table -> table NEWLINE . COMMENT
(60) table -> table NEWLINE . atrib
(16) atrib -> . FLOAT EQUALS content
(17) atrib -> . key EQUALS content
(18) atrib -> . key EQUALS content COMMENT
(19) atrib -> . key DOT atrib
(39) key -> . KEY
(40) key -> . INTEGER
(41) key -> . STRING
(42) key -> . STRING_LITERAL
! shift/reduce conflict for FLOAT resolved as shift
! shift/reduce conflict for KEY resolved as shift
! shift/reduce conflict for INTEGER resolved as shift
! shift/reduce conflict for STRING resolved as shift
! shift/reduce conflict for STRING_LITERAL resolved as shift
NEWLINE reduce using rule 10 (elem_newline -> table NEWLINE .)
APAR reduce using rule 10 (elem_newline -> table NEWLINE .)
APAR2 reduce using rule 10 (elem_newline -> table NEWLINE .)
$end reduce using rule 10 (elem_newline -> table NEWLINE .)
COMMENT shift and go to state 36
FLOAT shift and go to state 10
KEY shift and go to state 14
INTEGER shift and go to state 15
STRING shift and go to state 16
STRING_LITERAL shift and go to state 17
! FLOAT [ reduce using rule 10 (elem_newline -> table NEWLINE .) ]
! KEY [ reduce using rule 10 (elem_newline -> table NEWLINE .) ]
! INTEGER [ reduce using rule 10 (elem_newline -> table NEWLINE .) ]
! STRING [ reduce using rule 10 (elem_newline -> table NEWLINE .) ]
! STRING_LITERAL [ reduce using rule 10 (elem_newline -> table NEWLINE .) ]
atrib shift and go to state 37
key shift and go to state 11
state 27
(11) elem_newline -> array_table NEWLINE .
(66) array_table -> array_table NEWLINE . COMMENT
(67) array_table -> array_table NEWLINE . atrib
(16) atrib -> . FLOAT EQUALS content
(17) atrib -> . key EQUALS content
(18) atrib -> . key EQUALS content COMMENT
(19) atrib -> . key DOT atrib
(39) key -> . KEY
(40) key -> . INTEGER
(41) key -> . STRING
(42) key -> . STRING_LITERAL
! shift/reduce conflict for FLOAT resolved as shift
! shift/reduce conflict for KEY resolved as shift
! shift/reduce conflict for INTEGER resolved as shift
! shift/reduce conflict for STRING resolved as shift
! shift/reduce conflict for STRING_LITERAL resolved as shift
NEWLINE reduce using rule 11 (elem_newline -> array_table NEWLINE .)
APAR reduce using rule 11 (elem_newline -> array_table NEWLINE .)
APAR2 reduce using rule 11 (elem_newline -> array_table NEWLINE .)
$end reduce using rule 11 (elem_newline -> array_table NEWLINE .)
COMMENT shift and go to state 38
FLOAT shift and go to state 10
KEY shift and go to state 14
INTEGER shift and go to state 15
STRING shift and go to state 16
STRING_LITERAL shift and go to state 17
! FLOAT [ reduce using rule 11 (elem_newline -> array_table NEWLINE .) ]
! KEY [ reduce using rule 11 (elem_newline -> array_table NEWLINE .) ]
! INTEGER [ reduce using rule 11 (elem_newline -> array_table NEWLINE .) ]
! STRING [ reduce using rule 11 (elem_newline -> array_table NEWLINE .) ]
! STRING_LITERAL [ reduce using rule 11 (elem_newline -> array_table NEWLINE .) ]
atrib shift and go to state 39
key shift and go to state 11
state 28
(16) atrib -> FLOAT EQUALS . content
(20) content -> . value
(21) content -> . APAR arr_cont
(22) content -> . APAR NEWLINE arr_cont
(23) content -> . ACHAV table_cont
(43) value -> . STRING
(44) value -> . BOOL
(45) value -> . NULL
(46) value -> . INTEGER
(47) value -> . FLOAT
(48) value -> . BINARY
(49) value -> . OCTAL
(50) value -> . HEXA
(51) value -> . NAN
(52) value -> . INFINITY
(53) value -> . DATE
(54) value -> . TIME
(55) value -> . DATETIME
(56) value -> . MULTILINE_STRING
(57) value -> . STRING_LITERAL
(58) value -> . MULTILINE_STRING_LITERAL
APAR shift and go to state 43
ACHAV shift and go to state 44
STRING shift and go to state 45
BOOL shift and go to state 46
NULL shift and go to state 47
INTEGER shift and go to state 48
FLOAT shift and go to state 40
BINARY shift and go to state 49
OCTAL shift and go to state 50
HEXA shift and go to state 51
NAN shift and go to state 52
INFINITY shift and go to state 53
DATE shift and go to state 54
TIME shift and go to state 55
DATETIME shift and go to state 56
MULTILINE_STRING shift and go to state 57
STRING_LITERAL shift and go to state 58
MULTILINE_STRING_LITERAL shift and go to state 59
content shift and go to state 41
value shift and go to state 42
state 29
(17) atrib -> key EQUALS . content
(18) atrib -> key EQUALS . content COMMENT
(20) content -> . value
(21) content -> . APAR arr_cont
(22) content -> . APAR NEWLINE arr_cont
(23) content -> . ACHAV table_cont
(43) value -> . STRING
(44) value -> . BOOL
(45) value -> . NULL
(46) value -> . INTEGER
(47) value -> . FLOAT
(48) value -> . BINARY
(49) value -> . OCTAL
(50) value -> . HEXA
(51) value -> . NAN
(52) value -> . INFINITY
(53) value -> . DATE
(54) value -> . TIME
(55) value -> . DATETIME
(56) value -> . MULTILINE_STRING
(57) value -> . STRING_LITERAL
(58) value -> . MULTILINE_STRING_LITERAL
APAR shift and go to state 43
ACHAV shift and go to state 44
STRING shift and go to state 45
BOOL shift and go to state 46
NULL shift and go to state 47
INTEGER shift and go to state 48
FLOAT shift and go to state 40
BINARY shift and go to state 49
OCTAL shift and go to state 50
HEXA shift and go to state 51
NAN shift and go to state 52
INFINITY shift and go to state 53
DATE shift and go to state 54
TIME shift and go to state 55
DATETIME shift and go to state 56
MULTILINE_STRING shift and go to state 57
STRING_LITERAL shift and go to state 58
MULTILINE_STRING_LITERAL shift and go to state 59
content shift and go to state 60
value shift and go to state 42
state 30
(19) atrib -> key DOT . atrib
(16) atrib -> . FLOAT EQUALS content
(17) atrib -> . key EQUALS content
(18) atrib -> . key EQUALS content COMMENT
(19) atrib -> . key DOT atrib
(39) key -> . KEY
(40) key -> . INTEGER
(41) key -> . STRING
(42) key -> . STRING_LITERAL
FLOAT shift and go to state 10
KEY shift and go to state 14
INTEGER shift and go to state 15
STRING shift and go to state 16
STRING_LITERAL shift and go to state 17
key shift and go to state 11
atrib shift and go to state 61
state 31
(61) table -> APAR tab_cont . CPAR
(62) table -> APAR tab_cont . CPAR COMMENT
(64) tab_cont -> tab_cont . DOT tab_cont
CPAR shift and go to state 62
DOT shift and go to state 63
state 32
(63) tab_cont -> FLOAT .
CPAR reduce using rule 63 (tab_cont -> FLOAT .)
DOT reduce using rule 63 (tab_cont -> FLOAT .)
state 33
(65) tab_cont -> key .
CPAR reduce using rule 65 (tab_cont -> key .)
DOT reduce using rule 65 (tab_cont -> key .)
state 34
(68) array_table -> APAR2 arr_table_cont . CPAR2
(69) array_table -> APAR2 arr_table_cont . CPAR2 COMMENT
(70) arr_table_cont -> arr_table_cont . DOT arr_table_cont
CPAR2 shift and go to state 64
DOT shift and go to state 65
state 35
(71) arr_table_cont -> key .
CPAR2 reduce using rule 71 (arr_table_cont -> key .)
DOT reduce using rule 71 (arr_table_cont -> key .)
state 36
(59) table -> table NEWLINE COMMENT .
NEWLINE reduce using rule 59 (table -> table NEWLINE COMMENT .)
$end reduce using rule 59 (table -> table NEWLINE COMMENT .)
state 37
(60) table -> table NEWLINE atrib .
NEWLINE reduce using rule 60 (table -> table NEWLINE atrib .)
$end reduce using rule 60 (table -> table NEWLINE atrib .)
state 38
(66) array_table -> array_table NEWLINE COMMENT .
NEWLINE reduce using rule 66 (array_table -> array_table NEWLINE COMMENT .)
$end reduce using rule 66 (array_table -> array_table NEWLINE COMMENT .)
state 39
(67) array_table -> array_table NEWLINE atrib .
NEWLINE reduce using rule 67 (array_table -> array_table NEWLINE atrib .)
$end reduce using rule 67 (array_table -> array_table NEWLINE atrib .)
state 40
(47) value -> FLOAT .
NEWLINE reduce using rule 47 (value -> FLOAT .)
$end reduce using rule 47 (value -> FLOAT .)
COMMENT reduce using rule 47 (value -> FLOAT .)
CPAR reduce using rule 47 (value -> FLOAT .)
COMMA reduce using rule 47 (value -> FLOAT .)
CCHAV reduce using rule 47 (value -> FLOAT .)
state 41
(16) atrib -> FLOAT EQUALS content .
NEWLINE reduce using rule 16 (atrib -> FLOAT EQUALS content .)
$end reduce using rule 16 (atrib -> FLOAT EQUALS content .)
state 42
(20) content -> value .
NEWLINE reduce using rule 20 (content -> value .)
$end reduce using rule 20 (content -> value .)
COMMENT reduce using rule 20 (content -> value .)
CPAR reduce using rule 20 (content -> value .)
COMMA reduce using rule 20 (content -> value .)
CCHAV reduce using rule 20 (content -> value .)
state 43
(21) content -> APAR . arr_cont
(22) content -> APAR . NEWLINE arr_cont
(24) arr_cont -> . CPAR
(25) arr_cont -> . a_cont CPAR
(26) arr_cont -> . a_cont COMMA CPAR
(27) arr_cont -> . a_cont NEWLINE CPAR
(28) arr_cont -> . a_cont COMMA NEWLINE CPAR
(29) a_cont -> . COMMENT NEWLINE a_cont
(30) a_cont -> . COMMENT NEWLINE
(31) a_cont -> . a_cont COMMA NEWLINE
(32) a_cont -> . content
(33) a_cont -> . a_cont COMMA a_cont
(34) a_cont -> . a_cont COMMA NEWLINE a_cont
(20) content -> . value
(21) content -> . APAR arr_cont
(22) content -> . APAR NEWLINE arr_cont
(23) content -> . ACHAV table_cont
(43) value -> . STRING
(44) value -> . BOOL
(45) value -> . NULL
(46) value -> . INTEGER
(47) value -> . FLOAT
(48) value -> . BINARY
(49) value -> . OCTAL
(50) value -> . HEXA
(51) value -> . NAN
(52) value -> . INFINITY
(53) value -> . DATE
(54) value -> . TIME
(55) value -> . DATETIME
(56) value -> . MULTILINE_STRING
(57) value -> . STRING_LITERAL
(58) value -> . MULTILINE_STRING_LITERAL
NEWLINE shift and go to state 67
CPAR shift and go to state 68
COMMENT shift and go to state 70
APAR shift and go to state 43
ACHAV shift and go to state 44
STRING shift and go to state 45
BOOL shift and go to state 46
NULL shift and go to state 47
INTEGER shift and go to state 48
FLOAT shift and go to state 40
BINARY shift and go to state 49
OCTAL shift and go to state 50
HEXA shift and go to state 51
NAN shift and go to state 52
INFINITY shift and go to state 53
DATE shift and go to state 54
TIME shift and go to state 55
DATETIME shift and go to state 56
MULTILINE_STRING shift and go to state 57
STRING_LITERAL shift and go to state 58
MULTILINE_STRING_LITERAL shift and go to state 59
arr_cont shift and go to state 66
a_cont shift and go to state 69
content shift and go to state 71
value shift and go to state 42
state 44
(23) content -> ACHAV . table_cont
(35) table_cont -> . CCHAV
(36) table_cont -> . t_cont CCHAV
(37) t_cont -> . key EQUALS content
(38) t_cont -> . t_cont COMMA key EQUALS content
(39) key -> . KEY
(40) key -> . INTEGER
(41) key -> . STRING
(42) key -> . STRING_LITERAL
CCHAV shift and go to state 73
KEY shift and go to state 14
INTEGER shift and go to state 15
STRING shift and go to state 16
STRING_LITERAL shift and go to state 17
table_cont shift and go to state 72
t_cont shift and go to state 74
key shift and go to state 75
state 45
(43) value -> STRING .
NEWLINE reduce using rule 43 (value -> STRING .)
$end reduce using rule 43 (value -> STRING .)
COMMENT reduce using rule 43 (value -> STRING .)
CPAR reduce using rule 43 (value -> STRING .)
COMMA reduce using rule 43 (value -> STRING .)
CCHAV reduce using rule 43 (value -> STRING .)
state 46
(44) value -> BOOL .
NEWLINE reduce using rule 44 (value -> BOOL .)
$end reduce using rule 44 (value -> BOOL .)
COMMENT reduce using rule 44 (value -> BOOL .)
CPAR reduce using rule 44 (value -> BOOL .)
COMMA reduce using rule 44 (value -> BOOL .)
CCHAV reduce using rule 44 (value -> BOOL .)
state 47
(45) value -> NULL .
NEWLINE reduce using rule 45 (value -> NULL .)
$end reduce using rule 45 (value -> NULL .)
COMMENT reduce using rule 45 (value -> NULL .)
CPAR reduce using rule 45 (value -> NULL .)
COMMA reduce using rule 45 (value -> NULL .)
CCHAV reduce using rule 45 (value -> NULL .)
state 48
(46) value -> INTEGER .
NEWLINE reduce using rule 46 (value -> INTEGER .)
$end reduce using rule 46 (value -> INTEGER .)
COMMENT reduce using rule 46 (value -> INTEGER .)
CPAR reduce using rule 46 (value -> INTEGER .)
COMMA reduce using rule 46 (value -> INTEGER .)
CCHAV reduce using rule 46 (value -> INTEGER .)
state 49
(48) value -> BINARY .
NEWLINE reduce using rule 48 (value -> BINARY .)
$end reduce using rule 48 (value -> BINARY .)
COMMENT reduce using rule 48 (value -> BINARY .)
CPAR reduce using rule 48 (value -> BINARY .)
COMMA reduce using rule 48 (value -> BINARY .)
CCHAV reduce using rule 48 (value -> BINARY .)
state 50
(49) value -> OCTAL .
NEWLINE reduce using rule 49 (value -> OCTAL .)
$end reduce using rule 49 (value -> OCTAL .)
COMMENT reduce using rule 49 (value -> OCTAL .)
CPAR reduce using rule 49 (value -> OCTAL .)
COMMA reduce using rule 49 (value -> OCTAL .)
CCHAV reduce using rule 49 (value -> OCTAL .)
state 51
(50) value -> HEXA .
NEWLINE reduce using rule 50 (value -> HEXA .)
$end reduce using rule 50 (value -> HEXA .)
COMMENT reduce using rule 50 (value -> HEXA .)
CPAR reduce using rule 50 (value -> HEXA .)
COMMA reduce using rule 50 (value -> HEXA .)
CCHAV reduce using rule 50 (value -> HEXA .)
state 52
(51) value -> NAN .
NEWLINE reduce using rule 51 (value -> NAN .)
$end reduce using rule 51 (value -> NAN .)
COMMENT reduce using rule 51 (value -> NAN .)
CPAR reduce using rule 51 (value -> NAN .)
COMMA reduce using rule 51 (value -> NAN .)
CCHAV reduce using rule 51 (value -> NAN .)
state 53
(52) value -> INFINITY .
NEWLINE reduce using rule 52 (value -> INFINITY .)
$end reduce using rule 52 (value -> INFINITY .)
COMMENT reduce using rule 52 (value -> INFINITY .)
CPAR reduce using rule 52 (value -> INFINITY .)
COMMA reduce using rule 52 (value -> INFINITY .)
CCHAV reduce using rule 52 (value -> INFINITY .)
state 54
(53) value -> DATE .
NEWLINE reduce using rule 53 (value -> DATE .)
$end reduce using rule 53 (value -> DATE .)
COMMENT reduce using rule 53 (value -> DATE .)
CPAR reduce using rule 53 (value -> DATE .)
COMMA reduce using rule 53 (value -> DATE .)
CCHAV reduce using rule 53 (value -> DATE .)