-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjust.java
More file actions
1611 lines (1443 loc) · 40.8 KB
/
just.java
File metadata and controls
1611 lines (1443 loc) · 40.8 KB
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:JavaCC: Do not edit this line. just.java */
package ParserPackage;
import java.io.*;
public class just implements justConstants {
static SymbolTable mySymbols = new SymbolTable();
public static void main(String args []) throws ParseException, Exception
{
just parser = new just(new java.io.FileInputStream (args[0]));
//just parser = new just(System.in);
System.out.println("Reading from standard input...");
System.out.print("Enter an Just synatax :");
try
{
switch (just.one_line())
{
case 0 :
System.out.println("OK.");
break;
case 1 :
System.out.println("Goodbye.");
break;
default :
break;
}
}
catch (Exception e)
{
System.out.println("NOK.");
System.out.println(e.getMessage());
just.ReInit(System.in);
}
catch (Error e)
{
System.out.println("Oops.");
System.out.println(e.getMessage());
}
mySymbols.printList();
}
static final public int one_line() throws ParseException {
firstExpression();
{if (true) return 1;}
throw new Error("Missing return statement in function");
}
static final public void firstExpression() throws ParseException {
Token myToken;
Token type;
type = jj_consume_token(PROGRAM);
myToken = jj_consume_token(IDENT);
jj_consume_token(LGESCHWEIFT);
programmCode();
jj_consume_token(RGESCHWEIFT);
mySymbols.add(myToken, type);
}
static final public void programmCode() throws ParseException {
defintion();
}
/*Block = "{" { VarDef| Stat} "}".*/
static final public void block() throws ParseException {
jj_consume_token(LGESCHWEIFT);
label_1:
while (true) {
if (jj_2_1(3)) {
;
} else {
break label_1;
}
if (jj_2_2(3)) {
varDef();
} else if (jj_2_3(3)) {
statement();
} else {
jj_consume_token(-1);
throw new ParseException();
}
}
jj_consume_token(RGESCHWEIFT);
}
/*Definition= { VarDef| FuncDef}.*/
static final public void defintion() throws ParseException {
label_2:
while (true) {
if (jj_2_4(3)) {
;
} else {
break label_2;
}
if (jj_2_5(3)) {
varDef();
} else if (jj_2_6(3)) {
funcDef();
} else {
jj_consume_token(-1);
throw new ParseException();
}
}
}
/* FuncDef =FuncHeadBlock.*/
static final public void funcDef() throws ParseException {
funcHead();
block();
}
/*FuncHead = Type ident "(" [ FormParList] ")".*/
static final public void funcHead() throws ParseException {
Token type, ident;
type = jj_consume_token(TYPE);
ident = jj_consume_token(IDENT);
jj_consume_token(RLKLAMMER);
if (jj_2_7(3)) {
formParList();
} else {
;
}
jj_consume_token(RRKLAMMER);
mySymbols.add(ident, type);
}
/*FormParList = ["byref"] Type ident{"," ["byref"] Type ident}.*/
static final public void formParList() throws ParseException {
Token type, ident, byRef;
Token type2 = null, ident2 =null, byRef2 =null;
if (jj_2_8(3)) {
byRef = jj_consume_token(BYREF);
} else {
;
}
type = jj_consume_token(TYPE);
ident = jj_consume_token(IDENT);
label_3:
while (true) {
if (jj_2_9(3)) {
;
} else {
break label_3;
}
jj_consume_token(KOMMA);
if (jj_2_10(3)) {
byRef2 = jj_consume_token(BYREF);
} else {
;
}
type2 = jj_consume_token(TYPE);
ident2 = jj_consume_token(IDENT);
}
mySymbols.add(ident, type);
if(ident2.image != null && type2.image != null)
{
mySymbols.add(ident2, type2);
}
// TODO: byref erweitern
}
/*ident "=" Expr";".*/
static final public void assignStat() throws ParseException {
jj_consume_token(IDENT);
jj_consume_token(EQUALS);
expr();
jj_consume_token(SEMI);
}
static final public void expr() throws ParseException {
orExpr();
}
/*OrExpr = AndExpr{ "||" AndExpr}.*/
static final public void orExpr() throws ParseException {
andExpr();
label_4:
while (true) {
if (jj_2_11(3)) {
;
} else {
break label_4;
}
jj_consume_token(OR);
andExpr();
}
}
/*AndExpr = RelExpr{ "&&" RelExpr}.*/
static final public void andExpr() throws ParseException {
relExpr();
label_5:
while (true) {
if (jj_2_12(3)) {
;
} else {
break label_5;
}
jj_consume_token(KAUFUND);
relExpr();
}
}
/*RelExpr = SimpleExpr[ ("==" | "!=" | "<" | "<=" | ">" | ">=") SimpleExpr].*/
static final public void relExpr() throws ParseException {
simpleExpr();
if (jj_2_19(3)) {
if (jj_2_13(3)) {
jj_consume_token(GLEICHGLEICH);
} else if (jj_2_14(3)) {
jj_consume_token(AUSGLEICH);
} else if (jj_2_15(3)) {
jj_consume_token(KLEINER);
} else if (jj_2_16(3)) {
jj_consume_token(KLEINERGLEICH);
} else if (jj_2_17(3)) {
jj_consume_token(GROESSER);
} else if (jj_2_18(3)) {
jj_consume_token(GROESSERGLEICH);
} else {
jj_consume_token(-1);
throw new ParseException();
}
simpleExpr();
} else {
;
}
}
/*SimpleExpr = ["+" | "-"] Term { ("+" | "-") Term }.*/
static final public void simpleExpr() throws ParseException {
if (jj_2_22(3)) {
if (jj_2_20(3)) {
jj_consume_token(PLUS);
} else if (jj_2_21(3)) {
jj_consume_token(MINUS);
} else {
jj_consume_token(-1);
throw new ParseException();
}
} else {
;
}
term();
label_6:
while (true) {
if (jj_2_23(3)) {
;
} else {
break label_6;
}
if (jj_2_24(3)) {
jj_consume_token(PLUS);
} else if (jj_2_25(3)) {
jj_consume_token(MINUS);
} else {
jj_consume_token(-1);
throw new ParseException();
}
term();
}
}
/*Term = NotFact{ ("*" | "/") NotFact}.*/
static final public void term() throws ParseException {
notFact();
label_7:
while (true) {
if (jj_2_26(3)) {
;
} else {
break label_7;
}
if (jj_2_27(3)) {
jj_consume_token(MAL);
} else if (jj_2_28(3)) {
jj_consume_token(DIV);
notFact();
} else {
jj_consume_token(-1);
throw new ParseException();
}
}
}
/*NotFact = ["!"] Fact.*/
static final public void notFact() throws ParseException {
if (jj_2_29(3)) {
jj_consume_token(AUSRUF);
} else {
;
}
fact();
}
/*Fact = number | ident["(" [ ActParList] ")" ] | "(" Expr")".*/
static final public void fact() throws ParseException {
if (jj_2_32(3)) {
jj_consume_token(NUMBER);
} else if (jj_2_33(3)) {
jj_consume_token(IDENT);
if (jj_2_31(3)) {
jj_consume_token(RLKLAMMER);
if (jj_2_30(3)) {
actParList();
} else {
;
}
jj_consume_token(RRKLAMMER);
} else {
;
}
} else if (jj_2_34(3)) {
jj_consume_token(RLKLAMMER);
expr();
jj_consume_token(RRKLAMMER);
} else {
jj_consume_token(-1);
throw new ParseException();
}
}
/*CallStat = Call ";".*/
static final public void callStat() throws ParseException {
call();
jj_consume_token(SEMI);
}
/*Call = ident "(" [ ActParList] ")"*/
static final public void call() throws ParseException {
jj_consume_token(IDENT);
jj_consume_token(RLKLAMMER);
if (jj_2_35(3)) {
actParList();
} else {
;
}
jj_consume_token(RRKLAMMER);
}
//Stat = AssignStat| CallStat| IfStat| WhileStat| ReturnStat| Block | ";".
static final public void statement() throws ParseException {
if (jj_2_36(3)) {
assignStat();
} else if (jj_2_37(3)) {
ifStat();
} else if (jj_2_38(3)) {
whileState();
} else if (jj_2_39(3)) {
returnStat();
} else if (jj_2_40(3)) {
callStat();
} else if (jj_2_41(3)) {
block();
} else if (jj_2_42(3)) {
jj_consume_token(SEMI);
} else {
jj_consume_token(-1);
throw new ParseException();
}
}
/*ActParList = Expr{ "," Expr}.*/
static final public void actParList() throws ParseException {
expr();
label_8:
while (true) {
if (jj_2_43(3)) {
;
} else {
break label_8;
}
jj_consume_token(KOMMA);
expr();
}
}
//IfStat = "if" "(" Expr ")" Stat [ "else" Stat ].
static final public void ifStat() throws ParseException {
jj_consume_token(IF);
jj_consume_token(RLKLAMMER);
expr();
jj_consume_token(RRKLAMMER);
statement();
if (jj_2_44(3)) {
jj_consume_token(ELSE);
statement();
} else {
;
}
}
/*"while" "(" Expr")" Stat.*/
static final public void whileState() throws ParseException {
jj_consume_token(WHILE);
jj_consume_token(RLKLAMMER);
expr();
jj_consume_token(RRKLAMMER);
statement();
}
/*ReturnStat = "return" [ Expr] ";" .*/
static final public void returnStat() throws ParseException {
jj_consume_token(RETURN);
if (jj_2_45(3)) {
expr();
} else {
;
}
jj_consume_token(SEMI);
}
/*VarDef = Type ident[ Init] ";".*/
static final public void varDef() throws ParseException {
Token ident, type;
type = jj_consume_token(TYPE);
ident = jj_consume_token(IDENT);
if (jj_2_46(3)) {
init();
} else {
;
}
jj_consume_token(SEMI);
mySymbols.add(ident, type);
}
/*Init = "=" number.*/
static final public void init() throws ParseException {
jj_consume_token(EQUALS);
jj_consume_token(NUMBER);
}
static private boolean jj_2_1(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_1(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(0, xla); }
}
static private boolean jj_2_2(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_2(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(1, xla); }
}
static private boolean jj_2_3(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_3(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(2, xla); }
}
static private boolean jj_2_4(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_4(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(3, xla); }
}
static private boolean jj_2_5(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_5(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(4, xla); }
}
static private boolean jj_2_6(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_6(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(5, xla); }
}
static private boolean jj_2_7(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_7(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(6, xla); }
}
static private boolean jj_2_8(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_8(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(7, xla); }
}
static private boolean jj_2_9(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_9(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(8, xla); }
}
static private boolean jj_2_10(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_10(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(9, xla); }
}
static private boolean jj_2_11(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_11(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(10, xla); }
}
static private boolean jj_2_12(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_12(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(11, xla); }
}
static private boolean jj_2_13(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_13(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(12, xla); }
}
static private boolean jj_2_14(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_14(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(13, xla); }
}
static private boolean jj_2_15(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_15(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(14, xla); }
}
static private boolean jj_2_16(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_16(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(15, xla); }
}
static private boolean jj_2_17(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_17(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(16, xla); }
}
static private boolean jj_2_18(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_18(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(17, xla); }
}
static private boolean jj_2_19(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_19(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(18, xla); }
}
static private boolean jj_2_20(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_20(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(19, xla); }
}
static private boolean jj_2_21(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_21(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(20, xla); }
}
static private boolean jj_2_22(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_22(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(21, xla); }
}
static private boolean jj_2_23(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_23(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(22, xla); }
}
static private boolean jj_2_24(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_24(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(23, xla); }
}
static private boolean jj_2_25(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_25(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(24, xla); }
}
static private boolean jj_2_26(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_26(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(25, xla); }
}
static private boolean jj_2_27(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_27(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(26, xla); }
}
static private boolean jj_2_28(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_28(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(27, xla); }
}
static private boolean jj_2_29(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_29(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(28, xla); }
}
static private boolean jj_2_30(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_30(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(29, xla); }
}
static private boolean jj_2_31(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_31(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(30, xla); }
}
static private boolean jj_2_32(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_32(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(31, xla); }
}
static private boolean jj_2_33(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_33(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(32, xla); }
}
static private boolean jj_2_34(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_34(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(33, xla); }
}
static private boolean jj_2_35(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_35(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(34, xla); }
}
static private boolean jj_2_36(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_36(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(35, xla); }
}
static private boolean jj_2_37(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_37(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(36, xla); }
}
static private boolean jj_2_38(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_38(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(37, xla); }
}
static private boolean jj_2_39(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_39(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(38, xla); }
}
static private boolean jj_2_40(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_40(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(39, xla); }
}
static private boolean jj_2_41(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_41(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(40, xla); }
}
static private boolean jj_2_42(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_42(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(41, xla); }
}
static private boolean jj_2_43(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_43(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(42, xla); }
}
static private boolean jj_2_44(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_44(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(43, xla); }
}
static private boolean jj_2_45(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_45(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(44, xla); }
}
static private boolean jj_2_46(int xla) {
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return !jj_3_46(); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(45, xla); }
}
static private boolean jj_3R_23() {
if (jj_scan_token(RETURN)) return true;
Token xsp;
xsp = jj_scanpos;
if (jj_3_45()) jj_scanpos = xsp;
if (jj_scan_token(SEMI)) return true;
return false;
}
static private boolean jj_3_16() {
if (jj_scan_token(KLEINERGLEICH)) return true;
return false;
}
static private boolean jj_3_43() {
if (jj_scan_token(KOMMA)) return true;
if (jj_3R_19()) return true;
return false;
}
static private boolean jj_3_30() {
if (jj_3R_18()) return true;
return false;
}
static private boolean jj_3R_22() {
if (jj_scan_token(WHILE)) return true;
if (jj_scan_token(RLKLAMMER)) return true;
if (jj_3R_19()) return true;
return false;
}
static private boolean jj_3_35() {
if (jj_3R_18()) return true;
return false;
}
static private boolean jj_3_37() {
if (jj_3R_21()) return true;
return false;
}
static private boolean jj_3_3() {
if (jj_3R_10()) return true;
return false;
}
static private boolean jj_3_8() {
if (jj_scan_token(BYREF)) return true;
return false;
}
static private boolean jj_3R_12() {
Token xsp;
xsp = jj_scanpos;
if (jj_3_8()) jj_scanpos = xsp;
if (jj_scan_token(TYPE)) return true;
if (jj_scan_token(IDENT)) return true;
while (true) {
xsp = jj_scanpos;
if (jj_3_9()) { jj_scanpos = xsp; break; }
}
return false;
}
static private boolean jj_3R_21() {
if (jj_scan_token(IF)) return true;
if (jj_scan_token(RLKLAMMER)) return true;
if (jj_3R_19()) return true;
return false;
}
static private boolean jj_3R_18() {
if (jj_3R_19()) return true;
Token xsp;
while (true) {
xsp = jj_scanpos;
if (jj_3_43()) { jj_scanpos = xsp; break; }
}
return false;
}
static private boolean jj_3_15() {
if (jj_scan_token(KLEINER)) return true;
return false;
}
static private boolean jj_3_25() {
if (jj_scan_token(MINUS)) return true;
return false;
}
static private boolean jj_3_31() {
if (jj_scan_token(RLKLAMMER)) return true;
Token xsp;
xsp = jj_scanpos;
if (jj_3_30()) jj_scanpos = xsp;
if (jj_scan_token(RRKLAMMER)) return true;
return false;
}
static private boolean jj_3_1() {
Token xsp;
xsp = jj_scanpos;
if (jj_3_2()) {
jj_scanpos = xsp;
if (jj_3_3()) return true;
}
return false;
}
static private boolean jj_3_2() {
if (jj_3R_9()) return true;
return false;
}
static private boolean jj_3R_27() {
if (jj_scan_token(TYPE)) return true;
if (jj_scan_token(IDENT)) return true;
if (jj_scan_token(RLKLAMMER)) return true;
return false;
}
static private boolean jj_3_6() {
if (jj_3R_11()) return true;
return false;
}
static private boolean jj_3R_10() {
Token xsp;
xsp = jj_scanpos;
if (jj_3_36()) {
jj_scanpos = xsp;
if (jj_3_37()) {
jj_scanpos = xsp;
if (jj_3_38()) {
jj_scanpos = xsp;
if (jj_3_39()) {
jj_scanpos = xsp;
if (jj_3_40()) {
jj_scanpos = xsp;
if (jj_3_41()) {
jj_scanpos = xsp;
if (jj_3_42()) return true;
}
}
}
}
}
}
return false;
}
static private boolean jj_3_36() {
if (jj_3R_20()) return true;
return false;
}
static private boolean jj_3_24() {
if (jj_scan_token(PLUS)) return true;
return false;
}
static private boolean jj_3_28() {
if (jj_scan_token(DIV)) return true;
if (jj_3R_17()) return true;
return false;
}
static private boolean jj_3_14() {
if (jj_scan_token(AUSGLEICH)) return true;
return false;
}
static private boolean jj_3_23() {
Token xsp;
xsp = jj_scanpos;
if (jj_3_24()) {
jj_scanpos = xsp;
if (jj_3_25()) return true;
}
if (jj_3R_16()) return true;
return false;
}
static private boolean jj_3_33() {
if (jj_scan_token(IDENT)) return true;
Token xsp;
xsp = jj_scanpos;
if (jj_3_31()) jj_scanpos = xsp;
return false;
}
static private boolean jj_3R_30() {
if (jj_scan_token(IDENT)) return true;
if (jj_scan_token(RLKLAMMER)) return true;
Token xsp;
xsp = jj_scanpos;
if (jj_3_35()) jj_scanpos = xsp;
if (jj_scan_token(RRKLAMMER)) return true;
return false;
}
static private boolean jj_3R_24() {
if (jj_3R_30()) return true;
return false;
}
static private boolean jj_3R_11() {
if (jj_3R_27()) return true;
return false;
}
static private boolean jj_3_4() {
Token xsp;
xsp = jj_scanpos;
if (jj_3_5()) {
jj_scanpos = xsp;
if (jj_3_6()) return true;
}
return false;
}
static private boolean jj_3_5() {
if (jj_3R_9()) return true;
return false;
}
static private boolean jj_3R_25() {
if (jj_scan_token(LGESCHWEIFT)) return true;
Token xsp;
while (true) {
xsp = jj_scanpos;
if (jj_3_1()) { jj_scanpos = xsp; break; }
}
if (jj_scan_token(RGESCHWEIFT)) return true;
return false;
}
static private boolean jj_3_26() {
Token xsp;
xsp = jj_scanpos;
if (jj_3_27()) {