-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimplejava.java
More file actions
1161 lines (1090 loc) · 38 KB
/
Copy pathsimplejava.java
File metadata and controls
1161 lines (1090 loc) · 38 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. simplejava.java */
public class simplejava implements simplejavaConstants {
static final public ASTProgram program() throws ParseException {
Token t; ASTClasses classes = null; ASTClass classs; ASTFunctionDefinitions funcDefs = null; ASTFunctionDefinition funcDef;
label_1:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case CLASS:
;
break;
default:
jj_la1[0] = jj_gen;
break label_1;
}
classs = classDef();
if(classes == null)
classes = new ASTClasses(classs);
else
classes.addElement(classs);
}
label_2:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case IDENTIFIER:
;
break;
default:
jj_la1[1] = jj_gen;
break label_2;
}
funcDef = funcDecl();
if(funcDefs == null)
funcDefs = new ASTFunctionDefinitions(funcDef);
else
funcDefs.addElement(funcDef);
}
t = jj_consume_token(0);
{if (true) return new ASTProgram(classes, funcDefs, t.beginLine);}
throw new Error("Missing return statement in function");
}
static final public ASTClass classDef() throws ParseException {
Token name; ASTInstanceVariableDefs instVars = null;
jj_consume_token(CLASS);
name = jj_consume_token(IDENTIFIER);
jj_consume_token(LEFT_CURLY_BRACE);
instVars = varDef(instVars);
jj_consume_token(RIGHT_CURLY_BRACE);
{if (true) return new ASTClass(name.image, instVars, name.beginLine);}
throw new Error("Missing return statement in function");
}
static final public ASTInstanceVariableDefs varDef(ASTInstanceVariableDefs instVars) throws ParseException {
ASTInstanceVariableDef instVar; Token type; Token name; int arrDim = 0;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case IDENTIFIER:
type = jj_consume_token(IDENTIFIER);
name = jj_consume_token(IDENTIFIER);
arrDim = arrayDim(arrDim);
jj_consume_token(SEMICOLON);
instVar = new ASTInstanceVariableDef(type.image, name.image, arrDim, type.beginLine);
if(instVars != null) instVars.addElement(instVar); else instVars = new ASTInstanceVariableDefs(instVar);
varDef(instVars);
{if (true) return instVars;}
break;
default:
jj_la1[2] = jj_gen;
{if (true) return instVars;}
}
throw new Error("Missing return statement in function");
}
static final public int arrayDim(int arrDim) throws ParseException {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case LEFT_SQUARE_BRACE:
jj_consume_token(LEFT_SQUARE_BRACE);
jj_consume_token(RIGHT_SQUARE_BRACE);
arrDim = arrayDim(arrDim);
{if (true) return arrDim + 1;}
break;
default:
jj_la1[3] = jj_gen;
{if (true) return arrDim;}
}
throw new Error("Missing return statement in function");
}
static final public ASTFunctionDefinition funcDecl() throws ParseException {
Token type; Token name; ASTFormals formals; ASTFunctionDefinition funcDef;
type = jj_consume_token(IDENTIFIER);
name = jj_consume_token(IDENTIFIER);
jj_consume_token(LEFT_PARENTHESIS);
formals = formParamList();
jj_consume_token(RIGHT_PARENTHESIS);
funcDef = funcDeclS(type, name, formals);
{if (true) return funcDef;}
throw new Error("Missing return statement in function");
}
static final public ASTFunctionDefinition funcDeclS(Token type, Token name, ASTFormals formals) throws ParseException {
ASTStatement body;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case SEMICOLON:
funcProto();
{if (true) return new ASTPrototype(type.image, name.image, formals, type.beginLine);}
break;
case LEFT_CURLY_BRACE:
body = funcDef();
{if (true) return new ASTFunction(type.image, name.image, formals, body, type.beginLine);}
break;
default:
jj_la1[4] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
throw new Error("Missing return statement in function");
}
static final public void funcProto() throws ParseException {
jj_consume_token(SEMICOLON);
}
static final public ASTFormals formParamList() throws ParseException {
ASTFormals formals = null; ASTFormal formal;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case IDENTIFIER:
formal = formParam();
formals = new ASTFormals(formal);
formals = formParamListS(formals);
{if (true) return formals;}
break;
default:
jj_la1[5] = jj_gen;
{if (true) return formals;}
}
throw new Error("Missing return statement in function");
}
static final public ASTFormals formParamListS(ASTFormals formals) throws ParseException {
ASTFormal formal;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case COMMA:
jj_consume_token(COMMA);
formal = formParam();
formals.addElement(formal);
formals = formParamListS(formals);
{if (true) return formals;}
break;
default:
jj_la1[6] = jj_gen;
{if (true) return formals;}
}
throw new Error("Missing return statement in function");
}
static final public ASTFormal formParam() throws ParseException {
Token type; Token name; int arrDim = 0;
type = jj_consume_token(IDENTIFIER);
name = jj_consume_token(IDENTIFIER);
arrDim = arrayDim(arrDim);
{if (true) return new ASTFormal(type.image, name.image, arrDim, type.beginLine);}
throw new Error("Missing return statement in function");
}
static final public ASTStatement funcDef() throws ParseException {
ASTStatements stats = null; ASTStatement stat; Token t;
t = jj_consume_token(LEFT_CURLY_BRACE);
label_3:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case FOR:
case WHILE:
case DO:
case IF:
case RETURN:
case SEMICOLON:
case IDENTIFIER:
;
break;
default:
jj_la1[7] = jj_gen;
break label_3;
}
stat = statement();
if(stats != null) stats.addElement(stat); else stats = new ASTStatements(stat);
}
jj_consume_token(RIGHT_CURLY_BRACE);
if(stats == null) stats = new ASTStatements(); {if (true) return stats;}
throw new Error("Missing return statement in function");
}
static final public ASTStatement statement() throws ParseException {
ASTStatement stat; Token name;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case IDENTIFIER:
name = jj_consume_token(IDENTIFIER);
stat = statementS(name);
jj_consume_token(SEMICOLON);
{if (true) return stat;}
break;
case IF:
stat = ifStat();
{if (true) return stat;}
break;
case WHILE:
stat = whileStat();
{if (true) return stat;}
break;
case DO:
stat = doWhile();
{if (true) return stat;}
break;
case FOR:
stat = forStat();
{if (true) return stat;}
break;
case RETURN:
stat = returnStat();
jj_consume_token(SEMICOLON);
{if (true) return stat;}
break;
case SEMICOLON:
name = jj_consume_token(SEMICOLON);
{if (true) return new ASTEmptyStatement(name.beginLine);}
break;
default:
jj_la1[8] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
throw new Error("Missing return statement in function");
}
static final public ASTReturnStatement returnStat() throws ParseException {
ASTExpression expr; Token t;
t = jj_consume_token(RETURN);
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case TRUE:
case FALSE:
case LEFT_PARENTHESIS:
case MINUS:
case NOT:
case IDENTIFIER:
case INTEGER_LITERAL:
expr = orExp();
{if (true) return new ASTReturnStatement(expr, expr.line());}
break;
default:
jj_la1[9] = jj_gen;
{if (true) return new ASTReturnStatement(null, t.beginLine);}
}
throw new Error("Missing return statement in function");
}
static final public ASTForStatement forStat() throws ParseException {
ASTStatement init; ASTExpression test; ASTStatement inc; ASTStatement body; Token start;
start = jj_consume_token(FOR);
jj_consume_token(LEFT_PARENTHESIS);
init = forInit(start);
jj_consume_token(SEMICOLON);
test = orExp();
jj_consume_token(SEMICOLON);
inc = forInit(start);
jj_consume_token(RIGHT_PARENTHESIS);
body = thenStat();
{if (true) return new ASTForStatement(init, test, inc, body, start.beginLine);}
throw new Error("Missing return statement in function");
}
static final public ASTStatement forInit(Token start) throws ParseException {
Token name; ASTBaseVariable var; ASTStatement stat;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case IDENTIFIER:
name = jj_consume_token(IDENTIFIER);
var = new ASTBaseVariable(name.image, name.beginLine);
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case IDENTIFIER:
stat = varDecStat(name);
break;
case INC_DOWN:
case INC_UP:
stat = incStat(var);
break;
case GETS:
stat = assignStat(var);
break;
default:
jj_la1[10] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
{if (true) return stat;}
break;
default:
jj_la1[11] = jj_gen;
{if (true) return new ASTEmptyStatement(start.beginLine);}
}
throw new Error("Missing return statement in function");
}
static final public ASTDoWhileStatement doWhile() throws ParseException {
ASTExpression test; ASTStatement body; Token start;
start = jj_consume_token(DO);
body = thenStat();
jj_consume_token(WHILE);
jj_consume_token(LEFT_PARENTHESIS);
test = orExp();
jj_consume_token(RIGHT_PARENTHESIS);
jj_consume_token(SEMICOLON);
{if (true) return new ASTDoWhileStatement(test, body, start.beginLine);}
throw new Error("Missing return statement in function");
}
static final public ASTWhileStatement whileStat() throws ParseException {
ASTExpression test; ASTStatement body; Token start;
start = jj_consume_token(WHILE);
jj_consume_token(LEFT_PARENTHESIS);
test = orExp();
jj_consume_token(RIGHT_PARENTHESIS);
body = thenStat();
{if (true) return new ASTWhileStatement(test, body, start.beginLine);}
throw new Error("Missing return statement in function");
}
static final public ASTStatement ifStat() throws ParseException {
Token start; ASTExpression expr; ASTStatement thenState; ASTStatement elseState;
start = jj_consume_token(IF);
jj_consume_token(LEFT_PARENTHESIS);
expr = orExp();
jj_consume_token(RIGHT_PARENTHESIS);
thenState = thenStat();
elseState = elseStat();
{if (true) return new ASTIfStatement(expr, thenState, elseState, start.beginLine);}
throw new Error("Missing return statement in function");
}
static final public ASTStatement thenStat() throws ParseException {
ASTStatement stat;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case LEFT_CURLY_BRACE:
stat = funcDef();
{if (true) return stat;}
break;
case FOR:
case WHILE:
case DO:
case IF:
case RETURN:
case SEMICOLON:
case IDENTIFIER:
stat = statement();
{if (true) return stat;}
break;
default:
jj_la1[12] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
throw new Error("Missing return statement in function");
}
static final public ASTStatement elseStat() throws ParseException {
ASTStatement stat;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case ELSE:
jj_consume_token(ELSE);
stat = thenStat();
{if (true) return stat;}
break;
default:
jj_la1[13] = jj_gen;
{if (true) return null;}
}
throw new Error("Missing return statement in function");
}
static final public ASTStatement statementS(Token name) throws ParseException {
ASTStatement stat; ASTVariable var;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case LEFT_SQUARE_BRACE:
case DOT:
case GETS:
case INC_DOWN:
case INC_UP:
var = expressionS(new ASTBaseVariable(name.image, name.beginLine));
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case GETS:
stat = assignStat(var);
break;
case INC_DOWN:
case INC_UP:
stat = incStat(var);
break;
default:
jj_la1[14] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
{if (true) return stat;}
break;
case IDENTIFIER:
stat = varDecStat(name);
{if (true) return stat;}
break;
case LEFT_PARENTHESIS:
stat = funcCallStat(name);
{if (true) return stat;}
break;
default:
jj_la1[15] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
throw new Error("Missing return statement in function");
}
static final public ASTFunctionCallStatement funcCallStat(Token name) throws ParseException {
ASTFunctionCallStatement fcStat = new ASTFunctionCallStatement(name.image, name.beginLine);
jj_consume_token(LEFT_PARENTHESIS);
fcStat = expListS(fcStat);
jj_consume_token(RIGHT_PARENTHESIS);
{if (true) return fcStat;}
throw new Error("Missing return statement in function");
}
static final public ASTFunctionCallStatement expListS(ASTFunctionCallStatement fcStat) throws ParseException {
ASTExpression expr;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case TRUE:
case FALSE:
case LEFT_PARENTHESIS:
case MINUS:
case NOT:
case IDENTIFIER:
case INTEGER_LITERAL:
expr = orExp();
fcStat.addElement(expr);
fcStat = expListSS(fcStat);
{if (true) return fcStat;}
break;
default:
jj_la1[16] = jj_gen;
{if (true) return fcStat;}
}
throw new Error("Missing return statement in function");
}
static final public ASTFunctionCallStatement expListSS(ASTFunctionCallStatement fcStat) throws ParseException {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case COMMA:
jj_consume_token(COMMA);
fcStat = expListS(fcStat);
{if (true) return fcStat;}
break;
default:
jj_la1[17] = jj_gen;
{if (true) return fcStat;}
}
throw new Error("Missing return statement in function");
}
static final public ASTVariableDefStatement varDecStat(Token type) throws ParseException {
Token name; int arrDim = 0; ASTExpression expr;
name = jj_consume_token(IDENTIFIER);
arrDim = arrayDim(arrDim);
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case GETS:
expr = varDecAssign();
{if (true) return new ASTVariableDefStatement(type.image, name.image, arrDim, expr, type.beginLine);}
break;
default:
jj_la1[18] = jj_gen;
{if (true) return new ASTVariableDefStatement(type.image, name.image, arrDim, type.beginLine);}
}
throw new Error("Missing return statement in function");
}
static final public ASTExpression varDecAssign() throws ParseException {
ASTExpression expr;
jj_consume_token(GETS);
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case TRUE:
case FALSE:
case LEFT_PARENTHESIS:
case MINUS:
case NOT:
case IDENTIFIER:
case INTEGER_LITERAL:
expr = orExp();
break;
case NEW:
expr = newExp();
break;
default:
jj_la1[19] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
{if (true) return expr;}
throw new Error("Missing return statement in function");
}
static final public ASTAssignmentStatement assignStat(ASTVariable var) throws ParseException {
ASTExpression expr;
jj_consume_token(GETS);
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case TRUE:
case FALSE:
case LEFT_PARENTHESIS:
case MINUS:
case NOT:
case IDENTIFIER:
case INTEGER_LITERAL:
expr = orExp();
break;
case NEW:
expr = newExp();
break;
default:
jj_la1[20] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
{if (true) return new ASTAssignmentStatement(var, expr, var.line());}
throw new Error("Missing return statement in function");
}
static final public ASTStatement incStat(ASTVariable var) throws ParseException {
ASTVariableExpression varExp = new ASTVariableExpression(var, var.line());
ASTIntegerLiteral intLit = new ASTIntegerLiteral(1, var.line()); ASTOperatorExpression opExp;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case INC_UP:
jj_consume_token(INC_UP);
opExp = new ASTOperatorExpression(varExp, intLit, "+", var.line());
{if (true) return new ASTAssignmentStatement(var, opExp, var.line());}
break;
case INC_DOWN:
jj_consume_token(INC_DOWN);
opExp = new ASTOperatorExpression(varExp, intLit, "-", var.line());
{if (true) return new ASTAssignmentStatement(var, opExp, var.line());}
break;
default:
jj_la1[21] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
throw new Error("Missing return statement in function");
}
static final public ASTExpression newExp() throws ParseException {
Token type; ASTExpression expr;
jj_consume_token(NEW);
type = jj_consume_token(IDENTIFIER);
expr = newExpS(type);
{if (true) return expr;}
throw new Error("Missing return statement in function");
}
static final public ASTExpression newExpS(Token type) throws ParseException {
ASTExpression expr;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case LEFT_PARENTHESIS:
newClass();
{if (true) return new ASTNewClassExpression(type.image, type.beginLine);}
break;
case LEFT_SQUARE_BRACE:
expr = newArray(type);
{if (true) return expr;}
break;
default:
jj_la1[22] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
throw new Error("Missing return statement in function");
}
static final public void newClass() throws ParseException {
jj_consume_token(LEFT_PARENTHESIS);
jj_consume_token(RIGHT_PARENTHESIS);
}
static final public ASTNewArrayExpression newArray(Token type) throws ParseException {
ASTExpression elems; int arrDim = 1;
jj_consume_token(LEFT_SQUARE_BRACE);
elems = orExp();
jj_consume_token(RIGHT_SQUARE_BRACE);
arrDim = arrayDim(arrDim);
{if (true) return new ASTNewArrayExpression(type.image, elems, arrDim, type.beginLine);}
throw new Error("Missing return statement in function");
}
static final public void newArrayS() throws ParseException {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case LEFT_SQUARE_BRACE:
jj_consume_token(LEFT_SQUARE_BRACE);
jj_consume_token(RIGHT_SQUARE_BRACE);
newArrayS();
break;
default:
jj_la1[23] = jj_gen;
}
}
static final public ASTExpression orExp() throws ParseException {
ASTExpression expr;
expr = andExp();
expr = orExpS(expr);
{if (true) return expr;}
throw new Error("Missing return statement in function");
}
static final public ASTExpression orExpS(ASTExpression left) throws ParseException {
ASTExpression right; Token opr;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case OR:
opr = jj_consume_token(OR);
right = orExp();
{if (true) return new ASTOperatorExpression(left, right, opr.image, left.line());}
break;
default:
jj_la1[24] = jj_gen;
{if (true) return left;}
}
throw new Error("Missing return statement in function");
}
static final public ASTExpression andExp() throws ParseException {
ASTExpression expr;
expr = notExp();
expr = andExpS(expr);
{if (true) return expr;}
throw new Error("Missing return statement in function");
}
static final public ASTExpression andExpS(ASTExpression left) throws ParseException {
ASTExpression right; Token opr;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case AND:
opr = jj_consume_token(AND);
right = andExp();
{if (true) return new ASTOperatorExpression(left, right, opr.image, left.line());}
break;
default:
jj_la1[25] = jj_gen;
{if (true) return left;}
}
throw new Error("Missing return statement in function");
}
static final public ASTExpression notExp() throws ParseException {
Token t; ASTExpression expr;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case NOT:
t = jj_consume_token(NOT);
expr = compExp();
{if (true) return new ASTUnaryOperatorExpression(expr, t.image, t.beginLine);}
break;
case TRUE:
case FALSE:
case LEFT_PARENTHESIS:
case MINUS:
case IDENTIFIER:
case INTEGER_LITERAL:
expr = compExp();
{if (true) return expr;}
break;
default:
jj_la1[26] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
throw new Error("Missing return statement in function");
}
static final public ASTExpression compExp() throws ParseException {
ASTExpression expr;
expr = addExp();
expr = compExpS(expr);
{if (true) return expr;}
throw new Error("Missing return statement in function");
}
static final public ASTExpression compExpS(ASTExpression left) throws ParseException {
ASTExpression right; Token opr;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case EQUALS:
case NOT_EQUALS:
case LESS_THAN:
case GREATER_THAN:
case LESS_THAN_OR_EQUAL:
case GREATER_THAN_OR_EQUAL:
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case EQUALS:
opr = jj_consume_token(EQUALS);
break;
case NOT_EQUALS:
opr = jj_consume_token(NOT_EQUALS);
break;
case GREATER_THAN:
opr = jj_consume_token(GREATER_THAN);
break;
case GREATER_THAN_OR_EQUAL:
opr = jj_consume_token(GREATER_THAN_OR_EQUAL);
break;
case LESS_THAN:
opr = jj_consume_token(LESS_THAN);
break;
case LESS_THAN_OR_EQUAL:
opr = jj_consume_token(LESS_THAN_OR_EQUAL);
break;
default:
jj_la1[27] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
right = compExp();
{if (true) return new ASTOperatorExpression(left, right, opr.image, left.line());}
break;
default:
jj_la1[28] = jj_gen;
{if (true) return left;}
}
throw new Error("Missing return statement in function");
}
static final public ASTExpression addExp() throws ParseException {
ASTExpression expr;
expr = multExp();
expr = addExpS(expr);
{if (true) return expr;}
throw new Error("Missing return statement in function");
}
static final public ASTExpression addExpS(ASTExpression left) throws ParseException {
ASTExpression right; Token opr;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case PLUS:
case MINUS:
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case PLUS:
opr = jj_consume_token(PLUS);
break;
case MINUS:
opr = jj_consume_token(MINUS);
break;
default:
jj_la1[29] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
right = addExp();
{if (true) return new ASTOperatorExpression(left, right, opr.image, left.line());}
break;
default:
jj_la1[30] = jj_gen;
{if (true) return left;}
}
throw new Error("Missing return statement in function");
}
static final public ASTExpression multExp() throws ParseException {
ASTExpression expr;
expr = unaryMin();
expr = multExpS(expr);
{if (true) return expr;}
throw new Error("Missing return statement in function");
}
static final public ASTExpression multExpS(ASTExpression left) throws ParseException {
ASTExpression right; Token opr;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case TIMES:
case DIVIDE:
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case DIVIDE:
opr = jj_consume_token(DIVIDE);
break;
case TIMES:
opr = jj_consume_token(TIMES);
break;
default:
jj_la1[31] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
right = multExp();
{if (true) return new ASTOperatorExpression(left, right, opr.image, left.line());}
break;
default:
jj_la1[32] = jj_gen;
{if (true) return left;}
}
throw new Error("Missing return statement in function");
}
static final public ASTExpression unaryMin() throws ParseException {
ASTExpression expr; ASTIntegerLiteral zero = new ASTIntegerLiteral(0, 0); Token t;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case MINUS:
jj_consume_token(MINUS);
expr = expression();
{if (true) return new ASTOperatorExpression(zero, expr, "-", expr.line());}
break;
case TRUE:
case FALSE:
case LEFT_PARENTHESIS:
case IDENTIFIER:
case INTEGER_LITERAL:
expr = expression();
{if (true) return expr;}
break;
default:
jj_la1[33] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
throw new Error("Missing return statement in function");
}
static final public ASTExpression expression() throws ParseException {
ASTExpression expr; ASTVariable var; Token name;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case TRUE:
case FALSE:
case INTEGER_LITERAL:
expr = constant();
{if (true) return expr;}
break;
case IDENTIFIER:
name = jj_consume_token(IDENTIFIER);
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case LEFT_PARENTHESIS:
expr = funcCallExp(name);
{if (true) return expr;}
break;
default:
jj_la1[34] = jj_gen;
var = expressionS(new ASTBaseVariable(name.image, name.beginLine));
{if (true) return new ASTVariableExpression(var, name.beginLine);}
}
break;
case LEFT_PARENTHESIS:
jj_consume_token(LEFT_PARENTHESIS);
expr = orExp();
jj_consume_token(RIGHT_PARENTHESIS);
{if (true) return expr;}
break;
default:
jj_la1[35] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
throw new Error("Missing return statement in function");
}
static final public ASTExpression constant() throws ParseException {
Token t;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case INTEGER_LITERAL:
t = jj_consume_token(INTEGER_LITERAL);
{if (true) return new ASTIntegerLiteral(Integer.parseInt(t.image), t.beginLine);}
break;
case TRUE:
t = jj_consume_token(TRUE);
{if (true) return new ASTBooleanLiteral(true, t.beginLine);}
break;
case FALSE:
t = jj_consume_token(FALSE);
{if (true) return new ASTBooleanLiteral(false, t.beginLine);}
break;
default:
jj_la1[36] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
throw new Error("Missing return statement in function");
}
static final public ASTVariable expressionS(ASTVariable var) throws ParseException {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case LEFT_SQUARE_BRACE:
var = arrayVar(var);
{if (true) return var;}
break;
case DOT:
var = classVar(var);
{if (true) return var;}
break;
default:
jj_la1[37] = jj_gen;
{if (true) return var;}
}
throw new Error("Missing return statement in function");
}
static final public ASTVariable arrayVar(ASTVariable var) throws ParseException {
ASTExpression expr;
jj_consume_token(LEFT_SQUARE_BRACE);
expr = orExp();
jj_consume_token(RIGHT_SQUARE_BRACE);
var = expressionS(new ASTArrayVariable(var, expr, var.line()));
{if (true) return var;}
throw new Error("Missing return statement in function");
}
static final public ASTVariable classVar(ASTVariable var) throws ParseException {
Token name;
jj_consume_token(DOT);
name = jj_consume_token(IDENTIFIER);
var = expressionS(new ASTClassVariable(var, name.image, name.beginLine));
{if (true) return var;}
throw new Error("Missing return statement in function");
}
static final public ASTFunctionCallExpression funcCallExp(Token name) throws ParseException {
ASTFunctionCallExpression fcExpr = new ASTFunctionCallExpression(name.image, name.beginLine);
jj_consume_token(LEFT_PARENTHESIS);
fcExpr = expListE(fcExpr);
jj_consume_token(RIGHT_PARENTHESIS);
{if (true) return fcExpr;}
throw new Error("Missing return statement in function");
}
static final public ASTFunctionCallExpression expListE(ASTFunctionCallExpression fcExpr) throws ParseException {
ASTExpression expr;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case TRUE:
case FALSE:
case LEFT_PARENTHESIS:
case MINUS:
case NOT:
case IDENTIFIER:
case INTEGER_LITERAL:
expr = orExp();
fcExpr.addElement(expr);
fcExpr = expListES(fcExpr);
{if (true) return fcExpr;}
break;
default:
jj_la1[38] = jj_gen;
{if (true) return fcExpr;}
}
throw new Error("Missing return statement in function");
}
static final public ASTFunctionCallExpression expListES(ASTFunctionCallExpression fcExpr) throws ParseException {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case COMMA:
jj_consume_token(COMMA);
fcExpr = expListE(fcExpr);
{if (true) return fcExpr;}
break;
default:
jj_la1[39] = jj_gen;
{if (true) return fcExpr;}
}
throw new Error("Missing return statement in function");
}
static private boolean jj_initialized_once = false;
/** Generated Token Manager. */
static public simplejavaTokenManager token_source;
static SimpleCharStream jj_input_stream;
/** Current token. */
static public Token token;
/** Next token. */
static public Token jj_nt;
static private int jj_ntk;
static private int jj_gen;
static final private int[] jj_la1 = new int[40];
static private int[] jj_la1_0;
static private int[] jj_la1_1;
static {
jj_la1_init_0();
jj_la1_init_1();
}
private static void jj_la1_init_0() {
jj_la1_0 = new int[] {0x1000,0x0,0x0,0x20000,0x10008000,0x0,0x8000000,0x10180380,0x10180380,0x802c00,0x20000000,0x0,0x10188380,0x40,0x20000000,0x24022000,0x802c00,0x8000000,0x20000000,0xa02c00,0xa02c00,0x0,0x22000,0x20000,0x0,0x0,0x802c00,0xc0000000,0xc0000000,0xc00000,0xc00000,0x3000000,0x3000000,0x802c00,0x2000,0x2c00,0xc00,0x4020000,0x802c00,0x8000000,};
}
private static void jj_la1_init_1() {
jj_la1_1 = new int[] {0x0,0x200,0x200,0x0,0x0,0x200,0x0,0x200,0x200,0x700,0x203,0x200,0x200,0x0,0x3,0x203,0x700,0x0,0x0,0x700,0x700,0x3,0x0,0x0,0x80,0x40,0x700,0x3c,0x3c,0x0,0x0,0x0,0x0,0x600,0x0,0x600,0x400,0x0,0x700,0x0,};
}
/** Constructor with InputStream. */
public simplejava(java.io.InputStream stream) {
this(stream, null);
}
/** Constructor with InputStream and supplied encoding */
public simplejava(java.io.InputStream stream, String encoding) {
if (jj_initialized_once) {
System.out.println("ERROR: Second call to constructor of static parser. ");
System.out.println(" You must either use ReInit() or set the JavaCC option STATIC to false");
System.out.println(" during parser generation.");
throw new Error();
}
jj_initialized_once = true;
try { jj_input_stream = new SimpleCharStream(stream, encoding, 1, 1); } catch(java.io.UnsupportedEncodingException e) { throw new RuntimeException(e); }