-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse.cc
2202 lines (1979 loc) · 67.2 KB
/
parse.cc
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
// Generated by Bisonc++ V5.02.00 on Wed, 15 Jan 2020 17:40:01 +0100
// $insert class.ih
#include "Parser.ih"
// The FIRST element of SR arrays shown below uses `d_type', defining the
// state's type, and `d_lastIdx' containing the last element's index. If
// d_lastIdx contains the REQ_TOKEN bitflag (see below) then the state needs
// a token: if in this state d_token__ is _UNDETERMINED_, nextToken() will be
// called
// The LAST element of SR arrays uses `d_token' containing the last retrieved
// token to speed up the (linear) seach. Except for the first element of SR
// arrays, the field `d_action' is used to determine what to do next. If
// positive, it represents the next state (used with SHIFT); if zero, it
// indicates `ACCEPT', if negative, -d_action represents the number of the
// rule to reduce to.
// `lookup()' tries to find d_token__ in the current SR array. If it fails, and
// there is no default reduction UNEXPECTED_TOKEN__ is thrown, which is then
// caught by the error-recovery function.
// The error-recovery function will pop elements off the stack until a state
// having bit flag ERR_ITEM is found. This state has a transition on _error_
// which is applied. In this _error_ state, while the current token is not a
// proper continuation, new tokens are obtained by nextToken(). If such a
// token is found, error recovery is successful and the token is
// handled according to the error state's SR table and parsing continues.
// During error recovery semantic actions are ignored.
// A state flagged with the DEF_RED flag will perform a default
// reduction if no other continuations are available for the current token.
// The ACCEPT STATE never shows a default reduction: when it is reached the
// parser returns ACCEPT(). During the grammar
// analysis phase a default reduction may have been defined, but it is
// removed during the state-definition phase.
// So:
// s_x[] =
// {
// [_field_1_] [_field_2_]
//
// First element: {state-type, idx of last element},
// Other elements: {required token, action to perform},
// ( < 0: reduce,
// 0: ACCEPT,
// > 0: next state)
// Last element: {set to d_token__, action to perform}
// }
// When the --thread-safe option is specified, all static data are defined as
// const. If --thread-safe is not provided, the state-tables are not defined
// as const, since the lookup() function below will modify them
namespace // anonymous
{
char const author[] = "Frank B. Brokken (f.b.brokken@rug.nl)";
enum ReservedTokens
{
PARSE_ACCEPT = 0, // `ACCEPT' TRANSITION
_UNDETERMINED_ = -2,
_EOF_ = -1,
_error_ = 256
};
enum StateType // modify statetype/data.cc when this enum changes
{
NORMAL,
ERR_ITEM,
REQ_TOKEN,
ERR_REQ, // ERR_ITEM | REQ_TOKEN
DEF_RED, // state having default reduction
ERR_DEF, // ERR_ITEM | DEF_RED
REQ_DEF, // REQ_TOKEN | DEF_RED
ERR_REQ_DEF // ERR_ITEM | REQ_TOKEN | DEF_RED
};
struct PI__ // Production Info
{
size_t d_nonTerm; // identification number of this production's
// non-terminal
size_t d_size; // number of elements in this production
};
struct SR__ // Shift Reduce info, see its description above
{
union
{
int _field_1_; // initializer, allowing initializations
// of the SR s_[] arrays
int d_type;
int d_token;
};
union
{
int _field_2_;
int d_lastIdx; // if negative, the state uses SHIFT
int d_action; // may be negative (reduce),
// postive (shift), or 0 (accept)
size_t d_errorState; // used with Error states
};
};
// $insert staticdata
enum // size to expand the state-stack with when
{ // full
STACK_EXPANSION__ = 10
};
// Productions Info Records:
PI__ const s_productionInfo[] =
{
{0, 0}, // not used: reduction values are negative
{311, 4}, // 1: start -> kezdes deklaraciok utasitasok befejezes
{312, 2}, // 2: kezdes (PROGRAM) -> PROGRAM AZONOSITO
{313, 1}, // 3: befejezes (PROGRAM_VEGE) -> PROGRAM_VEGE
{314, 0}, // 4: deklaraciok -> <empty>
{314, 2}, // 5: deklaraciok (VALTOZOK) -> VALTOZOK valtozolista
{315, 1}, // 6: valtozolista -> deklaracio
{315, 2}, // 7: valtozolista -> deklaracio valtozolista
{316, 2}, // 8: deklaracio (EGESZ) -> EGESZ AZONOSITO
{316, 2}, // 9: deklaracio (LOGIKAI) -> LOGIKAI AZONOSITO
{316, 2}, // 10: deklaracio (VALOS) -> VALOS AZONOSITO
{317, 3}, // 11: utasitasok (UTASITASOK) -> UTASITASOK utasitas utasitaslista
{318, 0}, // 12: utasitaslista -> <empty>
{318, 2}, // 13: utasitaslista -> utasitas utasitaslista
{319, 1}, // 14: utasitas (SKIP) -> SKIP
{319, 1}, // 15: utasitas -> ertekadas
{319, 1}, // 16: utasitas -> be
{319, 1}, // 17: utasitas -> ki
{319, 1}, // 18: utasitas -> elagazas
{319, 1}, // 19: utasitas -> ciklus
{320, 3}, // 20: ertekadas (AZONOSITO) -> AZONOSITO ERTEKADAS kifejezes
{321, 2}, // 21: be (BE) -> BE AZONOSITO
{322, 2}, // 22: ki (KI) -> KI kifejezes
{323, 6}, // 23: elagazas (HA) -> HA kifejezes AKKOR utasitas utasitaslista HA_VEGE
{323, 9}, // 24: elagazas (HA) -> HA kifejezes AKKOR utasitas utasitaslista KULONBEN utasitas utasitaslista HA_VEGE
{324, 6}, // 25: ciklus (CIKLUS) -> CIKLUS AMIG kifejezes utasitas utasitaslista CIKLUS_VEGE
{325, 1}, // 26: kifejezes (SZAMKONSTANS) -> SZAMKONSTANS
{325, 1}, // 27: kifejezes (VALOS_SZAMKONSTANS) -> VALOS_SZAMKONSTANS
{325, 1}, // 28: kifejezes (IGAZ) -> IGAZ
{325, 1}, // 29: kifejezes (HAMIS) -> HAMIS
{325, 1}, // 30: kifejezes (AZONOSITO) -> AZONOSITO
{325, 3}, // 31: kifejezes (PLUSZ) -> kifejezes PLUSZ kifejezes
{325, 3}, // 32: kifejezes (MINUSZ) -> kifejezes MINUSZ kifejezes
{325, 3}, // 33: kifejezes (SZORZAS) -> kifejezes SZORZAS kifejezes
{325, 3}, // 34: kifejezes (OSZTAS) -> kifejezes OSZTAS kifejezes
{325, 3}, // 35: kifejezes (MARADEK) -> kifejezes MARADEK kifejezes
{325, 3}, // 36: kifejezes (KISEBB) -> kifejezes KISEBB kifejezes
{325, 3}, // 37: kifejezes (NAGYOBB) -> kifejezes NAGYOBB kifejezes
{325, 3}, // 38: kifejezes (KISEBBEGYENLO) -> kifejezes KISEBBEGYENLO kifejezes
{325, 3}, // 39: kifejezes (NAGYOBBEGYENLO) -> kifejezes NAGYOBBEGYENLO kifejezes
{325, 3}, // 40: kifejezes (EGYENLO) -> kifejezes EGYENLO kifejezes
{325, 3}, // 41: kifejezes (ES) -> kifejezes ES kifejezes
{325, 3}, // 42: kifejezes (VAGY) -> kifejezes VAGY kifejezes
{325, 2}, // 43: kifejezes (NEM) -> NEM kifejezes
{325, 3}, // 44: kifejezes (BALZAROJEL) -> BALZAROJEL kifejezes JOBBZAROJEL
{325, 4}, // 45: kifejezes (EGESZRESZ) -> EGESZRESZ BALZAROJEL kifejezes JOBBZAROJEL
{325, 4}, // 46: kifejezes (TORTRESZ) -> TORTRESZ BALZAROJEL kifejezes JOBBZAROJEL
{326, 1}, // 47: start_$ -> start
};
// State info and SR__ transitions for each state.
SR__ s_0[] =
{
{ { REQ_TOKEN}, { 4} },
{ { 311}, { 1} }, // start
{ { 312}, { 2} }, // kezdes
{ { 259}, { 3} }, // PROGRAM
{ { 0}, { 0} },
};
SR__ s_1[] =
{
{ { REQ_TOKEN}, { 2} },
{ { _EOF_}, { PARSE_ACCEPT} },
{ { 0}, { 0} },
};
SR__ s_2[] =
{
{ { REQ_DEF}, { 3} },
{ { 314}, { 4} }, // deklaraciok
{ { 260}, { 5} }, // VALTOZOK
{ { 0}, { -4} },
};
SR__ s_3[] =
{
{ { REQ_TOKEN}, { 2} },
{ { 278}, { 6} }, // AZONOSITO
{ { 0}, { 0} },
};
SR__ s_4[] =
{
{ { REQ_TOKEN}, { 3} },
{ { 317}, { 7} }, // utasitasok
{ { 261}, { 8} }, // UTASITASOK
{ { 0}, { 0} },
};
SR__ s_5[] =
{
{ { REQ_TOKEN}, { 6} },
{ { 315}, { 9} }, // valtozolista
{ { 316}, { 10} }, // deklaracio
{ { 272}, { 11} }, // EGESZ
{ { 274}, { 12} }, // LOGIKAI
{ { 273}, { 13} }, // VALOS
{ { 0}, { 0} },
};
SR__ s_6[] =
{
{ { DEF_RED}, { 1} },
{ { 0}, { -2} },
};
SR__ s_7[] =
{
{ { REQ_TOKEN}, { 3} },
{ { 313}, { 14} }, // befejezes
{ { 262}, { 15} }, // PROGRAM_VEGE
{ { 0}, { 0} },
};
SR__ s_8[] =
{
{ { REQ_TOKEN}, { 13} },
{ { 319}, { 16} }, // utasitas
{ { 281}, { 17} }, // SKIP
{ { 320}, { 18} }, // ertekadas
{ { 321}, { 19} }, // be
{ { 322}, { 20} }, // ki
{ { 323}, { 21} }, // elagazas
{ { 324}, { 22} }, // ciklus
{ { 278}, { 23} }, // AZONOSITO
{ { 270}, { 24} }, // BE
{ { 271}, { 25} }, // KI
{ { 263}, { 26} }, // HA
{ { 267}, { 27} }, // CIKLUS
{ { 0}, { 0} },
};
SR__ s_9[] =
{
{ { DEF_RED}, { 1} },
{ { 0}, { -5} },
};
SR__ s_10[] =
{
{ { REQ_DEF}, { 6} },
{ { 315}, { 28} }, // valtozolista
{ { 316}, { 10} }, // deklaracio
{ { 272}, { 11} }, // EGESZ
{ { 274}, { 12} }, // LOGIKAI
{ { 273}, { 13} }, // VALOS
{ { 0}, { -6} },
};
SR__ s_11[] =
{
{ { REQ_TOKEN}, { 2} },
{ { 278}, { 29} }, // AZONOSITO
{ { 0}, { 0} },
};
SR__ s_12[] =
{
{ { REQ_TOKEN}, { 2} },
{ { 278}, { 30} }, // AZONOSITO
{ { 0}, { 0} },
};
SR__ s_13[] =
{
{ { REQ_TOKEN}, { 2} },
{ { 278}, { 31} }, // AZONOSITO
{ { 0}, { 0} },
};
SR__ s_14[] =
{
{ { DEF_RED}, { 1} },
{ { 0}, { -1} },
};
SR__ s_15[] =
{
{ { DEF_RED}, { 1} },
{ { 0}, { -3} },
};
SR__ s_16[] =
{
{ { REQ_DEF}, { 14} },
{ { 318}, { 32} }, // utasitaslista
{ { 319}, { 33} }, // utasitas
{ { 281}, { 17} }, // SKIP
{ { 320}, { 18} }, // ertekadas
{ { 321}, { 19} }, // be
{ { 322}, { 20} }, // ki
{ { 323}, { 21} }, // elagazas
{ { 324}, { 22} }, // ciklus
{ { 278}, { 23} }, // AZONOSITO
{ { 270}, { 24} }, // BE
{ { 271}, { 25} }, // KI
{ { 263}, { 26} }, // HA
{ { 267}, { 27} }, // CIKLUS
{ { 0}, { -12} },
};
SR__ s_17[] =
{
{ { DEF_RED}, { 1} },
{ { 0}, { -14} },
};
SR__ s_18[] =
{
{ { DEF_RED}, { 1} },
{ { 0}, { -15} },
};
SR__ s_19[] =
{
{ { DEF_RED}, { 1} },
{ { 0}, { -16} },
};
SR__ s_20[] =
{
{ { DEF_RED}, { 1} },
{ { 0}, { -17} },
};
SR__ s_21[] =
{
{ { DEF_RED}, { 1} },
{ { 0}, { -18} },
};
SR__ s_22[] =
{
{ { DEF_RED}, { 1} },
{ { 0}, { -19} },
};
SR__ s_23[] =
{
{ { REQ_TOKEN}, { 2} },
{ { 275}, { 34} }, // ERTEKADAS
{ { 0}, { 0} },
};
SR__ s_24[] =
{
{ { REQ_TOKEN}, { 2} },
{ { 278}, { 35} }, // AZONOSITO
{ { 0}, { 0} },
};
SR__ s_25[] =
{
{ { REQ_TOKEN}, { 11} },
{ { 325}, { 36} }, // kifejezes
{ { 258}, { 37} }, // SZAMKONSTANS
{ { 257}, { 38} }, // VALOS_SZAMKONSTANS
{ { 279}, { 39} }, // IGAZ
{ { 280}, { 40} }, // HAMIS
{ { 278}, { 41} }, // AZONOSITO
{ { 286}, { 42} }, // NEM
{ { 276}, { 43} }, // BALZAROJEL
{ { 282}, { 44} }, // EGESZRESZ
{ { 283}, { 45} }, // TORTRESZ
{ { 0}, { 0} },
};
SR__ s_26[] =
{
{ { REQ_TOKEN}, { 11} },
{ { 325}, { 46} }, // kifejezes
{ { 258}, { 37} }, // SZAMKONSTANS
{ { 257}, { 38} }, // VALOS_SZAMKONSTANS
{ { 279}, { 39} }, // IGAZ
{ { 280}, { 40} }, // HAMIS
{ { 278}, { 41} }, // AZONOSITO
{ { 286}, { 42} }, // NEM
{ { 276}, { 43} }, // BALZAROJEL
{ { 282}, { 44} }, // EGESZRESZ
{ { 283}, { 45} }, // TORTRESZ
{ { 0}, { 0} },
};
SR__ s_27[] =
{
{ { REQ_TOKEN}, { 2} },
{ { 268}, { 47} }, // AMIG
{ { 0}, { 0} },
};
SR__ s_28[] =
{
{ { DEF_RED}, { 1} },
{ { 0}, { -7} },
};
SR__ s_29[] =
{
{ { DEF_RED}, { 1} },
{ { 0}, { -8} },
};
SR__ s_30[] =
{
{ { DEF_RED}, { 1} },
{ { 0}, { -9} },
};
SR__ s_31[] =
{
{ { DEF_RED}, { 1} },
{ { 0}, { -10} },
};
SR__ s_32[] =
{
{ { DEF_RED}, { 1} },
{ { 0}, { -11} },
};
SR__ s_33[] =
{
{ { REQ_DEF}, { 14} },
{ { 318}, { 48} }, // utasitaslista
{ { 319}, { 33} }, // utasitas
{ { 281}, { 17} }, // SKIP
{ { 320}, { 18} }, // ertekadas
{ { 321}, { 19} }, // be
{ { 322}, { 20} }, // ki
{ { 323}, { 21} }, // elagazas
{ { 324}, { 22} }, // ciklus
{ { 278}, { 23} }, // AZONOSITO
{ { 270}, { 24} }, // BE
{ { 271}, { 25} }, // KI
{ { 263}, { 26} }, // HA
{ { 267}, { 27} }, // CIKLUS
{ { 0}, { -12} },
};
SR__ s_34[] =
{
{ { REQ_TOKEN}, { 11} },
{ { 325}, { 49} }, // kifejezes
{ { 258}, { 37} }, // SZAMKONSTANS
{ { 257}, { 38} }, // VALOS_SZAMKONSTANS
{ { 279}, { 39} }, // IGAZ
{ { 280}, { 40} }, // HAMIS
{ { 278}, { 41} }, // AZONOSITO
{ { 286}, { 42} }, // NEM
{ { 276}, { 43} }, // BALZAROJEL
{ { 282}, { 44} }, // EGESZRESZ
{ { 283}, { 45} }, // TORTRESZ
{ { 0}, { 0} },
};
SR__ s_35[] =
{
{ { DEF_RED}, { 1} },
{ { 0}, { -21} },
};
SR__ s_36[] =
{
{ { REQ_DEF}, { 13} },
{ { 292}, { 50} }, // PLUSZ
{ { 293}, { 51} }, // MINUSZ
{ { 294}, { 52} }, // SZORZAS
{ { 295}, { 53} }, // OSZTAS
{ { 296}, { 54} }, // MARADEK
{ { 288}, { 55} }, // KISEBB
{ { 289}, { 56} }, // NAGYOBB
{ { 290}, { 57} }, // KISEBBEGYENLO
{ { 291}, { 58} }, // NAGYOBBEGYENLO
{ { 287}, { 59} }, // EGYENLO
{ { 285}, { 60} }, // ES
{ { 284}, { 61} }, // VAGY
{ { 0}, { -22} },
};
SR__ s_37[] =
{
{ { DEF_RED}, { 1} },
{ { 0}, { -26} },
};
SR__ s_38[] =
{
{ { DEF_RED}, { 1} },
{ { 0}, { -27} },
};
SR__ s_39[] =
{
{ { DEF_RED}, { 1} },
{ { 0}, { -28} },
};
SR__ s_40[] =
{
{ { DEF_RED}, { 1} },
{ { 0}, { -29} },
};
SR__ s_41[] =
{
{ { DEF_RED}, { 1} },
{ { 0}, { -30} },
};
SR__ s_42[] =
{
{ { REQ_TOKEN}, { 11} },
{ { 325}, { 62} }, // kifejezes
{ { 258}, { 37} }, // SZAMKONSTANS
{ { 257}, { 38} }, // VALOS_SZAMKONSTANS
{ { 279}, { 39} }, // IGAZ
{ { 280}, { 40} }, // HAMIS
{ { 278}, { 41} }, // AZONOSITO
{ { 286}, { 42} }, // NEM
{ { 276}, { 43} }, // BALZAROJEL
{ { 282}, { 44} }, // EGESZRESZ
{ { 283}, { 45} }, // TORTRESZ
{ { 0}, { 0} },
};
SR__ s_43[] =
{
{ { REQ_TOKEN}, { 11} },
{ { 325}, { 63} }, // kifejezes
{ { 258}, { 37} }, // SZAMKONSTANS
{ { 257}, { 38} }, // VALOS_SZAMKONSTANS
{ { 279}, { 39} }, // IGAZ
{ { 280}, { 40} }, // HAMIS
{ { 278}, { 41} }, // AZONOSITO
{ { 286}, { 42} }, // NEM
{ { 276}, { 43} }, // BALZAROJEL
{ { 282}, { 44} }, // EGESZRESZ
{ { 283}, { 45} }, // TORTRESZ
{ { 0}, { 0} },
};
SR__ s_44[] =
{
{ { REQ_TOKEN}, { 2} },
{ { 276}, { 64} }, // BALZAROJEL
{ { 0}, { 0} },
};
SR__ s_45[] =
{
{ { REQ_TOKEN}, { 2} },
{ { 276}, { 65} }, // BALZAROJEL
{ { 0}, { 0} },
};
SR__ s_46[] =
{
{ { REQ_TOKEN}, { 14} },
{ { 264}, { 66} }, // AKKOR
{ { 292}, { 50} }, // PLUSZ
{ { 293}, { 51} }, // MINUSZ
{ { 294}, { 52} }, // SZORZAS
{ { 295}, { 53} }, // OSZTAS
{ { 296}, { 54} }, // MARADEK
{ { 288}, { 55} }, // KISEBB
{ { 289}, { 56} }, // NAGYOBB
{ { 290}, { 57} }, // KISEBBEGYENLO
{ { 291}, { 58} }, // NAGYOBBEGYENLO
{ { 287}, { 59} }, // EGYENLO
{ { 285}, { 60} }, // ES
{ { 284}, { 61} }, // VAGY
{ { 0}, { 0} },
};
SR__ s_47[] =
{
{ { REQ_TOKEN}, { 11} },
{ { 325}, { 67} }, // kifejezes
{ { 258}, { 37} }, // SZAMKONSTANS
{ { 257}, { 38} }, // VALOS_SZAMKONSTANS
{ { 279}, { 39} }, // IGAZ
{ { 280}, { 40} }, // HAMIS
{ { 278}, { 41} }, // AZONOSITO
{ { 286}, { 42} }, // NEM
{ { 276}, { 43} }, // BALZAROJEL
{ { 282}, { 44} }, // EGESZRESZ
{ { 283}, { 45} }, // TORTRESZ
{ { 0}, { 0} },
};
SR__ s_48[] =
{
{ { DEF_RED}, { 1} },
{ { 0}, { -13} },
};
SR__ s_49[] =
{
{ { REQ_DEF}, { 13} },
{ { 292}, { 50} }, // PLUSZ
{ { 293}, { 51} }, // MINUSZ
{ { 294}, { 52} }, // SZORZAS
{ { 295}, { 53} }, // OSZTAS
{ { 296}, { 54} }, // MARADEK
{ { 288}, { 55} }, // KISEBB
{ { 289}, { 56} }, // NAGYOBB
{ { 290}, { 57} }, // KISEBBEGYENLO
{ { 291}, { 58} }, // NAGYOBBEGYENLO
{ { 287}, { 59} }, // EGYENLO
{ { 285}, { 60} }, // ES
{ { 284}, { 61} }, // VAGY
{ { 0}, { -20} },
};
SR__ s_50[] =
{
{ { REQ_TOKEN}, { 11} },
{ { 325}, { 68} }, // kifejezes
{ { 258}, { 37} }, // SZAMKONSTANS
{ { 257}, { 38} }, // VALOS_SZAMKONSTANS
{ { 279}, { 39} }, // IGAZ
{ { 280}, { 40} }, // HAMIS
{ { 278}, { 41} }, // AZONOSITO
{ { 286}, { 42} }, // NEM
{ { 276}, { 43} }, // BALZAROJEL
{ { 282}, { 44} }, // EGESZRESZ
{ { 283}, { 45} }, // TORTRESZ
{ { 0}, { 0} },
};
SR__ s_51[] =
{
{ { REQ_TOKEN}, { 11} },
{ { 325}, { 69} }, // kifejezes
{ { 258}, { 37} }, // SZAMKONSTANS
{ { 257}, { 38} }, // VALOS_SZAMKONSTANS
{ { 279}, { 39} }, // IGAZ
{ { 280}, { 40} }, // HAMIS
{ { 278}, { 41} }, // AZONOSITO
{ { 286}, { 42} }, // NEM
{ { 276}, { 43} }, // BALZAROJEL
{ { 282}, { 44} }, // EGESZRESZ
{ { 283}, { 45} }, // TORTRESZ
{ { 0}, { 0} },
};
SR__ s_52[] =
{
{ { REQ_TOKEN}, { 11} },
{ { 325}, { 70} }, // kifejezes
{ { 258}, { 37} }, // SZAMKONSTANS
{ { 257}, { 38} }, // VALOS_SZAMKONSTANS
{ { 279}, { 39} }, // IGAZ
{ { 280}, { 40} }, // HAMIS
{ { 278}, { 41} }, // AZONOSITO
{ { 286}, { 42} }, // NEM
{ { 276}, { 43} }, // BALZAROJEL
{ { 282}, { 44} }, // EGESZRESZ
{ { 283}, { 45} }, // TORTRESZ
{ { 0}, { 0} },
};
SR__ s_53[] =
{
{ { REQ_TOKEN}, { 11} },
{ { 325}, { 71} }, // kifejezes
{ { 258}, { 37} }, // SZAMKONSTANS
{ { 257}, { 38} }, // VALOS_SZAMKONSTANS
{ { 279}, { 39} }, // IGAZ
{ { 280}, { 40} }, // HAMIS
{ { 278}, { 41} }, // AZONOSITO
{ { 286}, { 42} }, // NEM
{ { 276}, { 43} }, // BALZAROJEL
{ { 282}, { 44} }, // EGESZRESZ
{ { 283}, { 45} }, // TORTRESZ
{ { 0}, { 0} },
};
SR__ s_54[] =
{
{ { REQ_TOKEN}, { 11} },
{ { 325}, { 72} }, // kifejezes
{ { 258}, { 37} }, // SZAMKONSTANS
{ { 257}, { 38} }, // VALOS_SZAMKONSTANS
{ { 279}, { 39} }, // IGAZ
{ { 280}, { 40} }, // HAMIS
{ { 278}, { 41} }, // AZONOSITO
{ { 286}, { 42} }, // NEM
{ { 276}, { 43} }, // BALZAROJEL
{ { 282}, { 44} }, // EGESZRESZ
{ { 283}, { 45} }, // TORTRESZ
{ { 0}, { 0} },
};
SR__ s_55[] =
{
{ { REQ_TOKEN}, { 11} },
{ { 325}, { 73} }, // kifejezes
{ { 258}, { 37} }, // SZAMKONSTANS
{ { 257}, { 38} }, // VALOS_SZAMKONSTANS
{ { 279}, { 39} }, // IGAZ
{ { 280}, { 40} }, // HAMIS
{ { 278}, { 41} }, // AZONOSITO
{ { 286}, { 42} }, // NEM
{ { 276}, { 43} }, // BALZAROJEL
{ { 282}, { 44} }, // EGESZRESZ
{ { 283}, { 45} }, // TORTRESZ
{ { 0}, { 0} },
};
SR__ s_56[] =
{
{ { REQ_TOKEN}, { 11} },
{ { 325}, { 74} }, // kifejezes
{ { 258}, { 37} }, // SZAMKONSTANS
{ { 257}, { 38} }, // VALOS_SZAMKONSTANS
{ { 279}, { 39} }, // IGAZ
{ { 280}, { 40} }, // HAMIS
{ { 278}, { 41} }, // AZONOSITO
{ { 286}, { 42} }, // NEM
{ { 276}, { 43} }, // BALZAROJEL
{ { 282}, { 44} }, // EGESZRESZ
{ { 283}, { 45} }, // TORTRESZ
{ { 0}, { 0} },
};
SR__ s_57[] =
{
{ { REQ_TOKEN}, { 11} },
{ { 325}, { 75} }, // kifejezes
{ { 258}, { 37} }, // SZAMKONSTANS
{ { 257}, { 38} }, // VALOS_SZAMKONSTANS
{ { 279}, { 39} }, // IGAZ
{ { 280}, { 40} }, // HAMIS
{ { 278}, { 41} }, // AZONOSITO
{ { 286}, { 42} }, // NEM
{ { 276}, { 43} }, // BALZAROJEL
{ { 282}, { 44} }, // EGESZRESZ
{ { 283}, { 45} }, // TORTRESZ
{ { 0}, { 0} },
};
SR__ s_58[] =
{
{ { REQ_TOKEN}, { 11} },
{ { 325}, { 76} }, // kifejezes
{ { 258}, { 37} }, // SZAMKONSTANS
{ { 257}, { 38} }, // VALOS_SZAMKONSTANS
{ { 279}, { 39} }, // IGAZ
{ { 280}, { 40} }, // HAMIS
{ { 278}, { 41} }, // AZONOSITO
{ { 286}, { 42} }, // NEM
{ { 276}, { 43} }, // BALZAROJEL
{ { 282}, { 44} }, // EGESZRESZ
{ { 283}, { 45} }, // TORTRESZ
{ { 0}, { 0} },
};
SR__ s_59[] =
{
{ { REQ_TOKEN}, { 11} },
{ { 325}, { 77} }, // kifejezes
{ { 258}, { 37} }, // SZAMKONSTANS
{ { 257}, { 38} }, // VALOS_SZAMKONSTANS
{ { 279}, { 39} }, // IGAZ
{ { 280}, { 40} }, // HAMIS
{ { 278}, { 41} }, // AZONOSITO
{ { 286}, { 42} }, // NEM
{ { 276}, { 43} }, // BALZAROJEL
{ { 282}, { 44} }, // EGESZRESZ
{ { 283}, { 45} }, // TORTRESZ
{ { 0}, { 0} },
};
SR__ s_60[] =
{
{ { REQ_TOKEN}, { 11} },
{ { 325}, { 78} }, // kifejezes
{ { 258}, { 37} }, // SZAMKONSTANS
{ { 257}, { 38} }, // VALOS_SZAMKONSTANS
{ { 279}, { 39} }, // IGAZ
{ { 280}, { 40} }, // HAMIS
{ { 278}, { 41} }, // AZONOSITO
{ { 286}, { 42} }, // NEM
{ { 276}, { 43} }, // BALZAROJEL
{ { 282}, { 44} }, // EGESZRESZ
{ { 283}, { 45} }, // TORTRESZ
{ { 0}, { 0} },
};
SR__ s_61[] =
{
{ { REQ_TOKEN}, { 11} },
{ { 325}, { 79} }, // kifejezes
{ { 258}, { 37} }, // SZAMKONSTANS
{ { 257}, { 38} }, // VALOS_SZAMKONSTANS
{ { 279}, { 39} }, // IGAZ
{ { 280}, { 40} }, // HAMIS
{ { 278}, { 41} }, // AZONOSITO
{ { 286}, { 42} }, // NEM
{ { 276}, { 43} }, // BALZAROJEL
{ { 282}, { 44} }, // EGESZRESZ
{ { 283}, { 45} }, // TORTRESZ
{ { 0}, { 0} },
};
SR__ s_62[] =
{
{ { REQ_DEF}, { 11} },
{ { 292}, { 50} }, // PLUSZ
{ { 293}, { 51} }, // MINUSZ
{ { 294}, { 52} }, // SZORZAS
{ { 295}, { 53} }, // OSZTAS
{ { 296}, { 54} }, // MARADEK
{ { 288}, { 55} }, // KISEBB
{ { 289}, { 56} }, // NAGYOBB
{ { 290}, { 57} }, // KISEBBEGYENLO
{ { 291}, { 58} }, // NAGYOBBEGYENLO
{ { 287}, { 59} }, // EGYENLO
{ { 0}, { -43} },
};
SR__ s_63[] =
{
{ { REQ_TOKEN}, { 14} },
{ { 277}, { 80} }, // JOBBZAROJEL
{ { 292}, { 50} }, // PLUSZ
{ { 293}, { 51} }, // MINUSZ
{ { 294}, { 52} }, // SZORZAS
{ { 295}, { 53} }, // OSZTAS
{ { 296}, { 54} }, // MARADEK
{ { 288}, { 55} }, // KISEBB
{ { 289}, { 56} }, // NAGYOBB
{ { 290}, { 57} }, // KISEBBEGYENLO
{ { 291}, { 58} }, // NAGYOBBEGYENLO
{ { 287}, { 59} }, // EGYENLO
{ { 285}, { 60} }, // ES
{ { 284}, { 61} }, // VAGY
{ { 0}, { 0} },
};
SR__ s_64[] =
{
{ { REQ_TOKEN}, { 11} },
{ { 325}, { 81} }, // kifejezes
{ { 258}, { 37} }, // SZAMKONSTANS
{ { 257}, { 38} }, // VALOS_SZAMKONSTANS
{ { 279}, { 39} }, // IGAZ
{ { 280}, { 40} }, // HAMIS
{ { 278}, { 41} }, // AZONOSITO
{ { 286}, { 42} }, // NEM
{ { 276}, { 43} }, // BALZAROJEL
{ { 282}, { 44} }, // EGESZRESZ
{ { 283}, { 45} }, // TORTRESZ
{ { 0}, { 0} },
};
SR__ s_65[] =
{
{ { REQ_TOKEN}, { 11} },
{ { 325}, { 82} }, // kifejezes
{ { 258}, { 37} }, // SZAMKONSTANS
{ { 257}, { 38} }, // VALOS_SZAMKONSTANS
{ { 279}, { 39} }, // IGAZ
{ { 280}, { 40} }, // HAMIS
{ { 278}, { 41} }, // AZONOSITO
{ { 286}, { 42} }, // NEM
{ { 276}, { 43} }, // BALZAROJEL
{ { 282}, { 44} }, // EGESZRESZ
{ { 283}, { 45} }, // TORTRESZ
{ { 0}, { 0} },
};
SR__ s_66[] =
{
{ { REQ_TOKEN}, { 13} },
{ { 319}, { 83} }, // utasitas
{ { 281}, { 17} }, // SKIP
{ { 320}, { 18} }, // ertekadas
{ { 321}, { 19} }, // be
{ { 322}, { 20} }, // ki
{ { 323}, { 21} }, // elagazas
{ { 324}, { 22} }, // ciklus
{ { 278}, { 23} }, // AZONOSITO
{ { 270}, { 24} }, // BE
{ { 271}, { 25} }, // KI
{ { 263}, { 26} }, // HA
{ { 267}, { 27} }, // CIKLUS
{ { 0}, { 0} },
};
SR__ s_67[] =
{
{ { REQ_TOKEN}, { 25} },
{ { 319}, { 84} }, // utasitas
{ { 292}, { 50} }, // PLUSZ
{ { 293}, { 51} }, // MINUSZ
{ { 294}, { 52} }, // SZORZAS
{ { 295}, { 53} }, // OSZTAS
{ { 296}, { 54} }, // MARADEK
{ { 288}, { 55} }, // KISEBB
{ { 289}, { 56} }, // NAGYOBB
{ { 290}, { 57} }, // KISEBBEGYENLO
{ { 291}, { 58} }, // NAGYOBBEGYENLO
{ { 287}, { 59} }, // EGYENLO
{ { 285}, { 60} }, // ES
{ { 284}, { 61} }, // VAGY
{ { 281}, { 17} }, // SKIP
{ { 320}, { 18} }, // ertekadas
{ { 321}, { 19} }, // be
{ { 322}, { 20} }, // ki
{ { 323}, { 21} }, // elagazas
{ { 324}, { 22} }, // ciklus
{ { 278}, { 23} }, // AZONOSITO
{ { 270}, { 24} }, // BE
{ { 271}, { 25} }, // KI
{ { 263}, { 26} }, // HA
{ { 267}, { 27} }, // CIKLUS
{ { 0}, { 0} },
};
SR__ s_68[] =
{
{ { REQ_DEF}, { 4} },
{ { 294}, { 52} }, // SZORZAS
{ { 295}, { 53} }, // OSZTAS
{ { 296}, { 54} }, // MARADEK
{ { 0}, { -31} },
};
SR__ s_69[] =
{
{ { REQ_DEF}, { 4} },
{ { 294}, { 52} }, // SZORZAS
{ { 295}, { 53} }, // OSZTAS
{ { 296}, { 54} }, // MARADEK
{ { 0}, { -32} },
};
SR__ s_70[] =
{
{ { REQ_DEF}, { 1} },
{ { 0}, { -33} },
};
SR__ s_71[] =
{
{ { REQ_DEF}, { 1} },
{ { 0}, { -34} },
};
SR__ s_72[] =
{
{ { REQ_DEF}, { 1} },
{ { 0}, { -35} },
};
SR__ s_73[] =
{
{ { REQ_DEF}, { 6} },
{ { 292}, { 50} }, // PLUSZ
{ { 293}, { 51} }, // MINUSZ
{ { 294}, { 52} }, // SZORZAS
{ { 295}, { 53} }, // OSZTAS
{ { 296}, { 54} }, // MARADEK
{ { 0}, { -36} },
};
SR__ s_74[] =
{
{ { REQ_DEF}, { 6} },
{ { 292}, { 50} }, // PLUSZ
{ { 293}, { 51} }, // MINUSZ
{ { 294}, { 52} }, // SZORZAS
{ { 295}, { 53} }, // OSZTAS
{ { 296}, { 54} }, // MARADEK
{ { 0}, { -37} },
};
SR__ s_75[] =
{
{ { REQ_DEF}, { 6} },