-
Notifications
You must be signed in to change notification settings - Fork 5
/
phase3.out
822 lines (752 loc) · 37.4 KB
/
phase3.out
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
State 0:
start ::= * command_list
(21) command_list ::= *
command_list ::= * command_list sep
command_list ::= * command_list command sep
start accept
command_list shift 5
{default} reduce 21 command_list ::=
State 1:
compound_list ::= compound_list * sep
compound_list ::= compound_list * command sep
sep ::= * SEMI
sep ::= * NL
command ::= * command PIPE_PIPE opt_nl command
command ::= * command AMP_AMP opt_nl command
command ::= * command PIPE opt_nl command
command ::= * term
term ::= * COMMAND
term ::= * EVALUATE
term ::= * BREAK
term ::= * CONTINUE
term ::= * EXIT
term ::= * if_command
term ::= * begin_command
term ::= * paren_command
term ::= * loop_command
term ::= * for_command
term ::= * ERROR
paren_command ::= * LPAREN paren_list RPAREN
begin_command ::= * BEGIN sep compound_list END
loop_command ::= * LOOP sep compound_list END
for_command ::= * FOR sep compound_list END
if_command ::= * IF sep compound_list END
if_command ::= IF sep compound_list * END
if_command ::= * IF sep compound_list else_command END
if_command ::= IF sep compound_list * else_command END
else_command ::= * ELSE_IF|ELSE sep compound_list
else_command ::= * else_command ELSE_IF|ELSE sep compound_list
SEMI shift-reduce 25 sep ::= SEMI
NL shift-reduce 26 sep ::= NL
COMMAND shift-reduce 5 term ::= COMMAND
EVALUATE shift-reduce 6 term ::= EVALUATE
BREAK shift-reduce 7 term ::= BREAK
CONTINUE shift-reduce 8 term ::= CONTINUE
EXIT shift-reduce 9 term ::= EXIT
ERROR shift-reduce 10 term ::= ERROR
LPAREN shift 12
BEGIN shift 21
END shift-reduce 16 if_command ::= IF sep compound_list END
LOOP shift 20
FOR shift 19
IF shift 18
ELSE_IF shift 16
ELSE shift 16
sep shift-reduce 24 compound_list ::= compound_list sep
command shift 13
term shift 13 /* because term==command */
if_command shift 13 /* because if_command==term */
begin_command shift 13 /* because begin_command==term */
paren_command shift 13 /* because paren_command==term */
loop_command shift 13 /* because loop_command==term */
for_command shift 13 /* because for_command==term */
else_command shift 31
State 2:
compound_list ::= compound_list * sep
compound_list ::= compound_list * command sep
sep ::= * SEMI
sep ::= * NL
command ::= * command PIPE_PIPE opt_nl command
command ::= * command AMP_AMP opt_nl command
command ::= * command PIPE opt_nl command
command ::= * term
term ::= * COMMAND
term ::= * EVALUATE
term ::= * BREAK
term ::= * CONTINUE
term ::= * EXIT
term ::= * if_command
term ::= * begin_command
term ::= * paren_command
term ::= * loop_command
term ::= * for_command
term ::= * ERROR
paren_command ::= * LPAREN paren_list RPAREN
begin_command ::= * BEGIN sep compound_list END
loop_command ::= * LOOP sep compound_list END
for_command ::= * FOR sep compound_list END
for_command ::= FOR sep compound_list * END
if_command ::= * IF sep compound_list END
if_command ::= * IF sep compound_list else_command END
SEMI shift-reduce 25 sep ::= SEMI
NL shift-reduce 26 sep ::= NL
COMMAND shift-reduce 5 term ::= COMMAND
EVALUATE shift-reduce 6 term ::= EVALUATE
BREAK shift-reduce 7 term ::= BREAK
CONTINUE shift-reduce 8 term ::= CONTINUE
EXIT shift-reduce 9 term ::= EXIT
ERROR shift-reduce 10 term ::= ERROR
LPAREN shift 12
BEGIN shift 21
END shift-reduce 15 for_command ::= FOR sep compound_list END
LOOP shift 20
FOR shift 19
IF shift 18
sep shift-reduce 24 compound_list ::= compound_list sep
command shift 13
term shift 13 /* because term==command */
if_command shift 13 /* because if_command==term */
begin_command shift 13 /* because begin_command==term */
paren_command shift 13 /* because paren_command==term */
loop_command shift 13 /* because loop_command==term */
for_command shift 13 /* because for_command==term */
State 3:
compound_list ::= compound_list * sep
compound_list ::= compound_list * command sep
sep ::= * SEMI
sep ::= * NL
command ::= * command PIPE_PIPE opt_nl command
command ::= * command AMP_AMP opt_nl command
command ::= * command PIPE opt_nl command
command ::= * term
term ::= * COMMAND
term ::= * EVALUATE
term ::= * BREAK
term ::= * CONTINUE
term ::= * EXIT
term ::= * if_command
term ::= * begin_command
term ::= * paren_command
term ::= * loop_command
term ::= * for_command
term ::= * ERROR
paren_command ::= * LPAREN paren_list RPAREN
begin_command ::= * BEGIN sep compound_list END
loop_command ::= * LOOP sep compound_list END
loop_command ::= LOOP sep compound_list * END
for_command ::= * FOR sep compound_list END
if_command ::= * IF sep compound_list END
if_command ::= * IF sep compound_list else_command END
SEMI shift-reduce 25 sep ::= SEMI
NL shift-reduce 26 sep ::= NL
COMMAND shift-reduce 5 term ::= COMMAND
EVALUATE shift-reduce 6 term ::= EVALUATE
BREAK shift-reduce 7 term ::= BREAK
CONTINUE shift-reduce 8 term ::= CONTINUE
EXIT shift-reduce 9 term ::= EXIT
ERROR shift-reduce 10 term ::= ERROR
LPAREN shift 12
BEGIN shift 21
END shift-reduce 14 loop_command ::= LOOP sep compound_list END
LOOP shift 20
FOR shift 19
IF shift 18
sep shift-reduce 24 compound_list ::= compound_list sep
command shift 13
term shift 13 /* because term==command */
if_command shift 13 /* because if_command==term */
begin_command shift 13 /* because begin_command==term */
paren_command shift 13 /* because paren_command==term */
loop_command shift 13 /* because loop_command==term */
for_command shift 13 /* because for_command==term */
State 4:
compound_list ::= compound_list * sep
compound_list ::= compound_list * command sep
sep ::= * SEMI
sep ::= * NL
command ::= * command PIPE_PIPE opt_nl command
command ::= * command AMP_AMP opt_nl command
command ::= * command PIPE opt_nl command
command ::= * term
term ::= * COMMAND
term ::= * EVALUATE
term ::= * BREAK
term ::= * CONTINUE
term ::= * EXIT
term ::= * if_command
term ::= * begin_command
term ::= * paren_command
term ::= * loop_command
term ::= * for_command
term ::= * ERROR
paren_command ::= * LPAREN paren_list RPAREN
begin_command ::= * BEGIN sep compound_list END
begin_command ::= BEGIN sep compound_list * END
loop_command ::= * LOOP sep compound_list END
for_command ::= * FOR sep compound_list END
if_command ::= * IF sep compound_list END
if_command ::= * IF sep compound_list else_command END
SEMI shift-reduce 25 sep ::= SEMI
NL shift-reduce 26 sep ::= NL
COMMAND shift-reduce 5 term ::= COMMAND
EVALUATE shift-reduce 6 term ::= EVALUATE
BREAK shift-reduce 7 term ::= BREAK
CONTINUE shift-reduce 8 term ::= CONTINUE
EXIT shift-reduce 9 term ::= EXIT
ERROR shift-reduce 10 term ::= ERROR
LPAREN shift 12
BEGIN shift 21
END shift-reduce 13 begin_command ::= BEGIN sep compound_list END
LOOP shift 20
FOR shift 19
IF shift 18
sep shift-reduce 24 compound_list ::= compound_list sep
command shift 13
term shift 13 /* because term==command */
if_command shift 13 /* because if_command==term */
begin_command shift 13 /* because begin_command==term */
paren_command shift 13 /* because paren_command==term */
loop_command shift 13 /* because loop_command==term */
for_command shift 13 /* because for_command==term */
State 5:
(20) start ::= command_list *
command_list ::= command_list * sep
command_list ::= command_list * command sep
sep ::= * SEMI
sep ::= * NL
command ::= * command PIPE_PIPE opt_nl command
command ::= * command AMP_AMP opt_nl command
command ::= * command PIPE opt_nl command
command ::= * term
term ::= * COMMAND
term ::= * EVALUATE
term ::= * BREAK
term ::= * CONTINUE
term ::= * EXIT
term ::= * if_command
term ::= * begin_command
term ::= * paren_command
term ::= * loop_command
term ::= * for_command
term ::= * ERROR
paren_command ::= * LPAREN paren_list RPAREN
begin_command ::= * BEGIN sep compound_list END
loop_command ::= * LOOP sep compound_list END
for_command ::= * FOR sep compound_list END
if_command ::= * IF sep compound_list END
if_command ::= * IF sep compound_list else_command END
$ reduce 20 start ::= command_list
SEMI shift-reduce 25 sep ::= SEMI
NL shift-reduce 26 sep ::= NL
COMMAND shift-reduce 5 term ::= COMMAND
EVALUATE shift-reduce 6 term ::= EVALUATE
BREAK shift-reduce 7 term ::= BREAK
CONTINUE shift-reduce 8 term ::= CONTINUE
EXIT shift-reduce 9 term ::= EXIT
ERROR shift-reduce 10 term ::= ERROR
LPAREN shift 12
BEGIN shift 21
LOOP shift 20
FOR shift 19
IF shift 18
sep shift-reduce 22 command_list ::= command_list sep
command shift 15
term shift 15 /* because term==command */
if_command shift 15 /* because if_command==term */
begin_command shift 15 /* because begin_command==term */
paren_command shift 15 /* because paren_command==term */
loop_command shift 15 /* because loop_command==term */
for_command shift 15 /* because for_command==term */
State 6:
compound_list ::= compound_list * sep
compound_list ::= compound_list * command sep
sep ::= * SEMI
sep ::= * NL
command ::= * command PIPE_PIPE opt_nl command
command ::= * command AMP_AMP opt_nl command
command ::= * command PIPE opt_nl command
command ::= * term
term ::= * COMMAND
term ::= * EVALUATE
term ::= * BREAK
term ::= * CONTINUE
term ::= * EXIT
term ::= * if_command
term ::= * begin_command
term ::= * paren_command
term ::= * loop_command
term ::= * for_command
term ::= * ERROR
paren_command ::= * LPAREN paren_list RPAREN
begin_command ::= * BEGIN sep compound_list END
loop_command ::= * LOOP sep compound_list END
for_command ::= * FOR sep compound_list END
if_command ::= * IF sep compound_list END
if_command ::= * IF sep compound_list else_command END
(18) else_command ::= ELSE_IF|ELSE sep compound_list *
SEMI shift-reduce 25 sep ::= SEMI
NL shift-reduce 26 sep ::= NL
COMMAND shift-reduce 5 term ::= COMMAND
EVALUATE shift-reduce 6 term ::= EVALUATE
BREAK shift-reduce 7 term ::= BREAK
CONTINUE shift-reduce 8 term ::= CONTINUE
EXIT shift-reduce 9 term ::= EXIT
ERROR shift-reduce 10 term ::= ERROR
LPAREN shift 12
BEGIN shift 21
LOOP shift 20
FOR shift 19
IF shift 18
sep shift-reduce 24 compound_list ::= compound_list sep
command shift 13
term shift 13 /* because term==command */
if_command shift 13 /* because if_command==term */
begin_command shift 13 /* because begin_command==term */
paren_command shift 13 /* because paren_command==term */
loop_command shift 13 /* because loop_command==term */
for_command shift 13 /* because for_command==term */
{default} reduce 18 else_command ::= ELSE_IF|ELSE sep compound_list
State 7:
compound_list ::= compound_list * sep
compound_list ::= compound_list * command sep
sep ::= * SEMI
sep ::= * NL
command ::= * command PIPE_PIPE opt_nl command
command ::= * command AMP_AMP opt_nl command
command ::= * command PIPE opt_nl command
command ::= * term
term ::= * COMMAND
term ::= * EVALUATE
term ::= * BREAK
term ::= * CONTINUE
term ::= * EXIT
term ::= * if_command
term ::= * begin_command
term ::= * paren_command
term ::= * loop_command
term ::= * for_command
term ::= * ERROR
paren_command ::= * LPAREN paren_list RPAREN
begin_command ::= * BEGIN sep compound_list END
loop_command ::= * LOOP sep compound_list END
for_command ::= * FOR sep compound_list END
if_command ::= * IF sep compound_list END
if_command ::= * IF sep compound_list else_command END
(19) else_command ::= else_command ELSE_IF|ELSE sep compound_list *
SEMI shift-reduce 25 sep ::= SEMI
NL shift-reduce 26 sep ::= NL
COMMAND shift-reduce 5 term ::= COMMAND
EVALUATE shift-reduce 6 term ::= EVALUATE
BREAK shift-reduce 7 term ::= BREAK
CONTINUE shift-reduce 8 term ::= CONTINUE
EXIT shift-reduce 9 term ::= EXIT
ERROR shift-reduce 10 term ::= ERROR
LPAREN shift 12
BEGIN shift 21
LOOP shift 20
FOR shift 19
IF shift 18
sep shift-reduce 24 compound_list ::= compound_list sep
command shift 13
term shift 13 /* because term==command */
if_command shift 13 /* because if_command==term */
begin_command shift 13 /* because begin_command==term */
paren_command shift 13 /* because paren_command==term */
loop_command shift 13 /* because loop_command==term */
for_command shift 13 /* because for_command==term */
{default} reduce 19 else_command ::= else_command ELSE_IF|ELSE sep compound_list
State 8:
compound_list ::= compound_list * sep
compound_list ::= compound_list * command sep
sep ::= * SEMI
sep ::= * NL
command ::= * command PIPE_PIPE opt_nl command
command ::= * command AMP_AMP opt_nl command
command ::= * command PIPE opt_nl command
command ::= * term
term ::= * COMMAND
term ::= * EVALUATE
term ::= * BREAK
term ::= * CONTINUE
term ::= * EXIT
term ::= * if_command
term ::= * begin_command
term ::= * paren_command
term ::= * loop_command
term ::= * for_command
term ::= * ERROR
(33) paren_list ::= compound_list *
paren_list ::= compound_list * command
paren_command ::= * LPAREN paren_list RPAREN
begin_command ::= * BEGIN sep compound_list END
loop_command ::= * LOOP sep compound_list END
for_command ::= * FOR sep compound_list END
if_command ::= * IF sep compound_list END
if_command ::= * IF sep compound_list else_command END
SEMI shift-reduce 25 sep ::= SEMI
NL shift-reduce 26 sep ::= NL
COMMAND shift-reduce 5 term ::= COMMAND
EVALUATE shift-reduce 6 term ::= EVALUATE
BREAK shift-reduce 7 term ::= BREAK
CONTINUE shift-reduce 8 term ::= CONTINUE
EXIT shift-reduce 9 term ::= EXIT
ERROR shift-reduce 10 term ::= ERROR
LPAREN shift 12
BEGIN shift 21
LOOP shift 20
FOR shift 19
IF shift 18
sep shift-reduce 24 compound_list ::= compound_list sep
command shift 14
term shift 14 /* because term==command */
if_command shift 14 /* because if_command==term */
begin_command shift 14 /* because begin_command==term */
paren_command shift 14 /* because paren_command==term */
loop_command shift 14 /* because loop_command==term */
for_command shift 14 /* because for_command==term */
{default} reduce 33 paren_list ::= compound_list
State 9:
command ::= * command PIPE_PIPE opt_nl command
command ::= * command AMP_AMP opt_nl command
command ::= * command PIPE opt_nl command
command ::= command PIPE opt_nl * command
command ::= * term
term ::= * COMMAND
term ::= * EVALUATE
term ::= * BREAK
term ::= * CONTINUE
term ::= * EXIT
term ::= * if_command
term ::= * begin_command
term ::= * paren_command
term ::= * loop_command
term ::= * for_command
term ::= * ERROR
paren_command ::= * LPAREN paren_list RPAREN
begin_command ::= * BEGIN sep compound_list END
loop_command ::= * LOOP sep compound_list END
for_command ::= * FOR sep compound_list END
if_command ::= * IF sep compound_list END
if_command ::= * IF sep compound_list else_command END
opt_nl ::= opt_nl * NL
NL shift-reduce 35 opt_nl ::= opt_nl NL
COMMAND shift-reduce 5 term ::= COMMAND
EVALUATE shift-reduce 6 term ::= EVALUATE
BREAK shift-reduce 7 term ::= BREAK
CONTINUE shift-reduce 8 term ::= CONTINUE
EXIT shift-reduce 9 term ::= EXIT
ERROR shift-reduce 10 term ::= ERROR
LPAREN shift 12
BEGIN shift 21
LOOP shift 20
FOR shift 19
IF shift 18
command shift-reduce 4 command ::= command PIPE opt_nl command
term shift-reduce 4 command ::= command PIPE opt_nl command /* because term==command */
if_command shift-reduce 4 command ::= command PIPE opt_nl command /* because if_command==term */
begin_command shift-reduce 4 command ::= command PIPE opt_nl command /* because begin_command==term */
paren_command shift-reduce 4 command ::= command PIPE opt_nl command /* because paren_command==term */
loop_command shift-reduce 4 command ::= command PIPE opt_nl command /* because loop_command==term */
for_command shift-reduce 4 command ::= command PIPE opt_nl command /* because for_command==term */
State 10:
command ::= * command PIPE_PIPE opt_nl command
command ::= * command AMP_AMP opt_nl command
command ::= command AMP_AMP opt_nl * command
command ::= * command PIPE opt_nl command
command ::= * term
term ::= * COMMAND
term ::= * EVALUATE
term ::= * BREAK
term ::= * CONTINUE
term ::= * EXIT
term ::= * if_command
term ::= * begin_command
term ::= * paren_command
term ::= * loop_command
term ::= * for_command
term ::= * ERROR
paren_command ::= * LPAREN paren_list RPAREN
begin_command ::= * BEGIN sep compound_list END
loop_command ::= * LOOP sep compound_list END
for_command ::= * FOR sep compound_list END
if_command ::= * IF sep compound_list END
if_command ::= * IF sep compound_list else_command END
opt_nl ::= opt_nl * NL
NL shift-reduce 35 opt_nl ::= opt_nl NL
COMMAND shift-reduce 5 term ::= COMMAND
EVALUATE shift-reduce 6 term ::= EVALUATE
BREAK shift-reduce 7 term ::= BREAK
CONTINUE shift-reduce 8 term ::= CONTINUE
EXIT shift-reduce 9 term ::= EXIT
ERROR shift-reduce 10 term ::= ERROR
LPAREN shift 12
BEGIN shift 21
LOOP shift 20
FOR shift 19
IF shift 18
command shift 33
term shift 33 /* because term==command */
if_command shift 33 /* because if_command==term */
begin_command shift 33 /* because begin_command==term */
paren_command shift 33 /* because paren_command==term */
loop_command shift 33 /* because loop_command==term */
for_command shift 33 /* because for_command==term */
State 11:
command ::= * command PIPE_PIPE opt_nl command
command ::= command PIPE_PIPE opt_nl * command
command ::= * command AMP_AMP opt_nl command
command ::= * command PIPE opt_nl command
command ::= * term
term ::= * COMMAND
term ::= * EVALUATE
term ::= * BREAK
term ::= * CONTINUE
term ::= * EXIT
term ::= * if_command
term ::= * begin_command
term ::= * paren_command
term ::= * loop_command
term ::= * for_command
term ::= * ERROR
paren_command ::= * LPAREN paren_list RPAREN
begin_command ::= * BEGIN sep compound_list END
loop_command ::= * LOOP sep compound_list END
for_command ::= * FOR sep compound_list END
if_command ::= * IF sep compound_list END
if_command ::= * IF sep compound_list else_command END
opt_nl ::= opt_nl * NL
NL shift-reduce 35 opt_nl ::= opt_nl NL
COMMAND shift-reduce 5 term ::= COMMAND
EVALUATE shift-reduce 6 term ::= EVALUATE
BREAK shift-reduce 7 term ::= BREAK
CONTINUE shift-reduce 8 term ::= CONTINUE
EXIT shift-reduce 9 term ::= EXIT
ERROR shift-reduce 10 term ::= ERROR
LPAREN shift 12
BEGIN shift 21
LOOP shift 20
FOR shift 19
IF shift 18
command shift 34
term shift 34 /* because term==command */
if_command shift 34 /* because if_command==term */
begin_command shift 34 /* because begin_command==term */
paren_command shift 34 /* because paren_command==term */
loop_command shift 34 /* because loop_command==term */
for_command shift 34 /* because for_command==term */
State 12:
(23) compound_list ::= *
compound_list ::= * compound_list sep
compound_list ::= * compound_list command sep
paren_list ::= * compound_list
paren_list ::= * compound_list command
paren_command ::= LPAREN * paren_list RPAREN
compound_list shift 8
paren_list shift 32
{default} reduce 23 compound_list ::=
State 13:
compound_list ::= compound_list command * sep
sep ::= * SEMI
sep ::= * NL
command ::= command * PIPE_PIPE opt_nl command
command ::= command * AMP_AMP opt_nl command
command ::= command * PIPE opt_nl command
PIPE_PIPE shift 30
AMP_AMP shift 29
PIPE shift 28
SEMI shift-reduce 25 sep ::= SEMI
NL shift-reduce 26 sep ::= NL
sep shift-reduce 1 compound_list ::= compound_list command sep
State 14:
compound_list ::= compound_list command * sep
sep ::= * SEMI
sep ::= * NL
command ::= command * PIPE_PIPE opt_nl command
command ::= command * AMP_AMP opt_nl command
command ::= command * PIPE opt_nl command
(11) paren_list ::= compound_list command *
PIPE_PIPE shift 30
AMP_AMP shift 29
PIPE shift 28
SEMI shift-reduce 25 sep ::= SEMI
NL shift-reduce 26 sep ::= NL
sep shift-reduce 1 compound_list ::= compound_list command sep
{default} reduce 11 paren_list ::= compound_list command
State 15:
command_list ::= command_list command * sep
sep ::= * SEMI
sep ::= * NL
command ::= command * PIPE_PIPE opt_nl command
command ::= command * AMP_AMP opt_nl command
command ::= command * PIPE opt_nl command
PIPE_PIPE shift 30
AMP_AMP shift 29
PIPE shift 28
SEMI shift-reduce 25 sep ::= SEMI
NL shift-reduce 26 sep ::= NL
sep shift-reduce 0 command_list ::= command_list command sep
State 16:
sep ::= * SEMI
sep ::= * NL
else_command ::= ELSE_IF|ELSE * sep compound_list
SEMI shift-reduce 25 sep ::= SEMI
NL shift-reduce 26 sep ::= NL
sep shift 22
State 17:
sep ::= * SEMI
sep ::= * NL
else_command ::= else_command ELSE_IF|ELSE * sep compound_list
SEMI shift-reduce 25 sep ::= SEMI
NL shift-reduce 26 sep ::= NL
sep shift 23
State 18:
sep ::= * SEMI
sep ::= * NL
if_command ::= IF * sep compound_list END
if_command ::= IF * sep compound_list else_command END
SEMI shift-reduce 25 sep ::= SEMI
NL shift-reduce 26 sep ::= NL
sep shift 24
State 19:
sep ::= * SEMI
sep ::= * NL
for_command ::= FOR * sep compound_list END
SEMI shift-reduce 25 sep ::= SEMI
NL shift-reduce 26 sep ::= NL
sep shift 25
State 20:
sep ::= * SEMI
sep ::= * NL
loop_command ::= LOOP * sep compound_list END
SEMI shift-reduce 25 sep ::= SEMI
NL shift-reduce 26 sep ::= NL
sep shift 26
State 21:
sep ::= * SEMI
sep ::= * NL
begin_command ::= BEGIN * sep compound_list END
SEMI shift-reduce 25 sep ::= SEMI
NL shift-reduce 26 sep ::= NL
sep shift 27
State 22:
(23) compound_list ::= *
compound_list ::= * compound_list sep
compound_list ::= * compound_list command sep
else_command ::= ELSE_IF|ELSE sep * compound_list
compound_list shift 6
{default} reduce 23 compound_list ::=
State 23:
(23) compound_list ::= *
compound_list ::= * compound_list sep
compound_list ::= * compound_list command sep
else_command ::= else_command ELSE_IF|ELSE sep * compound_list
compound_list shift 7
{default} reduce 23 compound_list ::=
State 24:
(23) compound_list ::= *
compound_list ::= * compound_list sep
compound_list ::= * compound_list command sep
if_command ::= IF sep * compound_list END
if_command ::= IF sep * compound_list else_command END
compound_list shift 1
{default} reduce 23 compound_list ::=
State 25:
(23) compound_list ::= *
compound_list ::= * compound_list sep
compound_list ::= * compound_list command sep
for_command ::= FOR sep * compound_list END
compound_list shift 2
{default} reduce 23 compound_list ::=
State 26:
(23) compound_list ::= *
compound_list ::= * compound_list sep
compound_list ::= * compound_list command sep
loop_command ::= LOOP sep * compound_list END
compound_list shift 3
{default} reduce 23 compound_list ::=
State 27:
(23) compound_list ::= *
compound_list ::= * compound_list sep
compound_list ::= * compound_list command sep
begin_command ::= BEGIN sep * compound_list END
compound_list shift 4
{default} reduce 23 compound_list ::=
State 28:
command ::= command PIPE * opt_nl command
(34) opt_nl ::= *
opt_nl ::= * opt_nl NL
opt_nl shift 9
{default} reduce 34 opt_nl ::=
State 29:
command ::= command AMP_AMP * opt_nl command
(34) opt_nl ::= *
opt_nl ::= * opt_nl NL
opt_nl shift 10
{default} reduce 34 opt_nl ::=
State 30:
command ::= command PIPE_PIPE * opt_nl command
(34) opt_nl ::= *
opt_nl ::= * opt_nl NL
opt_nl shift 11
{default} reduce 34 opt_nl ::=
State 31:
if_command ::= IF sep compound_list else_command * END
else_command ::= else_command * ELSE_IF|ELSE sep compound_list
END shift-reduce 17 if_command ::= IF sep compound_list else_command END
ELSE_IF shift 17
ELSE shift 17
State 32:
paren_command ::= LPAREN paren_list * RPAREN
RPAREN shift-reduce 12 paren_command ::= LPAREN paren_list RPAREN
State 33:
command ::= command * PIPE_PIPE opt_nl command
command ::= command * AMP_AMP opt_nl command
(3) command ::= command AMP_AMP opt_nl command *
command ::= command * PIPE opt_nl command
PIPE shift 28
{default} reduce 3 command ::= command AMP_AMP opt_nl command
State 34:
command ::= command * PIPE_PIPE opt_nl command
(2) command ::= command PIPE_PIPE opt_nl command *
command ::= command * AMP_AMP opt_nl command
command ::= command * PIPE opt_nl command
PIPE shift 28
{default} reduce 2 command ::= command PIPE_PIPE opt_nl command
----------------------------------------------------
Symbols:
0: $:
1: PIPE_PIPE
2: AMP_AMP
3: PIPE
4: SEMI
5: NL
6: COMMAND
7: EVALUATE
8: BREAK
9: CONTINUE
10: EXIT
11: ERROR
12: LPAREN
13: RPAREN
14: BEGIN
15: END
16: LOOP
17: FOR
18: IF
19: ELSE_IF
20: ELSE
21: error:
22: start: <lambda> SEMI NL COMMAND EVALUATE BREAK CONTINUE EXIT ERROR LPAREN BEGIN LOOP FOR IF
23: command_list: <lambda> SEMI NL COMMAND EVALUATE BREAK CONTINUE EXIT ERROR LPAREN BEGIN LOOP FOR IF
24: sep: SEMI NL
25: command: COMMAND EVALUATE BREAK CONTINUE EXIT ERROR LPAREN BEGIN LOOP FOR IF
26: compound_list: <lambda> SEMI NL COMMAND EVALUATE BREAK CONTINUE EXIT ERROR LPAREN BEGIN LOOP FOR IF
27: opt_nl: <lambda> NL
28: term: COMMAND EVALUATE BREAK CONTINUE EXIT ERROR LPAREN BEGIN LOOP FOR IF
29: if_command: IF
30: begin_command: BEGIN
31: paren_command: LPAREN
32: loop_command: LOOP
33: for_command: FOR
34: paren_list: <lambda> SEMI NL COMMAND EVALUATE BREAK CONTINUE EXIT ERROR LPAREN BEGIN LOOP FOR IF
35: else_command: ELSE_IF ELSE