-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.out
1220 lines (940 loc) · 45.5 KB
/
parser.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
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.4 (http://www.dabeaz.com/ply)
Grammar
Rule 0 S' -> program
Rule 1 program -> declarations instructions
Rule 2 declarations -> declarations declaration
Rule 3 declarations -> <empty>
Rule 4 declaration -> TYPE vars ;
Rule 5 vars -> vars , ID
Rule 6 vars -> ID
Rule 7 instructions -> instructions instruction
Rule 8 instructions -> instruction
Rule 9 instruction -> assignment
Rule 10 instruction -> choice_instr
Rule 11 instruction -> while_instr
Rule 12 assignment -> ID = expression ;
Rule 13 expression -> ID
Rule 14 expression -> const
Rule 15 expression -> ( expression )
Rule 16 expression -> expression + expression
Rule 17 expression -> expression - expression
Rule 18 expression -> expression * expression
Rule 19 expression -> expression / expression
Rule 20 const -> INTEGER
Rule 21 const -> FLOAT
Rule 22 const -> STRING
Rule 23 choice_instr -> IF ( condition ) stmt
Rule 24 choice_instr -> IF ( condition ) stmt ELSE stmt
Rule 25 while_instr -> WHILE ( condition ) stmt
Rule 26 condition -> expression EQ expression
Rule 27 condition -> expression NEQ expression
Rule 28 condition -> expression GE expression
Rule 29 condition -> expression LE expression
Rule 30 condition -> expression < expression
Rule 31 condition -> expression > expression
Rule 32 stmt -> assignment
Rule 33 stmt -> { instructions }
Rule 34 stmt -> choice_instr
Rule 35 stmt -> while_instr
Terminals, with rules where they appear
( : 15 23 24 25
) : 15 23 24 25
* : 18
+ : 16
, : 5
- : 17
/ : 19
; : 4 12
< : 30
= : 12
> : 31
ELSE : 24
EQ : 26
FLOAT : 21
GE : 28
ID : 5 6 12 13
IF : 23 24
INTEGER : 20
LE : 29
NEQ : 27
STRING : 22
TYPE : 4
WHILE : 25
error :
{ : 33
} : 33
Nonterminals, with rules where they appear
assignment : 9 32
choice_instr : 10 34
condition : 23 24 25
const : 14
declaration : 2
declarations : 1 2
expression : 12 15 16 16 17 17 18 18 19 19 26 26 27 27 28 28 29 29 30 30 31 31
instruction : 7 8
instructions : 1 7 33
program : 0
stmt : 23 24 24 25
vars : 4 5
while_instr : 11 35
Parsing method: LALR
state 0
(0) S' -> . program
(1) program -> . declarations instructions
(2) declarations -> . declarations declaration
(3) declarations -> .
TYPE reduce using rule 3 (declarations -> .)
ID reduce using rule 3 (declarations -> .)
IF reduce using rule 3 (declarations -> .)
WHILE reduce using rule 3 (declarations -> .)
program shift and go to state 1
declarations shift and go to state 2
state 1
(0) S' -> program .
state 2
(1) program -> declarations . instructions
(2) declarations -> declarations . declaration
(7) instructions -> . instructions instruction
(8) instructions -> . instruction
(4) declaration -> . TYPE vars ;
(9) instruction -> . assignment
(10) instruction -> . choice_instr
(11) instruction -> . while_instr
(12) assignment -> . ID = expression ;
(23) choice_instr -> . IF ( condition ) stmt
(24) choice_instr -> . IF ( condition ) stmt ELSE stmt
(25) while_instr -> . WHILE ( condition ) stmt
TYPE shift and go to state 10
ID shift and go to state 11
IF shift and go to state 9
WHILE shift and go to state 5
instruction shift and go to state 3
assignment shift and go to state 4
while_instr shift and go to state 6
choice_instr shift and go to state 7
declaration shift and go to state 8
instructions shift and go to state 12
state 3
(8) instructions -> instruction .
ID reduce using rule 8 (instructions -> instruction .)
IF reduce using rule 8 (instructions -> instruction .)
WHILE reduce using rule 8 (instructions -> instruction .)
$end reduce using rule 8 (instructions -> instruction .)
} reduce using rule 8 (instructions -> instruction .)
state 4
(9) instruction -> assignment .
ID reduce using rule 9 (instruction -> assignment .)
IF reduce using rule 9 (instruction -> assignment .)
WHILE reduce using rule 9 (instruction -> assignment .)
$end reduce using rule 9 (instruction -> assignment .)
} reduce using rule 9 (instruction -> assignment .)
state 5
(25) while_instr -> WHILE . ( condition ) stmt
( shift and go to state 13
state 6
(11) instruction -> while_instr .
ID reduce using rule 11 (instruction -> while_instr .)
IF reduce using rule 11 (instruction -> while_instr .)
WHILE reduce using rule 11 (instruction -> while_instr .)
$end reduce using rule 11 (instruction -> while_instr .)
} reduce using rule 11 (instruction -> while_instr .)
state 7
(10) instruction -> choice_instr .
ID reduce using rule 10 (instruction -> choice_instr .)
IF reduce using rule 10 (instruction -> choice_instr .)
WHILE reduce using rule 10 (instruction -> choice_instr .)
$end reduce using rule 10 (instruction -> choice_instr .)
} reduce using rule 10 (instruction -> choice_instr .)
state 8
(2) declarations -> declarations declaration .
TYPE reduce using rule 2 (declarations -> declarations declaration .)
ID reduce using rule 2 (declarations -> declarations declaration .)
IF reduce using rule 2 (declarations -> declarations declaration .)
WHILE reduce using rule 2 (declarations -> declarations declaration .)
state 9
(23) choice_instr -> IF . ( condition ) stmt
(24) choice_instr -> IF . ( condition ) stmt ELSE stmt
( shift and go to state 14
state 10
(4) declaration -> TYPE . vars ;
(5) vars -> . vars , ID
(6) vars -> . ID
ID shift and go to state 16
vars shift and go to state 15
state 11
(12) assignment -> ID . = expression ;
= shift and go to state 17
state 12
(1) program -> declarations instructions .
(7) instructions -> instructions . instruction
(9) instruction -> . assignment
(10) instruction -> . choice_instr
(11) instruction -> . while_instr
(12) assignment -> . ID = expression ;
(23) choice_instr -> . IF ( condition ) stmt
(24) choice_instr -> . IF ( condition ) stmt ELSE stmt
(25) while_instr -> . WHILE ( condition ) stmt
$end reduce using rule 1 (program -> declarations instructions .)
ID shift and go to state 11
IF shift and go to state 9
WHILE shift and go to state 5
instruction shift and go to state 18
assignment shift and go to state 4
while_instr shift and go to state 6
choice_instr shift and go to state 7
state 13
(25) while_instr -> WHILE ( . condition ) stmt
(26) condition -> . expression EQ expression
(27) condition -> . expression NEQ expression
(28) condition -> . expression GE expression
(29) condition -> . expression LE expression
(30) condition -> . expression < expression
(31) condition -> . expression > expression
(13) expression -> . ID
(14) expression -> . const
(15) expression -> . ( expression )
(16) expression -> . expression + expression
(17) expression -> . expression - expression
(18) expression -> . expression * expression
(19) expression -> . expression / expression
(20) const -> . INTEGER
(21) const -> . FLOAT
(22) const -> . STRING
ID shift and go to state 22
( shift and go to state 21
INTEGER shift and go to state 23
FLOAT shift and go to state 19
STRING shift and go to state 20
const shift and go to state 24
expression shift and go to state 25
condition shift and go to state 26
state 14
(23) choice_instr -> IF ( . condition ) stmt
(24) choice_instr -> IF ( . condition ) stmt ELSE stmt
(26) condition -> . expression EQ expression
(27) condition -> . expression NEQ expression
(28) condition -> . expression GE expression
(29) condition -> . expression LE expression
(30) condition -> . expression < expression
(31) condition -> . expression > expression
(13) expression -> . ID
(14) expression -> . const
(15) expression -> . ( expression )
(16) expression -> . expression + expression
(17) expression -> . expression - expression
(18) expression -> . expression * expression
(19) expression -> . expression / expression
(20) const -> . INTEGER
(21) const -> . FLOAT
(22) const -> . STRING
ID shift and go to state 22
( shift and go to state 21
INTEGER shift and go to state 23
FLOAT shift and go to state 19
STRING shift and go to state 20
const shift and go to state 24
expression shift and go to state 25
condition shift and go to state 27
state 15
(4) declaration -> TYPE vars . ;
(5) vars -> vars . , ID
; shift and go to state 28
, shift and go to state 29
state 16
(6) vars -> ID .
; reduce using rule 6 (vars -> ID .)
, reduce using rule 6 (vars -> ID .)
state 17
(12) assignment -> ID = . expression ;
(13) expression -> . ID
(14) expression -> . const
(15) expression -> . ( expression )
(16) expression -> . expression + expression
(17) expression -> . expression - expression
(18) expression -> . expression * expression
(19) expression -> . expression / expression
(20) const -> . INTEGER
(21) const -> . FLOAT
(22) const -> . STRING
ID shift and go to state 22
( shift and go to state 21
INTEGER shift and go to state 23
FLOAT shift and go to state 19
STRING shift and go to state 20
const shift and go to state 24
expression shift and go to state 30
state 18
(7) instructions -> instructions instruction .
ID reduce using rule 7 (instructions -> instructions instruction .)
IF reduce using rule 7 (instructions -> instructions instruction .)
WHILE reduce using rule 7 (instructions -> instructions instruction .)
$end reduce using rule 7 (instructions -> instructions instruction .)
} reduce using rule 7 (instructions -> instructions instruction .)
state 19
(21) const -> FLOAT .
+ reduce using rule 21 (const -> FLOAT .)
- reduce using rule 21 (const -> FLOAT .)
* reduce using rule 21 (const -> FLOAT .)
/ reduce using rule 21 (const -> FLOAT .)
) reduce using rule 21 (const -> FLOAT .)
EQ reduce using rule 21 (const -> FLOAT .)
NEQ reduce using rule 21 (const -> FLOAT .)
GE reduce using rule 21 (const -> FLOAT .)
LE reduce using rule 21 (const -> FLOAT .)
< reduce using rule 21 (const -> FLOAT .)
> reduce using rule 21 (const -> FLOAT .)
; reduce using rule 21 (const -> FLOAT .)
state 20
(22) const -> STRING .
+ reduce using rule 22 (const -> STRING .)
- reduce using rule 22 (const -> STRING .)
* reduce using rule 22 (const -> STRING .)
/ reduce using rule 22 (const -> STRING .)
) reduce using rule 22 (const -> STRING .)
EQ reduce using rule 22 (const -> STRING .)
NEQ reduce using rule 22 (const -> STRING .)
GE reduce using rule 22 (const -> STRING .)
LE reduce using rule 22 (const -> STRING .)
< reduce using rule 22 (const -> STRING .)
> reduce using rule 22 (const -> STRING .)
; reduce using rule 22 (const -> STRING .)
state 21
(15) expression -> ( . expression )
(13) expression -> . ID
(14) expression -> . const
(15) expression -> . ( expression )
(16) expression -> . expression + expression
(17) expression -> . expression - expression
(18) expression -> . expression * expression
(19) expression -> . expression / expression
(20) const -> . INTEGER
(21) const -> . FLOAT
(22) const -> . STRING
ID shift and go to state 22
( shift and go to state 21
INTEGER shift and go to state 23
FLOAT shift and go to state 19
STRING shift and go to state 20
const shift and go to state 24
expression shift and go to state 31
state 22
(13) expression -> ID .
+ reduce using rule 13 (expression -> ID .)
- reduce using rule 13 (expression -> ID .)
* reduce using rule 13 (expression -> ID .)
/ reduce using rule 13 (expression -> ID .)
) reduce using rule 13 (expression -> ID .)
EQ reduce using rule 13 (expression -> ID .)
NEQ reduce using rule 13 (expression -> ID .)
GE reduce using rule 13 (expression -> ID .)
LE reduce using rule 13 (expression -> ID .)
< reduce using rule 13 (expression -> ID .)
> reduce using rule 13 (expression -> ID .)
; reduce using rule 13 (expression -> ID .)
state 23
(20) const -> INTEGER .
+ reduce using rule 20 (const -> INTEGER .)
- reduce using rule 20 (const -> INTEGER .)
* reduce using rule 20 (const -> INTEGER .)
/ reduce using rule 20 (const -> INTEGER .)
) reduce using rule 20 (const -> INTEGER .)
EQ reduce using rule 20 (const -> INTEGER .)
NEQ reduce using rule 20 (const -> INTEGER .)
GE reduce using rule 20 (const -> INTEGER .)
LE reduce using rule 20 (const -> INTEGER .)
< reduce using rule 20 (const -> INTEGER .)
> reduce using rule 20 (const -> INTEGER .)
; reduce using rule 20 (const -> INTEGER .)
state 24
(14) expression -> const .
+ reduce using rule 14 (expression -> const .)
- reduce using rule 14 (expression -> const .)
* reduce using rule 14 (expression -> const .)
/ reduce using rule 14 (expression -> const .)
) reduce using rule 14 (expression -> const .)
EQ reduce using rule 14 (expression -> const .)
NEQ reduce using rule 14 (expression -> const .)
GE reduce using rule 14 (expression -> const .)
LE reduce using rule 14 (expression -> const .)
< reduce using rule 14 (expression -> const .)
> reduce using rule 14 (expression -> const .)
; reduce using rule 14 (expression -> const .)
state 25
(26) condition -> expression . EQ expression
(27) condition -> expression . NEQ expression
(28) condition -> expression . GE expression
(29) condition -> expression . LE expression
(30) condition -> expression . < expression
(31) condition -> expression . > expression
(16) expression -> expression . + expression
(17) expression -> expression . - expression
(18) expression -> expression . * expression
(19) expression -> expression . / expression
EQ shift and go to state 39
NEQ shift and go to state 41
GE shift and go to state 37
LE shift and go to state 32
< shift and go to state 40
> shift and go to state 38
+ shift and go to state 33
- shift and go to state 35
* shift and go to state 34
/ shift and go to state 36
state 26
(25) while_instr -> WHILE ( condition . ) stmt
) shift and go to state 42
state 27
(23) choice_instr -> IF ( condition . ) stmt
(24) choice_instr -> IF ( condition . ) stmt ELSE stmt
) shift and go to state 43
state 28
(4) declaration -> TYPE vars ; .
TYPE reduce using rule 4 (declaration -> TYPE vars ; .)
ID reduce using rule 4 (declaration -> TYPE vars ; .)
IF reduce using rule 4 (declaration -> TYPE vars ; .)
WHILE reduce using rule 4 (declaration -> TYPE vars ; .)
state 29
(5) vars -> vars , . ID
ID shift and go to state 44
state 30
(12) assignment -> ID = expression . ;
(16) expression -> expression . + expression
(17) expression -> expression . - expression
(18) expression -> expression . * expression
(19) expression -> expression . / expression
; shift and go to state 45
+ shift and go to state 33
- shift and go to state 35
* shift and go to state 34
/ shift and go to state 36
state 31
(15) expression -> ( expression . )
(16) expression -> expression . + expression
(17) expression -> expression . - expression
(18) expression -> expression . * expression
(19) expression -> expression . / expression
) shift and go to state 46
+ shift and go to state 33
- shift and go to state 35
* shift and go to state 34
/ shift and go to state 36
state 32
(29) condition -> expression LE . expression
(13) expression -> . ID
(14) expression -> . const
(15) expression -> . ( expression )
(16) expression -> . expression + expression
(17) expression -> . expression - expression
(18) expression -> . expression * expression
(19) expression -> . expression / expression
(20) const -> . INTEGER
(21) const -> . FLOAT
(22) const -> . STRING
ID shift and go to state 22
( shift and go to state 21
INTEGER shift and go to state 23
FLOAT shift and go to state 19
STRING shift and go to state 20
const shift and go to state 24
expression shift and go to state 47
state 33
(16) expression -> expression + . expression
(13) expression -> . ID
(14) expression -> . const
(15) expression -> . ( expression )
(16) expression -> . expression + expression
(17) expression -> . expression - expression
(18) expression -> . expression * expression
(19) expression -> . expression / expression
(20) const -> . INTEGER
(21) const -> . FLOAT
(22) const -> . STRING
ID shift and go to state 22
( shift and go to state 21
INTEGER shift and go to state 23
FLOAT shift and go to state 19
STRING shift and go to state 20
const shift and go to state 24
expression shift and go to state 48
state 34
(18) expression -> expression * . expression
(13) expression -> . ID
(14) expression -> . const
(15) expression -> . ( expression )
(16) expression -> . expression + expression
(17) expression -> . expression - expression
(18) expression -> . expression * expression
(19) expression -> . expression / expression
(20) const -> . INTEGER
(21) const -> . FLOAT
(22) const -> . STRING
ID shift and go to state 22
( shift and go to state 21
INTEGER shift and go to state 23
FLOAT shift and go to state 19
STRING shift and go to state 20
const shift and go to state 24
expression shift and go to state 49
state 35
(17) expression -> expression - . expression
(13) expression -> . ID
(14) expression -> . const
(15) expression -> . ( expression )
(16) expression -> . expression + expression
(17) expression -> . expression - expression
(18) expression -> . expression * expression
(19) expression -> . expression / expression
(20) const -> . INTEGER
(21) const -> . FLOAT
(22) const -> . STRING
ID shift and go to state 22
( shift and go to state 21
INTEGER shift and go to state 23
FLOAT shift and go to state 19
STRING shift and go to state 20
const shift and go to state 24
expression shift and go to state 50
state 36
(19) expression -> expression / . expression
(13) expression -> . ID
(14) expression -> . const
(15) expression -> . ( expression )
(16) expression -> . expression + expression
(17) expression -> . expression - expression
(18) expression -> . expression * expression
(19) expression -> . expression / expression
(20) const -> . INTEGER
(21) const -> . FLOAT
(22) const -> . STRING
ID shift and go to state 22
( shift and go to state 21
INTEGER shift and go to state 23
FLOAT shift and go to state 19
STRING shift and go to state 20
const shift and go to state 24
expression shift and go to state 51
state 37
(28) condition -> expression GE . expression
(13) expression -> . ID
(14) expression -> . const
(15) expression -> . ( expression )
(16) expression -> . expression + expression
(17) expression -> . expression - expression
(18) expression -> . expression * expression
(19) expression -> . expression / expression
(20) const -> . INTEGER
(21) const -> . FLOAT
(22) const -> . STRING
ID shift and go to state 22
( shift and go to state 21
INTEGER shift and go to state 23
FLOAT shift and go to state 19
STRING shift and go to state 20
const shift and go to state 24
expression shift and go to state 52
state 38
(31) condition -> expression > . expression
(13) expression -> . ID
(14) expression -> . const
(15) expression -> . ( expression )
(16) expression -> . expression + expression
(17) expression -> . expression - expression
(18) expression -> . expression * expression
(19) expression -> . expression / expression
(20) const -> . INTEGER
(21) const -> . FLOAT
(22) const -> . STRING
ID shift and go to state 22
( shift and go to state 21
INTEGER shift and go to state 23
FLOAT shift and go to state 19
STRING shift and go to state 20
const shift and go to state 24
expression shift and go to state 53
state 39
(26) condition -> expression EQ . expression
(13) expression -> . ID
(14) expression -> . const
(15) expression -> . ( expression )
(16) expression -> . expression + expression
(17) expression -> . expression - expression
(18) expression -> . expression * expression
(19) expression -> . expression / expression
(20) const -> . INTEGER
(21) const -> . FLOAT
(22) const -> . STRING
ID shift and go to state 22
( shift and go to state 21
INTEGER shift and go to state 23
FLOAT shift and go to state 19
STRING shift and go to state 20
const shift and go to state 24
expression shift and go to state 54
state 40
(30) condition -> expression < . expression
(13) expression -> . ID
(14) expression -> . const
(15) expression -> . ( expression )
(16) expression -> . expression + expression
(17) expression -> . expression - expression
(18) expression -> . expression * expression
(19) expression -> . expression / expression
(20) const -> . INTEGER
(21) const -> . FLOAT
(22) const -> . STRING
ID shift and go to state 22
( shift and go to state 21
INTEGER shift and go to state 23
FLOAT shift and go to state 19
STRING shift and go to state 20
const shift and go to state 24
expression shift and go to state 55
state 41
(27) condition -> expression NEQ . expression
(13) expression -> . ID
(14) expression -> . const
(15) expression -> . ( expression )
(16) expression -> . expression + expression
(17) expression -> . expression - expression
(18) expression -> . expression * expression
(19) expression -> . expression / expression
(20) const -> . INTEGER
(21) const -> . FLOAT
(22) const -> . STRING
ID shift and go to state 22
( shift and go to state 21
INTEGER shift and go to state 23
FLOAT shift and go to state 19
STRING shift and go to state 20
const shift and go to state 24
expression shift and go to state 56
state 42
(25) while_instr -> WHILE ( condition ) . stmt
(32) stmt -> . assignment
(33) stmt -> . { instructions }
(34) stmt -> . choice_instr
(35) stmt -> . while_instr
(12) assignment -> . ID = expression ;
(23) choice_instr -> . IF ( condition ) stmt
(24) choice_instr -> . IF ( condition ) stmt ELSE stmt
(25) while_instr -> . WHILE ( condition ) stmt
{ shift and go to state 61
ID shift and go to state 11
IF shift and go to state 9
WHILE shift and go to state 5
assignment shift and go to state 60
stmt shift and go to state 58
while_instr shift and go to state 59
choice_instr shift and go to state 57
state 43
(23) choice_instr -> IF ( condition ) . stmt
(24) choice_instr -> IF ( condition ) . stmt ELSE stmt
(32) stmt -> . assignment
(33) stmt -> . { instructions }
(34) stmt -> . choice_instr
(35) stmt -> . while_instr
(12) assignment -> . ID = expression ;
(23) choice_instr -> . IF ( condition ) stmt
(24) choice_instr -> . IF ( condition ) stmt ELSE stmt
(25) while_instr -> . WHILE ( condition ) stmt
{ shift and go to state 61
ID shift and go to state 11
IF shift and go to state 9
WHILE shift and go to state 5
assignment shift and go to state 60
stmt shift and go to state 62
while_instr shift and go to state 59
choice_instr shift and go to state 57
state 44
(5) vars -> vars , ID .
; reduce using rule 5 (vars -> vars , ID .)
, reduce using rule 5 (vars -> vars , ID .)
state 45
(12) assignment -> ID = expression ; .
ID reduce using rule 12 (assignment -> ID = expression ; .)
IF reduce using rule 12 (assignment -> ID = expression ; .)
WHILE reduce using rule 12 (assignment -> ID = expression ; .)
$end reduce using rule 12 (assignment -> ID = expression ; .)
ELSE reduce using rule 12 (assignment -> ID = expression ; .)
} reduce using rule 12 (assignment -> ID = expression ; .)
state 46
(15) expression -> ( expression ) .
+ reduce using rule 15 (expression -> ( expression ) .)
- reduce using rule 15 (expression -> ( expression ) .)
* reduce using rule 15 (expression -> ( expression ) .)
/ reduce using rule 15 (expression -> ( expression ) .)
) reduce using rule 15 (expression -> ( expression ) .)
EQ reduce using rule 15 (expression -> ( expression ) .)
NEQ reduce using rule 15 (expression -> ( expression ) .)
GE reduce using rule 15 (expression -> ( expression ) .)
LE reduce using rule 15 (expression -> ( expression ) .)
< reduce using rule 15 (expression -> ( expression ) .)
> reduce using rule 15 (expression -> ( expression ) .)
; reduce using rule 15 (expression -> ( expression ) .)
state 47
(29) condition -> expression LE expression .
(16) expression -> expression . + expression
(17) expression -> expression . - expression
(18) expression -> expression . * expression
(19) expression -> expression . / expression
) reduce using rule 29 (condition -> expression LE expression .)
+ shift and go to state 33
- shift and go to state 35
* shift and go to state 34
/ shift and go to state 36
state 48
(16) expression -> expression + expression .
(16) expression -> expression . + expression
(17) expression -> expression . - expression
(18) expression -> expression . * expression
(19) expression -> expression . / expression
+ reduce using rule 16 (expression -> expression + expression .)
- reduce using rule 16 (expression -> expression + expression .)
) reduce using rule 16 (expression -> expression + expression .)
EQ reduce using rule 16 (expression -> expression + expression .)
NEQ reduce using rule 16 (expression -> expression + expression .)
GE reduce using rule 16 (expression -> expression + expression .)
LE reduce using rule 16 (expression -> expression + expression .)
< reduce using rule 16 (expression -> expression + expression .)
> reduce using rule 16 (expression -> expression + expression .)
; reduce using rule 16 (expression -> expression + expression .)
* shift and go to state 34
/ shift and go to state 36
! * [ reduce using rule 16 (expression -> expression + expression .) ]
! / [ reduce using rule 16 (expression -> expression + expression .) ]
! + [ shift and go to state 33 ]
! - [ shift and go to state 35 ]
state 49
(18) expression -> expression * expression .
(16) expression -> expression . + expression
(17) expression -> expression . - expression
(18) expression -> expression . * expression
(19) expression -> expression . / expression
+ reduce using rule 18 (expression -> expression * expression .)
- reduce using rule 18 (expression -> expression * expression .)
* reduce using rule 18 (expression -> expression * expression .)
/ reduce using rule 18 (expression -> expression * expression .)
) reduce using rule 18 (expression -> expression * expression .)
EQ reduce using rule 18 (expression -> expression * expression .)
NEQ reduce using rule 18 (expression -> expression * expression .)
GE reduce using rule 18 (expression -> expression * expression .)
LE reduce using rule 18 (expression -> expression * expression .)
< reduce using rule 18 (expression -> expression * expression .)
> reduce using rule 18 (expression -> expression * expression .)
; reduce using rule 18 (expression -> expression * expression .)
! + [ shift and go to state 33 ]
! - [ shift and go to state 35 ]
! * [ shift and go to state 34 ]
! / [ shift and go to state 36 ]
state 50
(17) expression -> expression - expression .
(16) expression -> expression . + expression
(17) expression -> expression . - expression
(18) expression -> expression . * expression
(19) expression -> expression . / expression
+ reduce using rule 17 (expression -> expression - expression .)
- reduce using rule 17 (expression -> expression - expression .)
) reduce using rule 17 (expression -> expression - expression .)
EQ reduce using rule 17 (expression -> expression - expression .)
NEQ reduce using rule 17 (expression -> expression - expression .)
GE reduce using rule 17 (expression -> expression - expression .)
LE reduce using rule 17 (expression -> expression - expression .)
< reduce using rule 17 (expression -> expression - expression .)
> reduce using rule 17 (expression -> expression - expression .)
; reduce using rule 17 (expression -> expression - expression .)
* shift and go to state 34
/ shift and go to state 36
! * [ reduce using rule 17 (expression -> expression - expression .) ]
! / [ reduce using rule 17 (expression -> expression - expression .) ]
! + [ shift and go to state 33 ]
! - [ shift and go to state 35 ]
state 51
(19) expression -> expression / expression .
(16) expression -> expression . + expression
(17) expression -> expression . - expression
(18) expression -> expression . * expression
(19) expression -> expression . / expression
+ reduce using rule 19 (expression -> expression / expression .)
- reduce using rule 19 (expression -> expression / expression .)
* reduce using rule 19 (expression -> expression / expression .)
/ reduce using rule 19 (expression -> expression / expression .)
) reduce using rule 19 (expression -> expression / expression .)
EQ reduce using rule 19 (expression -> expression / expression .)
NEQ reduce using rule 19 (expression -> expression / expression .)
GE reduce using rule 19 (expression -> expression / expression .)
LE reduce using rule 19 (expression -> expression / expression .)
< reduce using rule 19 (expression -> expression / expression .)
> reduce using rule 19 (expression -> expression / expression .)
; reduce using rule 19 (expression -> expression / expression .)
! + [ shift and go to state 33 ]
! - [ shift and go to state 35 ]
! * [ shift and go to state 34 ]
! / [ shift and go to state 36 ]
state 52
(28) condition -> expression GE expression .
(16) expression -> expression . + expression
(17) expression -> expression . - expression
(18) expression -> expression . * expression
(19) expression -> expression . / expression