-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPA4.java
More file actions
1236 lines (1133 loc) · 32.4 KB
/
Copy pathPA4.java
File metadata and controls
1236 lines (1133 loc) · 32.4 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. PA4.java */
import syntaxtree.*;
import java.io.*;
public class PA4 implements PA4Constants {
/** Main entry point. */
public static void main(String args[]) {
try {
PA4 t = new PA4(new FileInputStream(args[0]));
Program n = t.Start();
/*
System.out.println("\n\nPretty Printing the Abstract Syntax Tree");
Visitor v1 = new AST_Visitor(); // pretty prints the Abstract Syntax Tree
n.accept(v1, 0);
*/
/* uncomment this only for PA4b
System.out.println("\n\nPretty Print the Program");
Visitor v2 = new PP_Visitor(); // pretty prints the MiniC program
String s = (String) n.accept(v2, 0);
//System.out.println("#include <stdio.h>\n#include <stdbool.h>\nvoid print(int n){printf(\"%10d\\n\",n);}");
System.out.println(s);
*/
/* uncomment this only for MiniC2Pascal translator
//System.out.println("\n\nPretty Print the Program");
Visitor v2 = new Pascal_Visitor(); // pretty prints the MiniC program
String s = (String) n.accept(v2, 0);
System.out.println("PROGRAM Demo;\n");
System.out.println(s);
System.out.println("BEGIN\n main(1);\nEND.");
*/
/* uncomment this only for PA4c and PA4d
System.out.println("\n\nGenerating Symbol Table");
SymbolTableVisitor v3 = new SymbolTableVisitor(); // generates a SymbolTable
SymbolTable st = v3.symbolTable;
n.accept(v3,"");
System.out.println(st);
*/
/* uncomment this only for PA4c and PA4d */
System.out.println("\n\nGenerating Symbol Table");
SymbolTableVisitorModified v3 = new SymbolTableVisitorModified(); // generates a SymbolTable
SymbolTableModified st = v3.symbolTable;
n.accept(v3,"");
System.out.println(st);
/* uncomment this only for PA4d */
System.out.println("\n\nType Checking");
TypeCheckingVisitor v4 = new TypeCheckingVisitor(st);
n.accept(v4,"");
System.out.println(v4.num_errors+" type errors found");
//System.out.println("\n\nDone!");
/* Only for C2Python_Visitor
System.out.println("\n\nPython Print the Program");
Visitor v2 = new C2Python_Visitor(); // pretty prints the MiniC program
String s = (String) n.accept(v2, 0);
System.out.println(s);
*/
} catch (Exception e) {
System.out.println("Oops.");
System.out.println(e.getMessage());
e.printStackTrace();
}
}
/* Program Syntax */
static final public Program Start() throws ParseException {
MainClass mc;
ClassDeclList cl;
mc = MainClass();
cl = ClassDecls();
jj_consume_token(0);
{if (true) return new Program(mc , cl);}
throw new Error("Missing return statement in function");
}
static final public MainClass MainClass() throws ParseException {
Statement s;
Token t;
jj_consume_token(CLASS);
t = jj_consume_token(ID);
jj_consume_token(LCURLY);
jj_consume_token(PUBLIC);
jj_consume_token(STATIC);
jj_consume_token(VOID);
jj_consume_token(MAIN);
jj_consume_token(LPAREN);
jj_consume_token(STRING);
jj_consume_token(LBRACKET);
jj_consume_token(RBRACKET);
jj_consume_token(ID);
jj_consume_token(RPAREN);
jj_consume_token(LCURLY);
s = Statement();
jj_consume_token(RCURLY);
jj_consume_token(RCURLY);
{if (true) return new MainClass(new Identifier(t.image), s);}
throw new Error("Missing return statement in function");
}
static final public ClassDeclList ClassDecls() throws ParseException {
ClassDeclList clist = null;
ClassDecl c;
label_1:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case CLASS:
;
break;
default:
jj_la1[0] = jj_gen;
break label_1;
}
c = ClassDecl();
clist = new ClassDeclList(c,clist);
}
{if (true) return clist;}
throw new Error("Missing return statement in function");
}
static final public ClassDecl ClassDecl() throws ParseException {
Token t;
VarDeclList vlist;
MethodDeclList mlist;
jj_consume_token(CLASS);
t = jj_consume_token(ID);
jj_consume_token(LCURLY);
vlist = VarDecls();
mlist = MethodDecls();
jj_consume_token(RCURLY);
{if (true) return new ClassDecl(new Identifier(t.image), vlist, mlist);}
throw new Error("Missing return statement in function");
}
static final public MethodDeclList MethodDecls() throws ParseException {
MethodDeclList mlist = null;
MethodDecl m;
label_2:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case PUBLIC:
;
break;
default:
jj_la1[1] = jj_gen;
break label_2;
}
m = MethodDecl();
mlist = new MethodDeclList(m,mlist);
}
{if (true) return mlist;}
throw new Error("Missing return statement in function");
}
static final public MethodDecl MethodDecl() throws ParseException {
Type ty;
Token t;
FormalList flist = null;
VarDeclList vlist;
StatementList slist;
Exp e;
jj_consume_token(PUBLIC);
ty = Type();
t = jj_consume_token(ID);
jj_consume_token(LPAREN);
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case INT:
case BOOLEAN:
case ID:
flist = FormalList();
break;
default:
jj_la1[2] = jj_gen;
;
}
jj_consume_token(RPAREN);
jj_consume_token(LCURLY);
vlist = VarDecls();
slist = Statements();
jj_consume_token(RETURN);
e = Exp();
jj_consume_token(SEMICOLON);
jj_consume_token(RCURLY);
{if (true) return new MethodDecl(ty,new Identifier(t.image),flist,vlist,slist,e);}
throw new Error("Missing return statement in function");
}
static final public VarDeclList VarDecls() throws ParseException {
VarDeclList vlist = null;
VarDecl v;
label_3:
while (true) {
if (jj_2_1(2)) {
;
} else {
break label_3;
}
v = VarDecl();
vlist = new VarDeclList(v,vlist);
}
{if (true) return(vlist);}
throw new Error("Missing return statement in function");
}
static final public VarDecl VarDecl() throws ParseException {
Type ty;
Token t;
ty = Type();
t = jj_consume_token(ID);
jj_consume_token(SEMICOLON);
{if (true) return(new VarDecl(ty,new Identifier(t.image)));}
throw new Error("Missing return statement in function");
}
static final public Type Type() throws ParseException {
Token t;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case BOOLEAN:
jj_consume_token(BOOLEAN);
{if (true) return new BooleanType();}
break;
default:
jj_la1[3] = jj_gen;
if (jj_2_2(2)) {
jj_consume_token(INT);
jj_consume_token(LBRACKET);
jj_consume_token(RBRACKET);
{if (true) return new IntArrayType();}
} else {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case INT:
jj_consume_token(INT);
{if (true) return new IntegerType();}
break;
case ID:
t = jj_consume_token(ID);
{if (true) return new IdentifierType(t.image);}
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 FormalList FormalList() throws ParseException {
FormalList flist=null;
Formal f1,f2;
f1 = Formal();
flist = new FormalList(f1,null);
label_4:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case COMMA:
;
break;
default:
jj_la1[5] = jj_gen;
break label_4;
}
jj_consume_token(COMMA);
f2 = Formal();
flist = new FormalList(f2,flist);
}
{if (true) return flist;}
throw new Error("Missing return statement in function");
}
static final public Formal Formal() throws ParseException {
Type ty;
Token t;
ty = Type();
t = jj_consume_token(ID);
{if (true) return new Formal(ty,new Identifier(t.image));}
throw new Error("Missing return statement in function");
}
static final public StatementList Statements() throws ParseException {
StatementList s_list = null;
Statement s;
label_5:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case IF:
case WHILE:
case PRINTLN:
case LCURLY:
case ID:
;
break;
default:
jj_la1[6] = jj_gen;
break label_5;
}
s = Statement();
s_list = new StatementList(s,s_list);
}
{if (true) return s_list;}
throw new Error("Missing return statement in function");
}
static final public Statement Statement() throws ParseException {
Token t;
StatementList s_list;
Exp e1,e2;
Statement s1,s2;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case LCURLY:
jj_consume_token(LCURLY);
s_list = Statements();
jj_consume_token(RCURLY);
{if (true) return(new Block(s_list));}
break;
case IF:
jj_consume_token(IF);
jj_consume_token(LPAREN);
e1 = Exp();
jj_consume_token(RPAREN);
s1 = Statement();
jj_consume_token(ELSE);
s2 = Statement();
{if (true) return(new If(e1,s1,s2));}
break;
case PRINTLN:
jj_consume_token(PRINTLN);
jj_consume_token(LPAREN);
e1 = Exp();
jj_consume_token(RPAREN);
jj_consume_token(SEMICOLON);
{if (true) return(new Print(e1));}
break;
default:
jj_la1[7] = jj_gen;
if (jj_2_3(2)) {
t = jj_consume_token(ID);
jj_consume_token(EQUALS);
e1 = Exp();
jj_consume_token(SEMICOLON);
{if (true) return(new Assign(new Identifier(t.image),e1));}
} else {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case WHILE:
jj_consume_token(WHILE);
jj_consume_token(LPAREN);
e1 = Exp();
jj_consume_token(RPAREN);
s1 = Statement();
{if (true) return(new While(e1, s1));}
break;
case ID:
t = jj_consume_token(ID);
jj_consume_token(LBRACKET);
e1 = Exp();
jj_consume_token(RBRACKET);
jj_consume_token(EQUALS);
e2 = Exp();
jj_consume_token(SEMICOLON);
{if (true) return (new ArrayAssign(new Identifier(t.image),e1,e2));}
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 Exp Exp() throws ParseException {
Exp a,b;
a = Exp4();
label_6:
while (true) {
if (jj_2_4(2)) {
;
} else {
break label_6;
}
jj_consume_token(AND);
b = Exp4();
a = new And(a,b);
}
{if (true) return(a);}
throw new Error("Missing return statement in function");
}
static final public Exp Exp4() throws ParseException {
Exp a,b;
a = Exp9();
label_7:
while (true) {
if (jj_2_5(2)) {
;
} else {
break label_7;
}
jj_consume_token(LT);
b = Exp9();
a = new LessThan(a,b);
}
{if (true) return(a);}
throw new Error("Missing return statement in function");
}
static final public Exp Exp9() throws ParseException {
Exp a,b;
a = Exp11();
label_8:
while (true) {
if (jj_2_6(2)) {
;
} else {
break label_8;
}
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case PLUS_OP:
jj_consume_token(PLUS_OP);
b = Exp11();
a = new Plus(a,b);
break;
case MINUS_OP:
jj_consume_token(MINUS_OP);
b = Exp11();
a = new Minus(a,b);
break;
default:
jj_la1[9] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
}
{if (true) return(a);}
throw new Error("Missing return statement in function");
}
static final public Exp Exp11() throws ParseException {
Exp a,b;
a = Exp12();
label_9:
while (true) {
if (jj_2_7(2)) {
;
} else {
break label_9;
}
jj_consume_token(TIMES_OP);
b = Exp12();
a = new Times(a,b);
}
{if (true) return(a);}
throw new Error("Missing return statement in function");
}
static final public Exp Exp12() throws ParseException {
Exp a,b;
ExpList c = null;
Token t;
a = Exp14();
label_10:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case DOT:
case LBRACKET:
;
break;
default:
jj_la1[10] = jj_gen;
break label_10;
}
if (jj_2_8(2)) {
jj_consume_token(DOT);
jj_consume_token(LENGTH);
a = new ArrayLength(a);
} else {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case DOT:
jj_consume_token(DOT);
t = jj_consume_token(ID);
jj_consume_token(LPAREN);
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case TRUE:
case FALSE:
case THIS:
case NEW:
case BANG:
case LPAREN:
case NUMBER:
case ID:
c = ExpList();
break;
default:
jj_la1[11] = jj_gen;
;
}
jj_consume_token(RPAREN);
a = new Call(a,new Identifier(t.image),c);
break;
case LBRACKET:
jj_consume_token(LBRACKET);
b = Exp();
jj_consume_token(RBRACKET);
a = new ArrayLookup(a,b);
break;
default:
jj_la1[12] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
}
}
{if (true) return(a);}
throw new Error("Missing return statement in function");
}
static final public Exp Exp14() throws ParseException {
Exp a,b;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case BANG:
jj_consume_token(BANG);
a = Exp16();
{if (true) return(new Not(a));}
break;
case TRUE:
case FALSE:
case THIS:
case NEW:
case LPAREN:
case NUMBER:
case ID:
a = Exp16();
{if (true) return(a);}
break;
default:
jj_la1[13] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
throw new Error("Missing return statement in function");
}
static final public Exp Exp16() throws ParseException {
Exp a;
Token t;
ExpList c;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case NUMBER:
t = jj_consume_token(NUMBER);
{if (true) return new IntegerLiteral(Integer.parseInt(t.image));}
break;
case TRUE:
jj_consume_token(TRUE);
{if (true) return new True();}
break;
case FALSE:
jj_consume_token(FALSE);
{if (true) return new False();}
break;
case LPAREN:
jj_consume_token(LPAREN);
a = Exp();
jj_consume_token(RPAREN);
{if (true) return(new ExpGroup(a));}
break;
case ID:
t = jj_consume_token(ID);
{if (true) return new IdentifierExp(t.image);}
break;
case THIS:
jj_consume_token(THIS);
{if (true) return new This();}
break;
default:
jj_la1[14] = jj_gen;
if (jj_2_9(2)) {
jj_consume_token(NEW);
jj_consume_token(INT);
jj_consume_token(LBRACKET);
a = Exp();
jj_consume_token(RBRACKET);
{if (true) return new NewArray(a);}
} else {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case NEW:
jj_consume_token(NEW);
t = jj_consume_token(ID);
jj_consume_token(LPAREN);
jj_consume_token(RPAREN);
{if (true) return new NewObject(new Identifier(t.image));}
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 ExpList ExpList() throws ParseException {
ExpList a;
Exp b;
b = Exp();
a = new ExpList(null,b);
label_11:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case COMMA:
;
break;
default:
jj_la1[16] = jj_gen;
break label_11;
}
jj_consume_token(COMMA);
b = Exp();
a=new ExpList(a,b);
}
{if (true) return a;}
throw new Error("Missing return statement in function");
}
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_3R_22() {
if (jj_scan_token(INT)) return true;
return false;
}
static private boolean jj_3R_32() {
if (jj_scan_token(THIS)) return true;
return false;
}
static private boolean jj_3R_17() {
if (jj_3R_20()) return true;
return false;
}
static private boolean jj_3_4() {
if (jj_scan_token(AND)) return true;
if (jj_3R_13()) return true;
return false;
}
static private boolean jj_3R_31() {
if (jj_scan_token(ID)) return true;
return false;
}
static private boolean jj_3R_30() {
if (jj_scan_token(LPAREN)) return true;
return false;
}
static private boolean jj_3_2() {
if (jj_scan_token(INT)) return true;
if (jj_scan_token(LBRACKET)) return true;
return false;
}
static private boolean jj_3R_29() {
if (jj_scan_token(FALSE)) return true;
return false;
}
static private boolean jj_3R_21() {
if (jj_scan_token(BOOLEAN)) return true;
return false;
}
static private boolean jj_3R_18() {
Token xsp;
xsp = jj_scanpos;
if (jj_3R_21()) {
jj_scanpos = xsp;
if (jj_3_2()) {
jj_scanpos = xsp;
if (jj_3R_22()) {
jj_scanpos = xsp;
if (jj_3R_23()) return true;
}
}
}
return false;
}
static private boolean jj_3R_28() {
if (jj_scan_token(TRUE)) return true;
return false;
}
static private boolean jj_3R_27() {
if (jj_scan_token(NUMBER)) return true;
return false;
}
static private boolean jj_3R_26() {
Token xsp;
xsp = jj_scanpos;
if (jj_3R_27()) {
jj_scanpos = xsp;
if (jj_3R_28()) {
jj_scanpos = xsp;
if (jj_3R_29()) {
jj_scanpos = xsp;
if (jj_3R_30()) {
jj_scanpos = xsp;
if (jj_3R_31()) {
jj_scanpos = xsp;
if (jj_3R_32()) {
jj_scanpos = xsp;
if (jj_3_9()) {
jj_scanpos = xsp;
if (jj_3R_33()) return true;
}
}
}
}
}
}
}
return false;
}
static private boolean jj_3_7() {
if (jj_scan_token(TIMES_OP)) return true;
if (jj_3R_17()) return true;
return false;
}
static private boolean jj_3R_19() {
if (jj_3R_17()) return true;
return false;
}
static private boolean jj_3R_16() {
if (jj_scan_token(MINUS_OP)) return true;
if (jj_3R_19()) return true;
return false;
}
static private boolean jj_3R_12() {
if (jj_3R_18()) return true;
if (jj_scan_token(ID)) return true;
return false;
}
static private boolean jj_3_3() {
if (jj_scan_token(ID)) return true;
if (jj_scan_token(EQUALS)) return true;
return false;
}
static private boolean jj_3R_15() {
if (jj_scan_token(PLUS_OP)) return true;
if (jj_3R_19()) return true;
return false;
}
static private boolean jj_3R_25() {
if (jj_3R_26()) return true;
return false;
}
static private boolean jj_3R_24() {
if (jj_scan_token(BANG)) return true;
return false;
}
static private boolean jj_3R_20() {
Token xsp;
xsp = jj_scanpos;
if (jj_3R_24()) {
jj_scanpos = xsp;
if (jj_3R_25()) return true;
}
return false;
}
static private boolean jj_3_6() {
Token xsp;
xsp = jj_scanpos;
if (jj_3R_15()) {
jj_scanpos = xsp;
if (jj_3R_16()) return true;
}
return false;
}
static private boolean jj_3R_14() {
if (jj_3R_19()) return true;
return false;
}
static private boolean jj_3_1() {
if (jj_3R_12()) return true;
return false;
}
static private boolean jj_3_5() {
if (jj_scan_token(LT)) return true;
if (jj_3R_14()) return true;
return false;
}
static private boolean jj_3R_13() {
if (jj_3R_14()) return true;
return false;
}
static private boolean jj_3R_33() {
if (jj_scan_token(NEW)) return true;
return false;
}
static private boolean jj_3R_23() {
if (jj_scan_token(ID)) return true;
return false;
}
static private boolean jj_3_8() {
if (jj_scan_token(DOT)) return true;
if (jj_scan_token(LENGTH)) return true;
return false;
}
static private boolean jj_3_9() {
if (jj_scan_token(NEW)) return true;
if (jj_scan_token(INT)) return true;
return false;
}
static private boolean jj_initialized_once = false;
/** Generated Token Manager. */
static public PA4TokenManager 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 Token jj_scanpos, jj_lastpos;
static private int jj_la;
/** Whether we are looking ahead. */
static private boolean jj_lookingAhead = false;
static private boolean jj_semLA;
static private int jj_gen;
static final private int[] jj_la1 = new int[17];
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[] {0x80,0x20,0x6000,0x4000,0x2000,0x10000000,0x1a0000,0x120000,0x80000,0x0,0x20000000,0x3418000,0x20000000,0x3418000,0x418000,0x1000000,0x10000000,};
}
private static void jj_la1_init_1() {
jj_la1_1 = new int[] {0x0,0x0,0x1000,0x0,0x1000,0x0,0x1040,0x40,0x1000,0x300,0x10,0x1804,0x10,0x1804,0x1804,0x0,0x0,};
}
static final private JJCalls[] jj_2_rtns = new JJCalls[9];
static private boolean jj_rescan = false;
static private int jj_gc = 0;
/** Constructor with InputStream. */
public PA4(java.io.InputStream stream) {
this(stream, null);
}
/** Constructor with InputStream and supplied encoding */
public PA4(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); }
token_source = new PA4TokenManager(jj_input_stream);
token = new Token();
jj_ntk = -1;
jj_gen = 0;
for (int i = 0; i < 17; i++) jj_la1[i] = -1;
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
}
/** Reinitialise. */
static public void ReInit(java.io.InputStream stream) {
ReInit(stream, null);
}
/** Reinitialise. */
static public void ReInit(java.io.InputStream stream, String encoding) {
try { jj_input_stream.ReInit(stream, encoding, 1, 1); } catch(java.io.UnsupportedEncodingException e) { throw new RuntimeException(e); }
token_source.ReInit(jj_input_stream);
token = new Token();
jj_ntk = -1;
jj_gen = 0;
for (int i = 0; i < 17; i++) jj_la1[i] = -1;
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
}
/** Constructor. */
public PA4(java.io.Reader stream) {
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;
jj_input_stream = new SimpleCharStream(stream, 1, 1);
token_source = new PA4TokenManager(jj_input_stream);
token = new Token();
jj_ntk = -1;
jj_gen = 0;
for (int i = 0; i < 17; i++) jj_la1[i] = -1;
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
}