-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMiniX10Parser.java
4363 lines (3930 loc) · 109 KB
/
MiniX10Parser.java
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. MiniX10Parser.java */
import syntaxtree.*;
import java.util.Vector;
public class MiniX10Parser implements MiniX10ParserConstants {
static final public File File() throws ParseException {
NodeListOptional n0 = new NodeListOptional();
TopLevelDeclaration n1;
NodeToken n2;
Token n3;
{
}
label_1:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case CLASS:
case PUBLIC:
;
break;
default:
jj_la1[0] = jj_gen;
break label_1;
}
n1 = TopLevelDeclaration();
n0.addNode(n1);
}
n0.nodes.trimToSize();
n3 = jj_consume_token(0);
n3.beginColumn++; n3.endColumn++;
n2 = JTBToolkit.makeNodeToken(n3);
{if (true) return new File(n0,n2);}
throw new Error("Missing return statement in function");
}
static final public TopLevelDeclaration TopLevelDeclaration() throws ParseException {
NodeChoice n0;
MainClass n1;
ClassDeclaration n2;
{
}
if (jj_2_1(12)) {
n1 = MainClass();
n0 = new NodeChoice(n1, 0);
} else if (jj_2_2(2)) {
n2 = ClassDeclaration();
n0 = new NodeChoice(n2, 1);
} else {
jj_consume_token(-1);
throw new ParseException();
}
{if (true) return new TopLevelDeclaration(n0);}
throw new Error("Missing return statement in function");
}
static final public MainClass MainClass() throws ParseException {
NodeToken n0;
Token n1;
NodeToken n2;
Token n3;
Identifier n4;
NodeToken n5;
Token n6;
NodeToken n7;
Token n8;
NodeToken n9;
Token n10;
NodeToken n11;
Token n12;
NodeToken n13;
Token n14;
NodeToken n15;
Token n16;
NodeToken n17;
Token n18;
NodeToken n19;
Token n20;
NodeToken n21;
Token n22;
Identifier n23;
NodeToken n24;
Token n25;
NodeToken n26;
Token n27;
Statement n28;
NodeToken n29;
Token n30;
NodeToken n31;
Token n32;
{
}
n1 = jj_consume_token(PUBLIC);
n0 = JTBToolkit.makeNodeToken(n1);
n3 = jj_consume_token(CLASS);
n2 = JTBToolkit.makeNodeToken(n3);
n4 = Identifier();
n6 = jj_consume_token(LBRACE);
n5 = JTBToolkit.makeNodeToken(n6);
n8 = jj_consume_token(PUBLIC);
n7 = JTBToolkit.makeNodeToken(n8);
n10 = jj_consume_token(STATIC);
n9 = JTBToolkit.makeNodeToken(n10);
n12 = jj_consume_token(VOID);
n11 = JTBToolkit.makeNodeToken(n12);
n14 = jj_consume_token(MAIN);
n13 = JTBToolkit.makeNodeToken(n14);
n16 = jj_consume_token(LPAREN);
n15 = JTBToolkit.makeNodeToken(n16);
n18 = jj_consume_token(STRING);
n17 = JTBToolkit.makeNodeToken(n18);
n20 = jj_consume_token(LSQPAREN);
n19 = JTBToolkit.makeNodeToken(n20);
n22 = jj_consume_token(RSQPAREN);
n21 = JTBToolkit.makeNodeToken(n22);
n23 = Identifier();
n25 = jj_consume_token(RPAREN);
n24 = JTBToolkit.makeNodeToken(n25);
n27 = jj_consume_token(LBRACE);
n26 = JTBToolkit.makeNodeToken(n27);
n28 = Statement();
n30 = jj_consume_token(RBRACE);
n29 = JTBToolkit.makeNodeToken(n30);
n32 = jj_consume_token(RBRACE);
n31 = JTBToolkit.makeNodeToken(n32);
{if (true) return new MainClass(n0,n2,n4,n5,n7,n9,n11,n13,n15,n17,n19,n21,n23,n24,n26,n28,n29,n31);}
throw new Error("Missing return statement in function");
}
static final public ClassDeclaration ClassDeclaration() throws ParseException {
NodeToken n0;
Token n1;
Identifier n2;
NodeToken n3;
Token n4;
NodeListOptional n5 = new NodeListOptional();
ClassMember n6;
NodeToken n7;
Token n8;
{
}
n1 = jj_consume_token(CLASS);
n0 = JTBToolkit.makeNodeToken(n1);
n2 = Identifier();
n4 = jj_consume_token(LBRACE);
n3 = JTBToolkit.makeNodeToken(n4);
label_2:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case PUBLIC:
;
break;
default:
jj_la1[1] = jj_gen;
break label_2;
}
n6 = ClassMember();
n5.addNode(n6);
}
n5.nodes.trimToSize();
n8 = jj_consume_token(RBRACE);
n7 = JTBToolkit.makeNodeToken(n8);
{if (true) return new ClassDeclaration(n0,n2,n3,n5,n7);}
throw new Error("Missing return statement in function");
}
static final public ClassMember ClassMember() throws ParseException {
NodeChoice n0;
MethodDeclaration n1;
ConstantDeclaration n2;
UpdatableFieldDeclaration n3;
{
}
if (jj_2_3(2147483647)) {
n1 = MethodDeclaration();
n0 = new NodeChoice(n1, 0);
} else if (jj_2_4(2)) {
n2 = ConstantDeclaration();
n0 = new NodeChoice(n2, 1);
} else {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case PUBLIC:
n3 = UpdatableFieldDeclaration();
n0 = new NodeChoice(n3, 2);
break;
default:
jj_la1[2] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
}
{if (true) return new ClassMember(n0);}
throw new Error("Missing return statement in function");
}
static final public ConstantDeclaration ConstantDeclaration() throws ParseException {
NodeToken n0;
Token n1;
NodeToken n2;
Token n3;
NodeToken n4;
Token n5;
Type n6;
Identifier n7;
NodeToken n8;
Token n9;
Expression n10;
NodeToken n11;
Token n12;
{
}
n1 = jj_consume_token(PUBLIC);
n0 = JTBToolkit.makeNodeToken(n1);
n3 = jj_consume_token(STATIC);
n2 = JTBToolkit.makeNodeToken(n3);
n5 = jj_consume_token(FINAL);
n4 = JTBToolkit.makeNodeToken(n5);
n6 = Type();
n7 = Identifier();
n9 = jj_consume_token(ASSIGN);
n8 = JTBToolkit.makeNodeToken(n9);
n10 = Expression();
n12 = jj_consume_token(SEMICOLON);
n11 = JTBToolkit.makeNodeToken(n12);
{if (true) return new ConstantDeclaration(n0,n2,n4,n6,n7,n8,n10,n11);}
throw new Error("Missing return statement in function");
}
static final public UpdatableFieldDeclaration UpdatableFieldDeclaration() throws ParseException {
NodeToken n0;
Token n1;
Type n2;
Identifier n3;
NodeToken n4;
Token n5;
{
}
n1 = jj_consume_token(PUBLIC);
n0 = JTBToolkit.makeNodeToken(n1);
n2 = Type();
n3 = Identifier();
n5 = jj_consume_token(SEMICOLON);
n4 = JTBToolkit.makeNodeToken(n5);
{if (true) return new UpdatableFieldDeclaration(n0,n2,n3,n4);}
throw new Error("Missing return statement in function");
}
static final public MethodDeclaration MethodDeclaration() throws ParseException {
NodeToken n0;
Token n1;
ReturnType n2;
Identifier n3;
NodeToken n4;
Token n5;
NodeOptional n6 = new NodeOptional();
FormalParameterList n7;
NodeToken n8;
Token n9;
Block n10;
{
}
n1 = jj_consume_token(PUBLIC);
n0 = JTBToolkit.makeNodeToken(n1);
n2 = ReturnType();
n3 = Identifier();
n5 = jj_consume_token(LPAREN);
n4 = JTBToolkit.makeNodeToken(n5);
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case FINAL:
case BOOLEAN:
case INTEGER:
case STRING:
case DOUBLE:
case REGION:
case DIST:
case PLACE:
case POINT:
case IDENTIFIER:
n7 = FormalParameterList();
n6.addNode(n7);
break;
default:
jj_la1[3] = jj_gen;
;
}
n9 = jj_consume_token(RPAREN);
n8 = JTBToolkit.makeNodeToken(n9);
n10 = Block();
{if (true) return new MethodDeclaration(n0,n2,n3,n4,n6,n8,n10);}
throw new Error("Missing return statement in function");
}
static final public FormalParameterList FormalParameterList() throws ParseException {
FormalParameter n0;
NodeListOptional n1 = new NodeListOptional();
FormalParameterRest n2;
{
}
n0 = FormalParameter();
label_3:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case 124:
;
break;
default:
jj_la1[4] = jj_gen;
break label_3;
}
n2 = FormalParameterRest();
n1.addNode(n2);
}
n1.nodes.trimToSize();
{if (true) return new FormalParameterList(n0,n1);}
throw new Error("Missing return statement in function");
}
static final public FormalParameter FormalParameter() throws ParseException {
NodeChoice n0;
FinalFormalParameter n1;
UpdatableFormalParameter n2;
{
}
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case FINAL:
n1 = FinalFormalParameter();
n0 = new NodeChoice(n1, 0);
break;
case BOOLEAN:
case INTEGER:
case STRING:
case DOUBLE:
case REGION:
case DIST:
case PLACE:
case POINT:
case IDENTIFIER:
n2 = UpdatableFormalParameter();
n0 = new NodeChoice(n2, 1);
break;
default:
jj_la1[5] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
{if (true) return new FormalParameter(n0);}
throw new Error("Missing return statement in function");
}
static final public FinalFormalParameter FinalFormalParameter() throws ParseException {
NodeToken n0;
Token n1;
Type n2;
Identifier n3;
{
}
n1 = jj_consume_token(FINAL);
n0 = JTBToolkit.makeNodeToken(n1);
n2 = Type();
n3 = Identifier();
{if (true) return new FinalFormalParameter(n0,n2,n3);}
throw new Error("Missing return statement in function");
}
static final public UpdatableFormalParameter UpdatableFormalParameter() throws ParseException {
Type n0;
Identifier n1;
{
}
n0 = Type();
n1 = Identifier();
{if (true) return new UpdatableFormalParameter(n0,n1);}
throw new Error("Missing return statement in function");
}
static final public FormalParameterRest FormalParameterRest() throws ParseException {
NodeToken n0;
Token n1;
FormalParameter n2;
{
}
n1 = jj_consume_token(124);
n0 = JTBToolkit.makeNodeToken(n1);
n2 = FormalParameter();
{if (true) return new FormalParameterRest(n0,n2);}
throw new Error("Missing return statement in function");
}
static final public ReturnType ReturnType() throws ParseException {
NodeChoice n0;
VoidType n1;
Type n2;
{
}
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case VOID:
n1 = VoidType();
n0 = new NodeChoice(n1, 0);
break;
case BOOLEAN:
case INTEGER:
case STRING:
case DOUBLE:
case REGION:
case DIST:
case PLACE:
case POINT:
case IDENTIFIER:
n2 = Type();
n0 = new NodeChoice(n2, 1);
break;
default:
jj_la1[6] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
{if (true) return new ReturnType(n0);}
throw new Error("Missing return statement in function");
}
static final public VoidType VoidType() throws ParseException {
NodeToken n0;
Token n1;
{
}
n1 = jj_consume_token(VOID);
n0 = JTBToolkit.makeNodeToken(n1);
{if (true) return new VoidType(n0);}
throw new Error("Missing return statement in function");
}
static final public Type Type() throws ParseException {
NodeChoice n0;
UpdatableArrayType n1;
NonArrayType n2;
{
}
if (jj_2_5(2147483647)) {
n1 = UpdatableArrayType();
n0 = new NodeChoice(n1, 0);
} else {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case BOOLEAN:
case INTEGER:
case STRING:
case DOUBLE:
case REGION:
case DIST:
case PLACE:
case POINT:
case IDENTIFIER:
n2 = NonArrayType();
n0 = new NodeChoice(n2, 1);
break;
default:
jj_la1[7] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
}
{if (true) return new Type(n0);}
throw new Error("Missing return statement in function");
}
static final public UpdatableArrayType UpdatableArrayType() throws ParseException {
NonArrayType n0;
NodeToken n1;
Token n2;
NodeToken n3;
Token n4;
RankEquation n5;
NodeToken n6;
Token n7;
{
}
n0 = NonArrayType();
n2 = jj_consume_token(LSQPAREN);
n1 = JTBToolkit.makeNodeToken(n2);
n4 = jj_consume_token(125);
n3 = JTBToolkit.makeNodeToken(n4);
n5 = RankEquation();
n7 = jj_consume_token(RSQPAREN);
n6 = JTBToolkit.makeNodeToken(n7);
{if (true) return new UpdatableArrayType(n0,n1,n3,n5,n6);}
throw new Error("Missing return statement in function");
}
static final public RankEquation RankEquation() throws ParseException {
NodeToken n0;
Token n1;
NodeToken n2;
Token n3;
IntegerLiteral n4;
{
}
n1 = jj_consume_token(RANK);
n0 = JTBToolkit.makeNodeToken(n1);
n3 = jj_consume_token(126);
n2 = JTBToolkit.makeNodeToken(n3);
n4 = IntegerLiteral();
{if (true) return new RankEquation(n0,n2,n4);}
throw new Error("Missing return statement in function");
}
static final public NonArrayType NonArrayType() throws ParseException {
NodeChoice n0;
BooleanType n1;
IntegerType n2;
DoubleType n3;
StringType n4;
PlaceType n5;
DistType n6;
RegionType n7;
PointType n8;
ClassNameType n9;
{
}
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case BOOLEAN:
n1 = BooleanType();
n0 = new NodeChoice(n1, 0);
break;
case INTEGER:
n2 = IntegerType();
n0 = new NodeChoice(n2, 1);
break;
case DOUBLE:
n3 = DoubleType();
n0 = new NodeChoice(n3, 2);
break;
case STRING:
n4 = StringType();
n0 = new NodeChoice(n4, 3);
break;
case PLACE:
n5 = PlaceType();
n0 = new NodeChoice(n5, 4);
break;
case DIST:
n6 = DistType();
n0 = new NodeChoice(n6, 5);
break;
case REGION:
n7 = RegionType();
n0 = new NodeChoice(n7, 6);
break;
case POINT:
n8 = PointType();
n0 = new NodeChoice(n8, 7);
break;
case IDENTIFIER:
n9 = ClassNameType();
n0 = new NodeChoice(n9, 8);
break;
default:
jj_la1[8] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
{if (true) return new NonArrayType(n0);}
throw new Error("Missing return statement in function");
}
static final public BooleanType BooleanType() throws ParseException {
NodeToken n0;
Token n1;
{
}
n1 = jj_consume_token(BOOLEAN);
n0 = JTBToolkit.makeNodeToken(n1);
{if (true) return new BooleanType(n0);}
throw new Error("Missing return statement in function");
}
static final public IntegerType IntegerType() throws ParseException {
NodeToken n0;
Token n1;
{
}
n1 = jj_consume_token(INTEGER);
n0 = JTBToolkit.makeNodeToken(n1);
{if (true) return new IntegerType(n0);}
throw new Error("Missing return statement in function");
}
static final public DoubleType DoubleType() throws ParseException {
NodeToken n0;
Token n1;
{
}
n1 = jj_consume_token(DOUBLE);
n0 = JTBToolkit.makeNodeToken(n1);
{if (true) return new DoubleType(n0);}
throw new Error("Missing return statement in function");
}
static final public StringType StringType() throws ParseException {
NodeToken n0;
Token n1;
{
}
n1 = jj_consume_token(STRING);
n0 = JTBToolkit.makeNodeToken(n1);
{if (true) return new StringType(n0);}
throw new Error("Missing return statement in function");
}
static final public PlaceType PlaceType() throws ParseException {
NodeToken n0;
Token n1;
{
}
n1 = jj_consume_token(PLACE);
n0 = JTBToolkit.makeNodeToken(n1);
{if (true) return new PlaceType(n0);}
throw new Error("Missing return statement in function");
}
static final public DistType DistType() throws ParseException {
NodeToken n0;
Token n1;
NodeToken n2;
Token n3;
NodeToken n4;
Token n5;
RankEquation n6;
NodeToken n7;
Token n8;
{
}
n1 = jj_consume_token(DIST);
n0 = JTBToolkit.makeNodeToken(n1);
n3 = jj_consume_token(LPAREN);
n2 = JTBToolkit.makeNodeToken(n3);
n5 = jj_consume_token(125);
n4 = JTBToolkit.makeNodeToken(n5);
n6 = RankEquation();
n8 = jj_consume_token(RPAREN);
n7 = JTBToolkit.makeNodeToken(n8);
{if (true) return new DistType(n0,n2,n4,n6,n7);}
throw new Error("Missing return statement in function");
}
static final public RegionType RegionType() throws ParseException {
NodeToken n0;
Token n1;
NodeToken n2;
Token n3;
NodeToken n4;
Token n5;
RankEquation n6;
NodeToken n7;
Token n8;
{
}
n1 = jj_consume_token(REGION);
n0 = JTBToolkit.makeNodeToken(n1);
n3 = jj_consume_token(LPAREN);
n2 = JTBToolkit.makeNodeToken(n3);
n5 = jj_consume_token(125);
n4 = JTBToolkit.makeNodeToken(n5);
n6 = RankEquation();
n8 = jj_consume_token(RPAREN);
n7 = JTBToolkit.makeNodeToken(n8);
{if (true) return new RegionType(n0,n2,n4,n6,n7);}
throw new Error("Missing return statement in function");
}
static final public PointType PointType() throws ParseException {
NodeToken n0;
Token n1;
NodeToken n2;
Token n3;
NodeToken n4;
Token n5;
RankEquation n6;
NodeToken n7;
Token n8;
{
}
n1 = jj_consume_token(POINT);
n0 = JTBToolkit.makeNodeToken(n1);
n3 = jj_consume_token(LPAREN);
n2 = JTBToolkit.makeNodeToken(n3);
n5 = jj_consume_token(125);
n4 = JTBToolkit.makeNodeToken(n5);
n6 = RankEquation();
n8 = jj_consume_token(RPAREN);
n7 = JTBToolkit.makeNodeToken(n8);
{if (true) return new PointType(n0,n2,n4,n6,n7);}
throw new Error("Missing return statement in function");
}
static final public ClassNameType ClassNameType() throws ParseException {
Identifier n0;
{
}
n0 = Identifier();
{if (true) return new ClassNameType(n0);}
throw new Error("Missing return statement in function");
}
static final public Identifier Identifier() throws ParseException {
NodeToken n0;
Token n1;
{
}
n1 = jj_consume_token(IDENTIFIER);
n0 = JTBToolkit.makeNodeToken(n1);
{if (true) return new Identifier(n0);}
throw new Error("Missing return statement in function");
}
static final public Statement Statement() throws ParseException {
NodeChoice n0;
Assignment n1;
AsyncStatement n2;
Block n3;
FinishStatement n4;
IfStatement n5;
LoopStatement n6;
PostfixStatement n7;
PrintlnStatement n8;
ReturnStatement n9;
ThrowStatement n10;
WhileStatement n11;
{
}
if (jj_2_6(2147483647)) {
n1 = Assignment();
n0 = new NodeChoice(n1, 0);
} else {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case ASYNC:
n2 = AsyncStatement();
n0 = new NodeChoice(n2, 1);
break;
case LBRACE:
n3 = Block();
n0 = new NodeChoice(n3, 2);
break;
case FINISH:
n4 = FinishStatement();
n0 = new NodeChoice(n4, 3);
break;
case IF:
n5 = IfStatement();
n0 = new NodeChoice(n5, 4);
break;
case FOR:
n6 = LoopStatement();
n0 = new NodeChoice(n6, 5);
break;
case LPAREN:
case LSQPAREN:
case MINUS:
case NEW:
case THIS:
case FACTORYBlock:
case MATH:
case HERE:
case DISTUNIQUE:
case INTEGER_LITERAL:
case FLOATING_POINT_LITERAL:
case STRING_LITERAL:
case IDENTIFIER:
n7 = PostfixStatement();
n0 = new NodeChoice(n7, 6);
break;
case PRINTLN:
n8 = PrintlnStatement();
n0 = new NodeChoice(n8, 7);
break;
case RETURN:
n9 = ReturnStatement();
n0 = new NodeChoice(n9, 8);
break;
case THROW:
n10 = ThrowStatement();
n0 = new NodeChoice(n10, 9);
break;
case WHILE:
n11 = WhileStatement();
n0 = new NodeChoice(n11, 10);
break;
default:
jj_la1[9] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
}
{if (true) return new Statement(n0);}
throw new Error("Missing return statement in function");
}
static final public Assignment Assignment() throws ParseException {
Expression n0;
NodeToken n1;
Token n2;
Expression n3;
NodeToken n4;
Token n5;
{
}
n0 = Expression();
n2 = jj_consume_token(ASSIGN);
n1 = JTBToolkit.makeNodeToken(n2);
n3 = Expression();
n5 = jj_consume_token(SEMICOLON);
n4 = JTBToolkit.makeNodeToken(n5);
{if (true) return new Assignment(n0,n1,n3,n4);}
throw new Error("Missing return statement in function");
}
static final public AsyncStatement AsyncStatement() throws ParseException {
NodeToken n0;
Token n1;
NodeToken n2;
Token n3;
Expression n4;
NodeToken n5;
Token n6;
Block n7;
{
}
n1 = jj_consume_token(ASYNC);
n0 = JTBToolkit.makeNodeToken(n1);
n3 = jj_consume_token(LPAREN);
n2 = JTBToolkit.makeNodeToken(n3);
n4 = Expression();
n6 = jj_consume_token(RPAREN);
n5 = JTBToolkit.makeNodeToken(n6);
n7 = Block();
{if (true) return new AsyncStatement(n0,n2,n4,n5,n7);}
throw new Error("Missing return statement in function");
}
static final public Block Block() throws ParseException {
NodeToken n0;
Token n1;
NodeListOptional n2 = new NodeListOptional();
BlockStatement n3;
NodeToken n4;
Token n5;
{
}
n1 = jj_consume_token(LBRACE);
n0 = JTBToolkit.makeNodeToken(n1);
label_4:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case LPAREN:
case LSQPAREN:
case LBRACE:
case MINUS:
case FINAL:
case IF:
case WHILE:
case BOOLEAN:
case INTEGER:
case NEW:
case RETURN:
case STRING:
case THIS:
case PRINTLN:
case FACTORYBlock:
case THROW:
case DOUBLE:
case REGION:
case DIST:
case FINISH:
case MATH:
case PLACE:
case POINT:
case FOR:
case HERE:
case DISTUNIQUE:
case ASYNC:
case INTEGER_LITERAL:
case FLOATING_POINT_LITERAL:
case STRING_LITERAL:
case IDENTIFIER:
;
break;
default:
jj_la1[10] = jj_gen;
break label_4;
}
n3 = BlockStatement();
n2.addNode(n3);
}
n2.nodes.trimToSize();
n5 = jj_consume_token(RBRACE);
n4 = JTBToolkit.makeNodeToken(n5);
{if (true) return new Block(n0,n2,n4);}
throw new Error("Missing return statement in function");
}
static final public BlockStatement BlockStatement() throws ParseException {
NodeChoice n0;
FinalVariableDeclaration n1;
UpdatableVariableDeclaration n2;
Statement n3;
{
}
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case FINAL:
n1 = FinalVariableDeclaration();
n0 = new NodeChoice(n1, 0);
break;
default:
jj_la1[11] = jj_gen;
if (jj_2_7(2147483647)) {
n2 = UpdatableVariableDeclaration();
n0 = new NodeChoice(n2, 1);
} else {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case LPAREN:
case LSQPAREN:
case LBRACE:
case MINUS:
case IF:
case WHILE:
case NEW:
case RETURN:
case THIS:
case PRINTLN:
case FACTORYBlock:
case THROW:
case FINISH:
case MATH:
case FOR:
case HERE:
case DISTUNIQUE:
case ASYNC:
case INTEGER_LITERAL:
case FLOATING_POINT_LITERAL:
case STRING_LITERAL:
case IDENTIFIER:
n3 = Statement();
n0 = new NodeChoice(n3, 2);
break;
default:
jj_la1[12] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
}
}
{if (true) return new BlockStatement(n0);}
throw new Error("Missing return statement in function");
}
static final public FinalVariableDeclaration FinalVariableDeclaration() throws ParseException {
NodeToken n0;
Token n1;
Type n2;
Identifier n3;
NodeToken n4;
Token n5;
Expression n6;
NodeToken n7;
Token n8;
{
}