-
Notifications
You must be signed in to change notification settings - Fork 0
/
y.output
1740 lines (1264 loc) · 32.1 KB
/
y.output
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
0 $accept : programa $end
1 programa : parte_declarativa parte_ejecutable
2 | parte_ejecutable
3 parte_declarativa : parte_declarativa sentencia_declarativa
4 | sentencia_declarativa
5 parte_ejecutable : parte_ejecutable sentencia_ejecutable
6 | parte_ejecutable ambito
7 | sentencia_ejecutable
8 | ambito
9 parte_ejecutable_bloque : parte_ejecutable_bloque sentencia_ejecutable
10 | sentencia_ejecutable
11 sentencia_declarativa : tipo lista_var ';'
12 | tipo error ';'
13 | tipo lista_var error ';'
14 tipo : FLOAT
15 | INT
16 lista_var : lista_var ',' ID
17 | ID
18 | error ',' ID
19 lista_var_g : lista_var_g ',' ID
20 | ID
21 | error ',' ID
22 sentencia_ejecutable : seleccion
23 | iteracion ';'
24 | iteracion
25 | salida_mensajes ';'
26 | salida_mensajes
27 | asignacion
28 seleccion : IF condicion_if THEN bloque_de_sentencias
29 | IF condicion_if THEN bloque_de_sentencias else bloque_de_sentencias
30 | IF condicion_if bloque_de_sentencias
31 | IF condicion_if bloque_de_sentencias ELSE bloque_de_sentencias
32 condicion_if : '(' condicion ')'
33 | '(' condicion
34 | condicion ')'
35 | condicion
36 else : ELSE
37 condicion_until : '(' condicion ')'
38 | '(' condicion
39 | condicion ')'
40 | condicion
41 condicion : expresion comparador expresion
42 | expresion comparador error
43 | error comparador expresion
44 | expresion error expresion
45 | error comparador error
46 | error
47 asignacion : ID '=' expresion ';'
48 | ID '=' expresion
49 | ID '=' error ';'
50 | ID '=' expresion error ';'
51 | ID error ';'
52 expresion : expresion '+' expresion
53 | expresion '-' expresion
54 | TOFLOAT '(' expresion ')'
55 | expresion '*' expresion
56 | expresion '/' expresion
57 | ID
58 | CTE
59 | '-' CTE
60 comparador : '>'
61 | '<'
62 | MAYORIGUAL
63 | MENORIGUAL
64 | DISTINTO
65 | IGUALIGUAL
66 bloque_de_sentencias : sentencia_ejecutable
67 | BEGIN parte_ejecutable_bloque END ';'
68 | BEGIN parte_ejecutable_bloque END
69 iteracion : loop bloque_de_sentencias UNTIL condicion_until
70 loop : LOOP
71 salida_mensajes : PRINT '(' CADENA ')'
72 | PRINT '(' CADENA
73 | PRINT CADENA ')'
74 | PRINT CADENA
75 | PRINT '(' error ')'
76 ambito : abre_ambito parte_declara_ambito parte_ejecutable cierra_ambito
77 | abre_ambito parte_ejecutable cierra_ambito
78 | abre_ambito parte_declara_ambito cierra_ambito
79 | abre_ambito parte_ejecutable parte_declara_ambito cierra_ambito
80 | abre_ambito error cierra_ambito
81 abre_ambito : '{'
82 cierra_ambito : '}'
83 parte_declara_ambito : parte_declara_ambito sent_declara_ambito
84 | sent_declara_ambito
85 sent_declara_ambito : sentencia_declarativa
86 | GLOBAL lista_var_g ';'
state 0
$accept : . programa $end (0)
IF shift 1
PRINT shift 2
INT shift 3
FLOAT shift 4
LOOP shift 5
ID shift 6
'{' shift 7
. error
programa goto 8
parte_declarativa goto 9
parte_ejecutable goto 10
sentencia_declarativa goto 11
sentencia_ejecutable goto 12
ambito goto 13
tipo goto 14
seleccion goto 15
iteracion goto 16
salida_mensajes goto 17
asignacion goto 18
loop goto 19
abre_ambito goto 20
state 1
seleccion : IF . condicion_if THEN bloque_de_sentencias (28)
seleccion : IF . condicion_if THEN bloque_de_sentencias else bloque_de_sentencias (29)
seleccion : IF . condicion_if bloque_de_sentencias (30)
seleccion : IF . condicion_if bloque_de_sentencias ELSE bloque_de_sentencias (31)
error shift 21
TOFLOAT shift 22
ID shift 23
CTE shift 24
'-' shift 25
'(' shift 26
. error
condicion_if goto 27
condicion goto 28
expresion goto 29
state 2
salida_mensajes : PRINT . '(' CADENA ')' (71)
salida_mensajes : PRINT . '(' CADENA (72)
salida_mensajes : PRINT . CADENA ')' (73)
salida_mensajes : PRINT . CADENA (74)
salida_mensajes : PRINT . '(' error ')' (75)
CADENA shift 30
'(' shift 31
. error
state 3
tipo : INT . (15)
. reduce 15
state 4
tipo : FLOAT . (14)
. reduce 14
state 5
loop : LOOP . (70)
. reduce 70
state 6
asignacion : ID . '=' expresion ';' (47)
asignacion : ID . '=' expresion (48)
asignacion : ID . '=' error ';' (49)
asignacion : ID . '=' expresion error ';' (50)
asignacion : ID . error ';' (51)
error shift 32
'=' shift 33
. error
state 7
abre_ambito : '{' . (81)
. reduce 81
state 8
$accept : programa . $end (0)
$end accept
state 9
programa : parte_declarativa . parte_ejecutable (1)
parte_declarativa : parte_declarativa . sentencia_declarativa (3)
IF shift 1
PRINT shift 2
INT shift 3
FLOAT shift 4
LOOP shift 5
ID shift 6
'{' shift 7
. error
parte_ejecutable goto 34
sentencia_declarativa goto 35
sentencia_ejecutable goto 12
ambito goto 13
tipo goto 14
seleccion goto 15
iteracion goto 16
salida_mensajes goto 17
asignacion goto 18
loop goto 19
abre_ambito goto 20
state 10
programa : parte_ejecutable . (2)
parte_ejecutable : parte_ejecutable . sentencia_ejecutable (5)
parte_ejecutable : parte_ejecutable . ambito (6)
IF shift 1
PRINT shift 2
LOOP shift 5
ID shift 6
'{' shift 7
$end reduce 2
sentencia_ejecutable goto 36
ambito goto 37
seleccion goto 15
iteracion goto 16
salida_mensajes goto 17
asignacion goto 18
loop goto 19
abre_ambito goto 20
state 11
parte_declarativa : sentencia_declarativa . (4)
. reduce 4
state 12
parte_ejecutable : sentencia_ejecutable . (7)
. reduce 7
state 13
parte_ejecutable : ambito . (8)
. reduce 8
state 14
sentencia_declarativa : tipo . lista_var ';' (11)
sentencia_declarativa : tipo . error ';' (12)
sentencia_declarativa : tipo . lista_var error ';' (13)
error shift 38
ID shift 39
. error
lista_var goto 40
state 15
sentencia_ejecutable : seleccion . (22)
. reduce 22
state 16
sentencia_ejecutable : iteracion . ';' (23)
sentencia_ejecutable : iteracion . (24)
';' shift 41
$end reduce 24
IF reduce 24
ELSE reduce 24
PRINT reduce 24
INT reduce 24
END reduce 24
FLOAT reduce 24
GLOBAL reduce 24
LOOP reduce 24
UNTIL reduce 24
ID reduce 24
'{' reduce 24
'}' reduce 24
state 17
sentencia_ejecutable : salida_mensajes . ';' (25)
sentencia_ejecutable : salida_mensajes . (26)
';' shift 42
$end reduce 26
IF reduce 26
ELSE reduce 26
PRINT reduce 26
INT reduce 26
END reduce 26
FLOAT reduce 26
GLOBAL reduce 26
LOOP reduce 26
UNTIL reduce 26
ID reduce 26
'{' reduce 26
'}' reduce 26
state 18
sentencia_ejecutable : asignacion . (27)
. reduce 27
state 19
iteracion : loop . bloque_de_sentencias UNTIL condicion_until (69)
IF shift 1
PRINT shift 2
BEGIN shift 43
LOOP shift 5
ID shift 6
. error
sentencia_ejecutable goto 44
seleccion goto 15
iteracion goto 16
salida_mensajes goto 17
asignacion goto 18
bloque_de_sentencias goto 45
loop goto 19
state 20
ambito : abre_ambito . parte_declara_ambito parte_ejecutable cierra_ambito (76)
ambito : abre_ambito . parte_ejecutable cierra_ambito (77)
ambito : abre_ambito . parte_declara_ambito cierra_ambito (78)
ambito : abre_ambito . parte_ejecutable parte_declara_ambito cierra_ambito (79)
ambito : abre_ambito . error cierra_ambito (80)
error shift 46
IF shift 1
PRINT shift 2
INT shift 3
FLOAT shift 4
GLOBAL shift 47
LOOP shift 5
ID shift 6
'{' shift 7
. error
parte_ejecutable goto 48
sentencia_declarativa goto 49
sentencia_ejecutable goto 12
ambito goto 13
tipo goto 14
seleccion goto 15
iteracion goto 16
salida_mensajes goto 17
asignacion goto 18
loop goto 19
abre_ambito goto 20
parte_declara_ambito goto 50
sent_declara_ambito goto 51
state 21
condicion : error . comparador expresion (43)
condicion : error . comparador error (45)
condicion : error . (46)
MENORIGUAL shift 52
MAYORIGUAL shift 53
IGUALIGUAL shift 54
DISTINTO shift 55
'>' shift 56
'<' shift 57
$end reduce 46
IF reduce 46
THEN reduce 46
ELSE reduce 46
PRINT reduce 46
INT reduce 46
BEGIN reduce 46
END reduce 46
FLOAT reduce 46
GLOBAL reduce 46
LOOP reduce 46
UNTIL reduce 46
ID reduce 46
';' reduce 46
')' reduce 46
'{' reduce 46
'}' reduce 46
comparador goto 58
state 22
expresion : TOFLOAT . '(' expresion ')' (54)
'(' shift 59
. error
state 23
expresion : ID . (57)
. reduce 57
state 24
expresion : CTE . (58)
. reduce 58
state 25
expresion : '-' . CTE (59)
CTE shift 60
. error
state 26
condicion_if : '(' . condicion ')' (32)
condicion_if : '(' . condicion (33)
error shift 21
TOFLOAT shift 22
ID shift 23
CTE shift 24
'-' shift 25
. error
condicion goto 61
expresion goto 29
state 27
seleccion : IF condicion_if . THEN bloque_de_sentencias (28)
seleccion : IF condicion_if . THEN bloque_de_sentencias else bloque_de_sentencias (29)
seleccion : IF condicion_if . bloque_de_sentencias (30)
seleccion : IF condicion_if . bloque_de_sentencias ELSE bloque_de_sentencias (31)
IF shift 1
THEN shift 62
PRINT shift 2
BEGIN shift 43
LOOP shift 5
ID shift 6
. error
sentencia_ejecutable goto 44
seleccion goto 15
iteracion goto 16
salida_mensajes goto 17
asignacion goto 18
bloque_de_sentencias goto 63
loop goto 19
state 28
condicion_if : condicion . ')' (34)
condicion_if : condicion . (35)
')' shift 64
IF reduce 35
THEN reduce 35
PRINT reduce 35
BEGIN reduce 35
LOOP reduce 35
ID reduce 35
state 29
condicion : expresion . comparador expresion (41)
condicion : expresion . comparador error (42)
condicion : expresion . error expresion (44)
expresion : expresion . '+' expresion (52)
expresion : expresion . '-' expresion (53)
expresion : expresion . '*' expresion (55)
expresion : expresion . '/' expresion (56)
error shift 65
MENORIGUAL shift 52
MAYORIGUAL shift 53
IGUALIGUAL shift 54
DISTINTO shift 55
'+' shift 66
'-' shift 67
'*' shift 68
'/' shift 69
'>' shift 56
'<' shift 57
. error
comparador goto 70
state 30
salida_mensajes : PRINT CADENA . ')' (73)
salida_mensajes : PRINT CADENA . (74)
')' shift 71
$end reduce 74
IF reduce 74
ELSE reduce 74
PRINT reduce 74
INT reduce 74
END reduce 74
FLOAT reduce 74
GLOBAL reduce 74
LOOP reduce 74
UNTIL reduce 74
ID reduce 74
';' reduce 74
'{' reduce 74
'}' reduce 74
state 31
salida_mensajes : PRINT '(' . CADENA ')' (71)
salida_mensajes : PRINT '(' . CADENA (72)
salida_mensajes : PRINT '(' . error ')' (75)
error shift 72
CADENA shift 73
. error
state 32
asignacion : ID error . ';' (51)
';' shift 74
. error
state 33
asignacion : ID '=' . expresion ';' (47)
asignacion : ID '=' . expresion (48)
asignacion : ID '=' . error ';' (49)
asignacion : ID '=' . expresion error ';' (50)
error shift 75
TOFLOAT shift 22
ID shift 23
CTE shift 24
'-' shift 25
. error
expresion goto 76
state 34
programa : parte_declarativa parte_ejecutable . (1)
parte_ejecutable : parte_ejecutable . sentencia_ejecutable (5)
parte_ejecutable : parte_ejecutable . ambito (6)
IF shift 1
PRINT shift 2
LOOP shift 5
ID shift 6
'{' shift 7
$end reduce 1
sentencia_ejecutable goto 36
ambito goto 37
seleccion goto 15
iteracion goto 16
salida_mensajes goto 17
asignacion goto 18
loop goto 19
abre_ambito goto 20
state 35
parte_declarativa : parte_declarativa sentencia_declarativa . (3)
. reduce 3
state 36
parte_ejecutable : parte_ejecutable sentencia_ejecutable . (5)
. reduce 5
state 37
parte_ejecutable : parte_ejecutable ambito . (6)
. reduce 6
state 38
sentencia_declarativa : tipo error . ';' (12)
lista_var : error . ',' ID (18)
';' shift 77
',' shift 78
. error
state 39
lista_var : ID . (17)
. reduce 17
state 40
sentencia_declarativa : tipo lista_var . ';' (11)
sentencia_declarativa : tipo lista_var . error ';' (13)
lista_var : lista_var . ',' ID (16)
error shift 79
';' shift 80
',' shift 81
. error
state 41
sentencia_ejecutable : iteracion ';' . (23)
. reduce 23
state 42
sentencia_ejecutable : salida_mensajes ';' . (25)
. reduce 25
state 43
bloque_de_sentencias : BEGIN . parte_ejecutable_bloque END ';' (67)
bloque_de_sentencias : BEGIN . parte_ejecutable_bloque END (68)
IF shift 1
PRINT shift 2
LOOP shift 5
ID shift 6
. error
sentencia_ejecutable goto 82
parte_ejecutable_bloque goto 83
seleccion goto 15
iteracion goto 16
salida_mensajes goto 17
asignacion goto 18
loop goto 19
state 44
bloque_de_sentencias : sentencia_ejecutable . (66)
. reduce 66
state 45
iteracion : loop bloque_de_sentencias . UNTIL condicion_until (69)
UNTIL shift 84
. error
state 46
ambito : abre_ambito error . cierra_ambito (80)
'}' shift 85
. error
cierra_ambito goto 86
state 47
sent_declara_ambito : GLOBAL . lista_var_g ';' (86)
error shift 87
ID shift 88
. error
lista_var_g goto 89
state 48
parte_ejecutable : parte_ejecutable . sentencia_ejecutable (5)
parte_ejecutable : parte_ejecutable . ambito (6)
ambito : abre_ambito parte_ejecutable . cierra_ambito (77)
ambito : abre_ambito parte_ejecutable . parte_declara_ambito cierra_ambito (79)
IF shift 1
PRINT shift 2
INT shift 3
FLOAT shift 4
GLOBAL shift 47
LOOP shift 5
ID shift 6
'{' shift 7
'}' shift 85
. error
sentencia_declarativa goto 49
sentencia_ejecutable goto 36
ambito goto 37
tipo goto 14
seleccion goto 15
iteracion goto 16
salida_mensajes goto 17
asignacion goto 18
loop goto 19
abre_ambito goto 20
parte_declara_ambito goto 90
cierra_ambito goto 91
sent_declara_ambito goto 51
state 49
sent_declara_ambito : sentencia_declarativa . (85)
. reduce 85
state 50
ambito : abre_ambito parte_declara_ambito . parte_ejecutable cierra_ambito (76)
ambito : abre_ambito parte_declara_ambito . cierra_ambito (78)
parte_declara_ambito : parte_declara_ambito . sent_declara_ambito (83)
IF shift 1
PRINT shift 2
INT shift 3
FLOAT shift 4
GLOBAL shift 47
LOOP shift 5
ID shift 6
'{' shift 7
'}' shift 85
. error
parte_ejecutable goto 92
sentencia_declarativa goto 49
sentencia_ejecutable goto 12
ambito goto 13
tipo goto 14
seleccion goto 15
iteracion goto 16
salida_mensajes goto 17
asignacion goto 18
loop goto 19
abre_ambito goto 20
cierra_ambito goto 93
sent_declara_ambito goto 94
state 51
parte_declara_ambito : sent_declara_ambito . (84)
. reduce 84
state 52
comparador : MENORIGUAL . (63)
. reduce 63
state 53
comparador : MAYORIGUAL . (62)
. reduce 62
state 54
comparador : IGUALIGUAL . (65)
. reduce 65
state 55
comparador : DISTINTO . (64)
. reduce 64
state 56
comparador : '>' . (60)
. reduce 60
state 57
comparador : '<' . (61)
. reduce 61
state 58
condicion : error comparador . expresion (43)
condicion : error comparador . error (45)
error shift 95
TOFLOAT shift 22
ID shift 23
CTE shift 24
'-' shift 25
. error
expresion goto 96
state 59
expresion : TOFLOAT '(' . expresion ')' (54)
TOFLOAT shift 22
ID shift 23
CTE shift 24
'-' shift 25
. error
expresion goto 97
state 60
expresion : '-' CTE . (59)
. reduce 59
state 61
condicion_if : '(' condicion . ')' (32)
condicion_if : '(' condicion . (33)
')' shift 98
IF reduce 33
THEN reduce 33
PRINT reduce 33
BEGIN reduce 33
LOOP reduce 33
ID reduce 33
state 62
seleccion : IF condicion_if THEN . bloque_de_sentencias (28)
seleccion : IF condicion_if THEN . bloque_de_sentencias else bloque_de_sentencias (29)
IF shift 1
PRINT shift 2
BEGIN shift 43
LOOP shift 5
ID shift 6
. error
sentencia_ejecutable goto 44
seleccion goto 15
iteracion goto 16
salida_mensajes goto 17
asignacion goto 18
bloque_de_sentencias goto 99
loop goto 19
state 63
seleccion : IF condicion_if bloque_de_sentencias . (30)
seleccion : IF condicion_if bloque_de_sentencias . ELSE bloque_de_sentencias (31)
ELSE shift 100
$end reduce 30
IF reduce 30
PRINT reduce 30
INT reduce 30
END reduce 30
FLOAT reduce 30
GLOBAL reduce 30
LOOP reduce 30
UNTIL reduce 30
ID reduce 30
'{' reduce 30
'}' reduce 30
state 64
condicion_if : condicion ')' . (34)
. reduce 34
state 65
condicion : expresion error . expresion (44)
TOFLOAT shift 22
ID shift 23
CTE shift 24
'-' shift 25
. error
expresion goto 101
state 66
expresion : expresion '+' . expresion (52)
TOFLOAT shift 22
ID shift 23
CTE shift 24
'-' shift 25
. error
expresion goto 102
state 67
expresion : expresion '-' . expresion (53)
TOFLOAT shift 22
ID shift 23
CTE shift 24
'-' shift 25
. error
expresion goto 103
state 68
expresion : expresion '*' . expresion (55)
TOFLOAT shift 22
ID shift 23
CTE shift 24
'-' shift 25
. error
expresion goto 104
state 69
expresion : expresion '/' . expresion (56)
TOFLOAT shift 22
ID shift 23
CTE shift 24
'-' shift 25
. error
expresion goto 105
state 70
condicion : expresion comparador . expresion (41)
condicion : expresion comparador . error (42)
error shift 106
TOFLOAT shift 22
ID shift 23
CTE shift 24
'-' shift 25
. error
expresion goto 107
state 71
salida_mensajes : PRINT CADENA ')' . (73)
. reduce 73
state 72
salida_mensajes : PRINT '(' error . ')' (75)
')' shift 108
. error