-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLALR_output.txt
10383 lines (10383 loc) · 328 KB
/
LALR_output.txt
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
Starting parse
Entering state 0
Reducing stack by rule 1 (line 853):
-> $$ = nterm $@1 ()
Stack now 0
Entering state 2
Reading a token: Next token is token tIDENTIFIER ()
Shifting token tIDENTIFIER ()
Entering state 35
Reading a token: Next token is token tSTRING_BEG ()
Reducing stack by rule 593 (line 4931):
$1 = token tIDENTIFIER ()
-> $$ = nterm operation ()
Stack now 0 2
Entering state 115
Reducing stack by rule 60 (line 1367):
$1 = nterm operation ()
-> $$ = nterm fcall ()
Stack now 0 2
Entering state 74
Next token is token tSTRING_BEG ()
Reducing stack by rule 262 (line 2451):
-> $$ = nterm @8 ()
Stack now 0 2 74
Entering state 226
Next token is token tSTRING_BEG ()
Shifting token tSTRING_BEG ()
Entering state 56
Reducing stack by rule 476 (line 4125):
-> $$ = nterm string_contents ()
Stack now 0 2 74 226 56
Entering state 286
Reading a token: Next token is token tSTRING_CONTENT ()
Shifting token tSTRING_CONTENT ()
Entering state 473
Reducing stack by rule 482 (line 4197):
$1 = token tSTRING_CONTENT ()
-> $$ = nterm string_content ()
Stack now 0 2 74 226 56 286
Entering state 479
Reducing stack by rule 477 (line 4132):
$1 = nterm string_contents ()
$2 = nterm string_content ()
-> $$ = nterm string_contents ()
Stack now 0 2 74 226 56
Entering state 286
Reading a token: Next token is token tSTRING_END ()
Shifting token tSTRING_END ()
Entering state 478
Reducing stack by rule 455 (line 3850):
$1 = token tSTRING_BEG ()
$2 = nterm string_contents ()
$3 = token tSTRING_END ()
-> $$ = nterm string1 ()
Stack now 0 2 74 226
Entering state 100
Reducing stack by rule 453 (line 3839):
$1 = nterm string1 ()
-> $$ = nterm string ()
Stack now 0 2 74 226
Entering state 99
Reading a token: Next token is token '\n' ()
Reducing stack by rule 451 (line 3821):
$1 = nterm string ()
-> $$ = nterm strings ()
Stack now 0 2 74 226
Entering state 98
Reducing stack by rule 275 (line 2569):
$1 = nterm strings ()
-> $$ = nterm primary ()
Stack now 0 2 74 226
Entering state 83
Next token is token '\n' ()
Reducing stack by rule 243 (line 2327):
$1 = nterm primary ()
-> $$ = nterm arg ()
Stack now 0 2 74 226
Entering state 210
Next token is token '\n' ()
Reducing stack by rule 244 (line 2333):
$1 = nterm arg ()
-> $$ = nterm arg_value ()
Stack now 0 2 74 226
Entering state 211
Next token is token '\n' ()
Reducing stack by rule 267 (line 2483):
$1 = nterm arg_value ()
-> $$ = nterm args ()
Stack now 0 2 74 226
Entering state 214
Next token is token '\n' ()
Reducing stack by rule 618 (line 4987):
-> $$ = nterm none ()
Stack now 0 2 74 226 214
Entering state 414
Reducing stack by rule 266 (line 2477):
$1 = nterm none ()
-> $$ = nterm opt_block_arg ()
Stack now 0 2 74 226 214
Entering state 413
Reducing stack by rule 258 (line 2415):
$1 = nterm args ()
$2 = nterm opt_block_arg ()
-> $$ = nterm call_args ()
Stack now 0 2 74 226
Entering state 425
Reducing stack by rule 263 (line 2451):
$1 = nterm @8 ()
$2 = nterm call_args ()
-> $$ = nterm command_args ()
Stack now 0 2 74
Entering state 317
Next token is token '\n' ()
Reducing stack by rule 61 (line 1377):
$1 = nterm fcall ()
$2 = nterm command_args ()
-> $$ = nterm command ()
Stack now 0 2
Entering state 75
Next token is token '\n' ()
Reducing stack by rule 54 (line 1329):
$1 = nterm command ()
-> $$ = nterm command_call ()
Stack now 0 2
Entering state 72
Reducing stack by rule 47 (line 1281):
$1 = nterm command_call ()
-> $$ = nterm expr ()
Stack now 0 2
Entering state 71
Next token is token '\n' ()
Reducing stack by rule 44 (line 1257):
$1 = nterm expr ()
-> $$ = nterm stmt ()
Stack now 0 2
Entering state 69
Next token is token '\n' ()
Reducing stack by rule 8 (line 926):
$1 = nterm stmt ()
-> $$ = nterm top_stmt ()
Stack now 0 2
Entering state 68
Reducing stack by rule 5 (line 904):
$1 = nterm top_stmt ()
-> $$ = nterm top_stmts ()
Stack now 0 2
Entering state 67
Next token is token '\n' ()
Shifting token '\n' ()
Entering state 303
Reducing stack by rule 615 (line 4979):
$1 = token '\n' ()
-> $$ = nterm term ()
Stack now 0 2 67
Entering state 305
Reducing stack by rule 616 (line 4982):
$1 = nterm term ()
-> $$ = nterm terms ()
Stack now 0 2 67
Entering state 306
Reading a token: Next token is token tIDENTIFIER ()
Shifting token tIDENTIFIER ()
Entering state 35
Reading a token: Next token is token tSTRING_BEG ()
Reducing stack by rule 593 (line 4931):
$1 = token tIDENTIFIER ()
-> $$ = nterm operation ()
Stack now 0 2 67 306
Entering state 115
Reducing stack by rule 60 (line 1367):
$1 = nterm operation ()
-> $$ = nterm fcall ()
Stack now 0 2 67 306
Entering state 74
Next token is token tSTRING_BEG ()
Reducing stack by rule 262 (line 2451):
-> $$ = nterm @8 ()
Stack now 0 2 67 306 74
Entering state 226
Next token is token tSTRING_BEG ()
Shifting token tSTRING_BEG ()
Entering state 56
Reducing stack by rule 476 (line 4125):
-> $$ = nterm string_contents ()
Stack now 0 2 67 306 74 226 56
Entering state 286
Reading a token: Next token is token tSTRING_CONTENT ()
Shifting token tSTRING_CONTENT ()
Entering state 473
Reducing stack by rule 482 (line 4197):
$1 = token tSTRING_CONTENT ()
-> $$ = nterm string_content ()
Stack now 0 2 67 306 74 226 56 286
Entering state 479
Reducing stack by rule 477 (line 4132):
$1 = nterm string_contents ()
$2 = nterm string_content ()
-> $$ = nterm string_contents ()
Stack now 0 2 67 306 74 226 56
Entering state 286
Reading a token: Next token is token tSTRING_END ()
Shifting token tSTRING_END ()
Entering state 478
Reducing stack by rule 455 (line 3850):
$1 = token tSTRING_BEG ()
$2 = nterm string_contents ()
$3 = token tSTRING_END ()
-> $$ = nterm string1 ()
Stack now 0 2 67 306 74 226
Entering state 100
Reducing stack by rule 453 (line 3839):
$1 = nterm string1 ()
-> $$ = nterm string ()
Stack now 0 2 67 306 74 226
Entering state 99
Reading a token: Next token is token '\n' ()
Reducing stack by rule 451 (line 3821):
$1 = nterm string ()
-> $$ = nterm strings ()
Stack now 0 2 67 306 74 226
Entering state 98
Reducing stack by rule 275 (line 2569):
$1 = nterm strings ()
-> $$ = nterm primary ()
Stack now 0 2 67 306 74 226
Entering state 83
Next token is token '\n' ()
Reducing stack by rule 243 (line 2327):
$1 = nterm primary ()
-> $$ = nterm arg ()
Stack now 0 2 67 306 74 226
Entering state 210
Next token is token '\n' ()
Reducing stack by rule 244 (line 2333):
$1 = nterm arg ()
-> $$ = nterm arg_value ()
Stack now 0 2 67 306 74 226
Entering state 211
Next token is token '\n' ()
Reducing stack by rule 267 (line 2483):
$1 = nterm arg_value ()
-> $$ = nterm args ()
Stack now 0 2 67 306 74 226
Entering state 214
Next token is token '\n' ()
Reducing stack by rule 618 (line 4987):
-> $$ = nterm none ()
Stack now 0 2 67 306 74 226 214
Entering state 414
Reducing stack by rule 266 (line 2477):
$1 = nterm none ()
-> $$ = nterm opt_block_arg ()
Stack now 0 2 67 306 74 226 214
Entering state 413
Reducing stack by rule 258 (line 2415):
$1 = nterm args ()
$2 = nterm opt_block_arg ()
-> $$ = nterm call_args ()
Stack now 0 2 67 306 74 226
Entering state 425
Reducing stack by rule 263 (line 2451):
$1 = nterm @8 ()
$2 = nterm call_args ()
-> $$ = nterm command_args ()
Stack now 0 2 67 306 74
Entering state 317
Next token is token '\n' ()
Reducing stack by rule 61 (line 1377):
$1 = nterm fcall ()
$2 = nterm command_args ()
-> $$ = nterm command ()
Stack now 0 2 67 306
Entering state 75
Next token is token '\n' ()
Reducing stack by rule 54 (line 1329):
$1 = nterm command ()
-> $$ = nterm command_call ()
Stack now 0 2 67 306
Entering state 72
Reducing stack by rule 47 (line 1281):
$1 = nterm command_call ()
-> $$ = nterm expr ()
Stack now 0 2 67 306
Entering state 71
Next token is token '\n' ()
Reducing stack by rule 44 (line 1257):
$1 = nterm expr ()
-> $$ = nterm stmt ()
Stack now 0 2 67 306
Entering state 69
Next token is token '\n' ()
Reducing stack by rule 8 (line 926):
$1 = nterm stmt ()
-> $$ = nterm top_stmt ()
Stack now 0 2 67 306
Entering state 499
Reducing stack by rule 6 (line 912):
$1 = nterm top_stmts ()
$2 = nterm terms ()
$3 = nterm top_stmt ()
-> $$ = nterm top_stmts ()
Stack now 0 2
Entering state 67
Next token is token '\n' ()
Shifting token '\n' ()
Entering state 303
Reducing stack by rule 615 (line 4979):
$1 = token '\n' ()
-> $$ = nterm term ()
Stack now 0 2 67
Entering state 305
Reducing stack by rule 616 (line 4982):
$1 = nterm term ()
-> $$ = nterm terms ()
Stack now 0 2 67
Entering state 306
Reading a token: Next token is token tIDENTIFIER ()
Shifting token tIDENTIFIER ()
Entering state 35
Reading a token: Next token is token tSTRING_BEG ()
Reducing stack by rule 593 (line 4931):
$1 = token tIDENTIFIER ()
-> $$ = nterm operation ()
Stack now 0 2 67 306
Entering state 115
Reducing stack by rule 60 (line 1367):
$1 = nterm operation ()
-> $$ = nterm fcall ()
Stack now 0 2 67 306
Entering state 74
Next token is token tSTRING_BEG ()
Reducing stack by rule 262 (line 2451):
-> $$ = nterm @8 ()
Stack now 0 2 67 306 74
Entering state 226
Next token is token tSTRING_BEG ()
Shifting token tSTRING_BEG ()
Entering state 56
Reducing stack by rule 476 (line 4125):
-> $$ = nterm string_contents ()
Stack now 0 2 67 306 74 226 56
Entering state 286
Reading a token: Next token is token tSTRING_CONTENT ()
Shifting token tSTRING_CONTENT ()
Entering state 473
Reducing stack by rule 482 (line 4197):
$1 = token tSTRING_CONTENT ()
-> $$ = nterm string_content ()
Stack now 0 2 67 306 74 226 56 286
Entering state 479
Reducing stack by rule 477 (line 4132):
$1 = nterm string_contents ()
$2 = nterm string_content ()
-> $$ = nterm string_contents ()
Stack now 0 2 67 306 74 226 56
Entering state 286
Reading a token: Next token is token tSTRING_END ()
Shifting token tSTRING_END ()
Entering state 478
Reducing stack by rule 455 (line 3850):
$1 = token tSTRING_BEG ()
$2 = nterm string_contents ()
$3 = token tSTRING_END ()
-> $$ = nterm string1 ()
Stack now 0 2 67 306 74 226
Entering state 100
Reducing stack by rule 453 (line 3839):
$1 = nterm string1 ()
-> $$ = nterm string ()
Stack now 0 2 67 306 74 226
Entering state 99
Reading a token: Next token is token '\n' ()
Reducing stack by rule 451 (line 3821):
$1 = nterm string ()
-> $$ = nterm strings ()
Stack now 0 2 67 306 74 226
Entering state 98
Reducing stack by rule 275 (line 2569):
$1 = nterm strings ()
-> $$ = nterm primary ()
Stack now 0 2 67 306 74 226
Entering state 83
Next token is token '\n' ()
Reducing stack by rule 243 (line 2327):
$1 = nterm primary ()
-> $$ = nterm arg ()
Stack now 0 2 67 306 74 226
Entering state 210
Next token is token '\n' ()
Reducing stack by rule 244 (line 2333):
$1 = nterm arg ()
-> $$ = nterm arg_value ()
Stack now 0 2 67 306 74 226
Entering state 211
Next token is token '\n' ()
Reducing stack by rule 267 (line 2483):
$1 = nterm arg_value ()
-> $$ = nterm args ()
Stack now 0 2 67 306 74 226
Entering state 214
Next token is token '\n' ()
Reducing stack by rule 618 (line 4987):
-> $$ = nterm none ()
Stack now 0 2 67 306 74 226 214
Entering state 414
Reducing stack by rule 266 (line 2477):
$1 = nterm none ()
-> $$ = nterm opt_block_arg ()
Stack now 0 2 67 306 74 226 214
Entering state 413
Reducing stack by rule 258 (line 2415):
$1 = nterm args ()
$2 = nterm opt_block_arg ()
-> $$ = nterm call_args ()
Stack now 0 2 67 306 74 226
Entering state 425
Reducing stack by rule 263 (line 2451):
$1 = nterm @8 ()
$2 = nterm call_args ()
-> $$ = nterm command_args ()
Stack now 0 2 67 306 74
Entering state 317
Next token is token '\n' ()
Reducing stack by rule 61 (line 1377):
$1 = nterm fcall ()
$2 = nterm command_args ()
-> $$ = nterm command ()
Stack now 0 2 67 306
Entering state 75
Next token is token '\n' ()
Reducing stack by rule 54 (line 1329):
$1 = nterm command ()
-> $$ = nterm command_call ()
Stack now 0 2 67 306
Entering state 72
Reducing stack by rule 47 (line 1281):
$1 = nterm command_call ()
-> $$ = nterm expr ()
Stack now 0 2 67 306
Entering state 71
Next token is token '\n' ()
Reducing stack by rule 44 (line 1257):
$1 = nterm expr ()
-> $$ = nterm stmt ()
Stack now 0 2 67 306
Entering state 69
Next token is token '\n' ()
Reducing stack by rule 8 (line 926):
$1 = nterm stmt ()
-> $$ = nterm top_stmt ()
Stack now 0 2 67 306
Entering state 499
Reducing stack by rule 6 (line 912):
$1 = nterm top_stmts ()
$2 = nterm terms ()
$3 = nterm top_stmt ()
-> $$ = nterm top_stmts ()
Stack now 0 2
Entering state 67
Next token is token '\n' ()
Shifting token '\n' ()
Entering state 303
Reducing stack by rule 615 (line 4979):
$1 = token '\n' ()
-> $$ = nterm term ()
Stack now 0 2 67
Entering state 305
Reducing stack by rule 616 (line 4982):
$1 = nterm term ()
-> $$ = nterm terms ()
Stack now 0 2 67
Entering state 306
Reading a token: Next token is token keyword_def ()
Shifting token keyword_def ()
Entering state 7
Reducing stack by rule 347 (line 3099):
$1 = token keyword_def ()
-> $$ = nterm k_def ()
Stack now 0 2 67 306
Entering state 94
Reading a token: Next token is token tIDENTIFIER ()
Shifting token tIDENTIFIER ()
Entering state 391
Reading a token: Next token is token '(' ()
Reducing stack by rule 115 (line 1838):
$1 = token tIDENTIFIER ()
-> $$ = nterm fname ()
Stack now 0 2 67 306 94
Entering state 394
Reducing stack by rule 328 (line 2956):
-> $$ = nterm @23 ()
Stack now 0 2 67 306 94 394
Entering state 596
Next token is token '(' ()
Shifting token '(' ()
Entering state 743
Reading a token: Next token is token tIDENTIFIER ()
Shifting token tIDENTIFIER ()
Entering state 644
Reading a token: Next token is token ')' ()
Reducing stack by rule 553 (line 4558):
$1 = token tIDENTIFIER ()
-> $$ = nterm f_norm_arg ()
Stack now 0 2 67 306 94 394 596 743
Entering state 662
Reducing stack by rule 554 (line 4565):
$1 = nterm f_norm_arg ()
-> $$ = nterm f_arg_item ()
Stack now 0 2 67 306 94 394 596 743
Entering state 663
Reducing stack by rule 556 (line 4593):
$1 = nterm f_arg_item ()
-> $$ = nterm f_arg ()
Stack now 0 2 67 306 94 394 596 743
Entering state 664
Next token is token ')' ()
Reducing stack by rule 532 (line 4451):
-> $$ = nterm opt_args_tail ()
Stack now 0 2 67 306 94 394 596 743 664
Entering state 779
Reducing stack by rule 539 (line 4480):
$1 = nterm f_arg ()
$2 = nterm opt_args_tail ()
-> $$ = nterm f_args ()
Stack now 0 2 67 306 94 394 596 743
Entering state 859
Next token is token ')' ()
Reducing stack by rule 607 (line 4963):
-> $$ = nterm opt_nl ()
Stack now 0 2 67 306 94 394 596 743 859
Entering state 423
Next token is token ')' ()
Shifting token ')' ()
Entering state 619
Reducing stack by rule 609 (line 4967):
$1 = nterm opt_nl ()
$2 = token ')' ()
-> $$ = nterm rparen ()
Stack now 0 2 67 306 94 394 596 743 859
Entering state 933
Reducing stack by rule 525 (line 4410):
$1 = token '(' ()
$2 = nterm f_args ()
$3 = nterm rparen ()
-> $$ = nterm f_arglist ()
Stack now 0 2 67 306 94 394 596
Entering state 744
Reading a token: Next token is token tIDENTIFIER ()
Shifting token tIDENTIFIER ()
Entering state 35
Reading a token: Next token is token '(' ()
Reducing stack by rule 593 (line 4931):
$1 = token tIDENTIFIER ()
-> $$ = nterm operation ()
Stack now 0 2 67 306 94 394 596 744
Entering state 115
Reducing stack by rule 60 (line 1367):
$1 = nterm operation ()
-> $$ = nterm fcall ()
Stack now 0 2 67 306 94 394 596 744
Entering state 74
Next token is token '(' ()
Shifting token '(' ()
Entering state 227
Reading a token: Next token is token tIDENTIFIER ()
Shifting token tIDENTIFIER ()
Entering state 35
Reading a token: Next token is token ')' ()
Reducing stack by rule 503 (line 4320):
$1 = token tIDENTIFIER ()
-> $$ = nterm user_variable ()
Stack now 0 2 67 306 94 394 596 744 74 227
Entering state 216
Next token is token ')' ()
Reducing stack by rule 515 (line 4336):
$1 = nterm user_variable ()
-> $$ = nterm var_ref ()
Stack now 0 2 67 306 94 394 596 744 74 227
Entering state 112
Reducing stack by rule 282 (line 2576):
$1 = nterm var_ref ()
-> $$ = nterm primary ()
Stack now 0 2 67 306 94 394 596 744 74 227
Entering state 83
Next token is token ')' ()
Reducing stack by rule 243 (line 2327):
$1 = nterm primary ()
-> $$ = nterm arg ()
Stack now 0 2 67 306 94 394 596 744 74 227
Entering state 210
Next token is token ')' ()
Reducing stack by rule 244 (line 2333):
$1 = nterm arg ()
-> $$ = nterm arg_value ()
Stack now 0 2 67 306 94 394 596 744 74 227
Entering state 211
Next token is token ')' ()
Reducing stack by rule 267 (line 2483):
$1 = nterm arg_value ()
-> $$ = nterm args ()
Stack now 0 2 67 306 94 394 596 744 74 227
Entering state 428
Next token is token ')' ()
Reducing stack by rule 618 (line 4987):
-> $$ = nterm none ()
Stack now 0 2 67 306 94 394 596 744 74 227 428
Entering state 414
Reducing stack by rule 266 (line 2477):
$1 = nterm none ()
-> $$ = nterm opt_block_arg ()
Stack now 0 2 67 306 94 394 596 744 74 227 428
Entering state 413
Reducing stack by rule 258 (line 2415):
$1 = nterm args ()
$2 = nterm opt_block_arg ()
-> $$ = nterm call_args ()
Stack now 0 2 67 306 94 394 596 744 74 227
Entering state 427
Reducing stack by rule 253 (line 2383):
$1 = nterm call_args ()
-> $$ = nterm opt_call_args ()
Stack now 0 2 67 306 94 394 596 744 74 227
Entering state 426
Next token is token ')' ()
Reducing stack by rule 607 (line 4963):
-> $$ = nterm opt_nl ()
Stack now 0 2 67 306 94 394 596 744 74 227 426
Entering state 423
Next token is token ')' ()
Shifting token ')' ()
Entering state 619
Reducing stack by rule 609 (line 4967):
$1 = nterm opt_nl ()
$2 = token ')' ()
-> $$ = nterm rparen ()
Stack now 0 2 67 306 94 394 596 744 74 227 426
Entering state 620
Reducing stack by rule 249 (line 2368):
$1 = token '(' ()
$2 = nterm opt_call_args ()
$3 = nterm rparen ()
-> $$ = nterm paren_args ()
Stack now 0 2 67 306 94 394 596 744 74
Entering state 316
Reducing stack by rule 419 (line 3581):
$1 = nterm fcall ()
$2 = nterm paren_args ()
-> $$ = nterm method_call ()
Stack now 0 2 67 306 94 394 596 744
Entering state 96
Reading a token: Next token is token '.' ()
Reducing stack by rule 305 (line 2743):
$1 = nterm method_call ()
-> $$ = nterm primary ()
Stack now 0 2 67 306 94 394 596 744
Entering state 83
Next token is token '.' ()
Reducing stack by rule 337 (line 3033):
$1 = nterm primary ()
-> $$ = nterm primary_value ()
Stack now 0 2 67 306 94 394 596 744
Entering state 84
Next token is token '.' ()
Shifting token '.' ()
Entering state 355
Reading a token: Next token is token tIDENTIFIER ()
Shifting token tIDENTIFIER ()
Entering state 561
Reading a token: Next token is token '(' ()
Reducing stack by rule 596 (line 4936):
$1 = token tIDENTIFIER ()
-> $$ = nterm operation2 ()
Stack now 0 2 67 306 94 394 596 744 84 355
Entering state 566
Next token is token '(' ()
Reducing stack by rule 420 (line 3591):
-> $$ = nterm @30 ()
Stack now 0 2 67 306 94 394 596 744 84 355 566
Entering state 711
Next token is token '(' ()
Shifting token '(' ()
Entering state 227
Reading a token: Next token is token "&" ()
Shifting token "&" ()
Entering state 206
Reading a token: Next token is token tSYMBEG ()
Shifting token tSYMBEG ()
Entering state 55
Reading a token: Next token is token tIDENTIFIER ()
Shifting token tIDENTIFIER ()
Entering state 159
Reducing stack by rule 115 (line 1838):
$1 = token tIDENTIFIER ()
-> $$ = nterm fname ()
Stack now 0 2 67 306 94 394 596 744 84 355 566 711 227 206 55
Entering state 283
Reducing stack by rule 494 (line 4283):
$1 = nterm fname ()
-> $$ = nterm sym ()
Stack now 0 2 67 306 94 394 596 744 84 355 566 711 227 206 55
Entering state 285
Reducing stack by rule 493 (line 4272):
$1 = token tSYMBEG ()
$2 = nterm sym ()
-> $$ = nterm symbol ()
Stack now 0 2 67 306 94 394 596 744 84 355 566 711 227 206
Entering state 107
Reducing stack by rule 449 (line 3810):
$1 = nterm symbol ()
-> $$ = nterm literal ()
Stack now 0 2 67 306 94 394 596 744 84 355 566 711 227 206
Entering state 97
Reducing stack by rule 274 (line 2568):
$1 = nterm literal ()
-> $$ = nterm primary ()
Stack now 0 2 67 306 94 394 596 744 84 355 566 711 227 206
Entering state 83
Reading a token: Next token is token ')' ()
Reducing stack by rule 243 (line 2327):
$1 = nterm primary ()
-> $$ = nterm arg ()
Stack now 0 2 67 306 94 394 596 744 84 355 566 711 227 206
Entering state 210
Next token is token ')' ()
Reducing stack by rule 244 (line 2333):
$1 = nterm arg ()
-> $$ = nterm arg_value ()
Stack now 0 2 67 306 94 394 596 744 84 355 566 711 227 206
Entering state 409
Reducing stack by rule 264 (line 2463):
$1 = token "&" ()
$2 = nterm arg_value ()
-> $$ = nterm block_arg ()
Stack now 0 2 67 306 94 394 596 744 84 355 566 711 227
Entering state 213
Reducing stack by rule 261 (line 2442):
$1 = nterm block_arg ()
-> $$ = nterm call_args ()
Stack now 0 2 67 306 94 394 596 744 84 355 566 711 227
Entering state 427
Reducing stack by rule 253 (line 2383):
$1 = nterm call_args ()
-> $$ = nterm opt_call_args ()
Stack now 0 2 67 306 94 394 596 744 84 355 566 711 227
Entering state 426
Next token is token ')' ()
Reducing stack by rule 607 (line 4963):
-> $$ = nterm opt_nl ()
Stack now 0 2 67 306 94 394 596 744 84 355 566 711 227 426
Entering state 423
Next token is token ')' ()
Shifting token ')' ()
Entering state 619
Reducing stack by rule 609 (line 4967):
$1 = nterm opt_nl ()
$2 = token ')' ()
-> $$ = nterm rparen ()
Stack now 0 2 67 306 94 394 596 744 84 355 566 711 227 426
Entering state 620
Reducing stack by rule 249 (line 2368):
$1 = token '(' ()
$2 = nterm opt_call_args ()
$3 = nterm rparen ()
-> $$ = nterm paren_args ()
Stack now 0 2 67 306 94 394 596 744 84 355 566 711
Entering state 747
Reducing stack by rule 251 (line 2379):
$1 = nterm paren_args ()
-> $$ = nterm opt_paren_args ()
Stack now 0 2 67 306 94 394 596 744 84 355 566 711
Entering state 834
Reducing stack by rule 421 (line 3590):
$1 = nterm primary_value ()
$2 = token '.' ()
$3 = nterm operation2 ()
$4 = nterm @30 ()
$5 = nterm opt_paren_args ()
-> $$ = nterm method_call ()
Stack now 0 2 67 306 94 394 596 744
Entering state 96
Reading a token: Next token is token '.' ()
Reducing stack by rule 305 (line 2743):
$1 = nterm method_call ()
-> $$ = nterm primary ()
Stack now 0 2 67 306 94 394 596 744
Entering state 83
Next token is token '.' ()
Reducing stack by rule 337 (line 3033):
$1 = nterm primary ()
-> $$ = nterm primary_value ()
Stack now 0 2 67 306 94 394 596 744
Entering state 84
Next token is token '.' ()
Shifting token '.' ()
Entering state 355
Reading a token: Next token is token tIDENTIFIER ()
Shifting token tIDENTIFIER ()
Entering state 561
Reading a token: Next token is token keyword_do ()
Reducing stack by rule 596 (line 4936):
$1 = token tIDENTIFIER ()
-> $$ = nterm operation2 ()
Stack now 0 2 67 306 94 394 596 744 84 355
Entering state 566
Next token is token keyword_do ()
Reducing stack by rule 420 (line 3591):
-> $$ = nterm @30 ()
Stack now 0 2 67 306 94 394 596 744 84 355 566
Entering state 711
Next token is token keyword_do ()
Reducing stack by rule 618 (line 4987):
-> $$ = nterm none ()
Stack now 0 2 67 306 94 394 596 744 84 355 566 711
Entering state 750
Reducing stack by rule 250 (line 2378):
$1 = nterm none ()
-> $$ = nterm opt_paren_args ()
Stack now 0 2 67 306 94 394 596 744 84 355 566 711
Entering state 834
Reducing stack by rule 421 (line 3590):
$1 = nterm primary_value ()
$2 = token '.' ()
$3 = nterm operation2 ()
$4 = nterm @30 ()
$5 = nterm opt_paren_args ()
-> $$ = nterm method_call ()
Stack now 0 2 67 306 94 394 596 744
Entering state 96
Next token is token keyword_do ()
Shifting token keyword_do ()
Entering state 314
Reducing stack by rule 434 (line 3714):
-> $$ = nterm @35 ()
Stack now 0 2 67 306 94 394 596 744 96 314
Entering state 507
Reading a token: Next token is token '|' ()
Shifting token '|' ()
Entering state 685
Reading a token: Next token is token tIDENTIFIER ()
Shifting token tIDENTIFIER ()
Entering state 798
Reading a token: Next token is token '|' ()
Reducing stack by rule 553 (line 4558):
$1 = token tIDENTIFIER ()
-> $$ = nterm f_norm_arg ()
Stack now 0 2 67 306 94 394 596 744 96 314 507 685
Entering state 662
Reducing stack by rule 554 (line 4565):
$1 = nterm f_norm_arg ()
-> $$ = nterm f_arg_item ()
Stack now 0 2 67 306 94 394 596 744 96 314 507 685
Entering state 663
Reducing stack by rule 556 (line 4593):
$1 = nterm f_arg_item ()
-> $$ = nterm f_arg ()
Stack now 0 2 67 306 94 394 596 744 96 314 507 685
Entering state 803
Next token is token '|' ()
Reducing stack by rule 378 (line 3306):
-> $$ = nterm opt_block_args_tail ()
Stack now 0 2 67 306 94 394 596 744 96 314 507 685 803
Entering state 898
Reducing stack by rule 386 (line 3343):
$1 = nterm f_arg ()
$2 = nterm opt_block_args_tail ()
-> $$ = nterm block_param ()
Stack now 0 2 67 306 94 394 596 744 96 314 507 685
Entering state 801
Next token is token '|' ()
Reducing stack by rule 607 (line 4963):
-> $$ = nterm opt_nl ()
Stack now 0 2 67 306 94 394 596 744 96 314 507 685 801
Entering state 811
Next token is token '|' ()
Reducing stack by rule 399 (line 3413):
$1 = nterm opt_nl ()
-> $$ = nterm opt_bv_decl ()
Stack now 0 2 67 306 94 394 596 744 96 314 507 685 801
Entering state 895
Next token is token '|' ()
Shifting token '|' ()
Entering state 958
Reducing stack by rule 398 (line 3402):
$1 = token '|' ()
$2 = nterm block_param ()
$3 = nterm opt_bv_decl ()
$4 = token '|' ()
-> $$ = nterm block_param_def ()
Stack now 0 2 67 306 94 394 596 744 96 314 507
Entering state 687
Reducing stack by rule 395 (line 3378):
$1 = nterm block_param_def ()
-> $$ = nterm opt_block_param ()
Stack now 0 2 67 306 94 394 596 744 96 314 507
Entering state 686
Reading a token: Next token is token keyword_unless ()
Shifting token keyword_unless ()
Entering state 11
Reducing stack by rule 340 (line 3057):
$1 = token keyword_unless ()
-> $$ = nterm k_unless ()
Stack now 0 2 67 306 94 394 596 744 96 314 507 686
Entering state 87
Reading a token: Next token is token tCONSTANT ()
Shifting token tCONSTANT ()
Entering state 39
Reading a token: Next token is token "::" ()
Reducing stack by rule 506 (line 4323):
$1 = token tCONSTANT ()
-> $$ = nterm user_variable ()
Stack now 0 2 67 306 94 394 596 744 96 314 507 686 87
Entering state 216
Next token is token "::" ()
Reducing stack by rule 515 (line 4336):
$1 = nterm user_variable ()
-> $$ = nterm var_ref ()
Stack now 0 2 67 306 94 394 596 744 96 314 507 686 87
Entering state 112
Reducing stack by rule 282 (line 2576):
$1 = nterm var_ref ()
-> $$ = nterm primary ()
Stack now 0 2 67 306 94 394 596 744 96 314 507 686 87
Entering state 83
Next token is token "::" ()
Reducing stack by rule 337 (line 3033):
$1 = nterm primary ()
-> $$ = nterm primary_value ()
Stack now 0 2 67 306 94 394 596 744 96 314 507 686 87
Entering state 215
Next token is token "::" ()
Shifting token "::" ()
Entering state 415
Reading a token: Next token is token tCONSTANT ()
Shifting token tCONSTANT ()
Entering state 613
Reading a token: Next token is token '.' ()
Reducing stack by rule 292 (line 2638):
$1 = nterm primary_value ()
$2 = token "::" ()
$3 = token tCONSTANT ()
-> $$ = nterm primary ()
Stack now 0 2 67 306 94 394 596 744 96 314 507 686 87
Entering state 83
Next token is token '.' ()
Reducing stack by rule 337 (line 3033):
$1 = nterm primary ()
-> $$ = nterm primary_value ()
Stack now 0 2 67 306 94 394 596 744 96 314 507 686 87
Entering state 215
Next token is token '.' ()
Shifting token '.' ()
Entering state 417
Reading a token: Next token is token tIDENTIFIER ()
Shifting token tIDENTIFIER ()
Entering state 615
Reading a token: Next token is token '.' ()
Reducing stack by rule 596 (line 4936):
$1 = token tIDENTIFIER ()
-> $$ = nterm operation2 ()
Stack now 0 2 67 306 94 394 596 744 96 314 507 686 87 215 417
Entering state 566
Next token is token '.' ()
Reducing stack by rule 420 (line 3591):
-> $$ = nterm @30 ()
Stack now 0 2 67 306 94 394 596 744 96 314 507 686 87 215 417 566
Entering state 711
Next token is token '.' ()
Reducing stack by rule 618 (line 4987):
-> $$ = nterm none ()
Stack now 0 2 67 306 94 394 596 744 96 314 507 686 87 215 417 566 711
Entering state 750
Reducing stack by rule 250 (line 2378):
$1 = nterm none ()
-> $$ = nterm opt_paren_args ()
Stack now 0 2 67 306 94 394 596 744 96 314 507 686 87 215 417 566 711
Entering state 834
Reducing stack by rule 421 (line 3590):
$1 = nterm primary_value ()
$2 = token '.' ()
$3 = nterm operation2 ()
$4 = nterm @30 ()
$5 = nterm opt_paren_args ()
-> $$ = nterm method_call ()
Stack now 0 2 67 306 94 394 596 744 96 314 507 686 87
Entering state 96
Next token is token '.' ()
Reducing stack by rule 305 (line 2743):
$1 = nterm method_call ()
-> $$ = nterm primary ()
Stack now 0 2 67 306 94 394 596 744 96 314 507 686 87
Entering state 83
Next token is token '.' ()
Reducing stack by rule 337 (line 3033):
$1 = nterm primary ()
-> $$ = nterm primary_value ()
Stack now 0 2 67 306 94 394 596 744 96 314 507 686 87
Entering state 215
Next token is token '.' ()
Shifting token '.' ()
Entering state 417