-
Notifications
You must be signed in to change notification settings - Fork 0
/
MiniScheme5.java
1373 lines (1272 loc) · 32.9 KB
/
MiniScheme5.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
/* MiniScheme5.java */
/* Generated By:JavaCC: Do not edit this line. MiniScheme5.java */
import java.util.Scanner;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
public class MiniScheme5 implements MiniScheme5Constants {
public static Scanner in;
public static void main(String args[]) throws ParseException
{
try {
MiniScheme5 parser = null;
in = new Scanner(System.in);
if (args.length > 0)
parser = new MiniScheme5(new FileInputStream(args[0]));
else
{
System.out.print("Program filename: ");
parser = new MiniScheme5(new FileInputStream(in.nextLine()));
}
Program p = parser.program();
p.eval(new Env());
//p.print();
}
catch (FileNotFoundException e)
{
System.out.println(e.getMessage());
}
catch (RuntimeException e)
{
System.out.println(e.getMessage());
e.printStackTrace();
}
}
static final public Program program() throws ParseException {Program p = new Program(); Exp e = null; Definition d = null;
label_1:
while (true) {
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case INTEGER:
case BOOLEAN:
case IDENTIFIER:
case 37:{
;
break;
}
default:
jj_la1[0] = jj_gen;
break label_1;
}
if (jj_2_1(2147483647)) {
d = def();
p.lineList.add(d);
} else {
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case INTEGER:
case BOOLEAN:
case IDENTIFIER:
case 37:{
e = exp();
p.lineList.add(e);
break;
}
default:
jj_la1[1] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
}
}
{if ("" != null) return p;}
throw new Error("Missing return statement in function");
}
static final public Definition def() throws ParseException {Definition d = null; Variable var = null; Exp e = null;
jj_consume_token(37);
jj_consume_token(DEFINE);
var = variable();
e = exp();
jj_consume_token(38);
d = new Definition(var, e);
{if ("" != null) return d;}
throw new Error("Missing return statement in function");
}
static final public Exp exp() throws ParseException {Exp e = null;
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case IDENTIFIER:{
e = variable();
break;
}
case INTEGER:
case BOOLEAN:{
e = literal();
break;
}
case 37:{
jj_consume_token(37);
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case IF:{
e = cond();
break;
}
case SET:{
e = assign();
break;
}
case PLUS:
case MINUS:
case MULTIPLY:
case QUOTIENT:
case READ:
case WRITE:
case NEWLINE:
case LET:
case AND:
case OR:
case NOT:
case EQV_CHECK:
case LESS_THAN:
case INT_CHECK:
case BOOL_CHECK:
case PAIR_CHECK:
case CONS_PAIR:
case CONS_LIST:
case NULL_CHECK:
case CAR:
case CDR:
case SET_CAR:{
e = derivedExpression();
break;
}
case LAMBDA:{
e = lambdaExp();
break;
}
case INTEGER:
case BOOLEAN:
case IDENTIFIER:
case 37:{
e = procCall();
break;
}
default:
jj_la1[2] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
jj_consume_token(38);
break;
}
default:
jj_la1[3] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
{if ("" != null) return e;}
throw new Error("Missing return statement in function");
}
static final public Variable variable() throws ParseException {Variable var = null; String id = null;
jj_consume_token(IDENTIFIER);
id = token.image; var = new Variable(id);
{if ("" != null) return var;}
throw new Error("Missing return statement in function");
}
static final public Literal literal() throws ParseException {Literal l = null; String s = null;
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case INTEGER:{
jj_consume_token(INTEGER);
s = token.image; l = new Int(s);
break;
}
case BOOLEAN:{
jj_consume_token(BOOLEAN);
s = token.image; l = new Bool(s);
break;
}
default:
jj_la1[4] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
{if ("" != null) return l;}
throw new Error("Missing return statement in function");
}
static final public Cond cond() throws ParseException {Cond c = null; Exp e1 = null; Exp e2 = null; Exp e3 = null;
jj_consume_token(IF);
e1 = exp();
e2 = exp();
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case INTEGER:
case BOOLEAN:
case IDENTIFIER:
case 37:{
e3 = exp();
break;
}
default:
jj_la1[5] = jj_gen;
;
}
c = new Cond(e1, e2, e3); {if ("" != null) return c;}
throw new Error("Missing return statement in function");
}
static final public Assignment assign() throws ParseException {Assignment a = null; Variable var = null; Exp e = null;
jj_consume_token(SET);
var = variable();
e = exp();
a = new Assignment(var, e);
{if ("" != null) return a;}
throw new Error("Missing return statement in function");
}
static final public Exp derivedExpression() throws ParseException {Token t = null; Exp e1 = null; Exp e2 = null;
WriteExpression we = null; ArithExp ae = null;
ReadExpression re = null; NewlineExpression nl = null;
LetExp le = null; BindSpec bi = null; Body bod = null;
AndExp andE = null; OrExp orE = null; List lst = null;
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case READ:{
jj_consume_token(READ);
re = new ReadExpression(in); e1 = re;
break;
}
case WRITE:{
jj_consume_token(WRITE);
e1 = exp();
we = new WriteExpression(e1); e1 = we;
break;
}
case NEWLINE:{
jj_consume_token(NEWLINE);
nl = new NewlineExpression(); e1 = nl;
break;
}
case PLUS:
case MINUS:
case MULTIPLY:
case QUOTIENT:{
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case PLUS:{
jj_consume_token(PLUS);
break;
}
case MINUS:{
jj_consume_token(MINUS);
break;
}
case MULTIPLY:{
jj_consume_token(MULTIPLY);
break;
}
case QUOTIENT:{
jj_consume_token(QUOTIENT);
break;
}
default:
jj_la1[6] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
t = token;
e1 = exp();
e2 = exp();
ae = new ArithExp(t.image, e1, e2); e1 = ae;
break;
}
case LET:{
jj_consume_token(LET);
le = new LetExp();
jj_consume_token(37);
label_2:
while (true) {
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case 37:{
;
break;
}
default:
jj_la1[7] = jj_gen;
break label_2;
}
bi = bindSpec();
le.binds.add(bi);
}
jj_consume_token(38);
bod = body();
le.body = bod; e1=le;
break;
}
case AND:{
jj_consume_token(AND);
andE = new AndExp();
label_3:
while (true) {
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case INTEGER:
case BOOLEAN:
case IDENTIFIER:
case 37:{
;
break;
}
default:
jj_la1[8] = jj_gen;
break label_3;
}
e1 = exp();
andE.expList.add(e1);
}
e1 = andE;
break;
}
case OR:{
jj_consume_token(OR);
orE = new OrExp();
label_4:
while (true) {
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case INTEGER:
case BOOLEAN:
case IDENTIFIER:
case 37:{
;
break;
}
default:
jj_la1[9] = jj_gen;
break label_4;
}
e1 = exp();
orE.expList.add(e1);
}
e1 = orE;
break;
}
case NOT:{
jj_consume_token(NOT);
e1 = exp();
e1 = new NotExp(e1);
break;
}
case EQV_CHECK:{
jj_consume_token(EQV_CHECK);
e1 = exp();
e2 = exp();
e1 = new EqvExp(e1, e2);
break;
}
case LESS_THAN:{
jj_consume_token(LESS_THAN);
e1 = exp();
e2 = exp();
e1 = new LessExp(e1, e2);
break;
}
case INT_CHECK:{
jj_consume_token(INT_CHECK);
e1 = exp();
e1 = new IntCheckExp(e1);
break;
}
case BOOL_CHECK:{
jj_consume_token(BOOL_CHECK);
e1 = exp();
e1 = new BoolCheckExp(e1);
break;
}
case PAIR_CHECK:{
jj_consume_token(PAIR_CHECK);
e1 = exp();
e1 = new PairCheckExp(e1);
break;
}
case CONS_PAIR:{
jj_consume_token(CONS_PAIR);
e1 = exp();
e2 = exp();
e1 = new Pair(e1, e2);
break;
}
case CONS_LIST:{
jj_consume_token(CONS_LIST);
lst = new List();
label_5:
while (true) {
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case INTEGER:
case BOOLEAN:
case IDENTIFIER:
case 37:{
;
break;
}
default:
jj_la1[10] = jj_gen;
break label_5;
}
e1 = exp();
lst.addList(e1);
}
e1=lst;
break;
}
case NULL_CHECK:{
jj_consume_token(NULL_CHECK);
e1 = exp();
e1 = new NullCheckExp(e1);
break;
}
case CAR:{
jj_consume_token(CAR);
e1 = exp();
e1 = new CarExp(e1);
break;
}
case CDR:{
jj_consume_token(CDR);
e1 = exp();
e1 = new CdrExp(e1);
break;
}
case SET_CAR:{
jj_consume_token(SET_CAR);
e1 = exp();
e2 = exp();
e1 = new SetCarExp(e1, e2);
break;
}
default:
jj_la1[11] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
{if ("" != null) return e1;}
throw new Error("Missing return statement in function");
}
static final public BindSpec bindSpec() throws ParseException {Variable var = null; Exp e = null;
jj_consume_token(37);
var = variable();
e = exp();
jj_consume_token(38);
{if ("" != null) return new BindSpec(var, e);}
throw new Error("Missing return statement in function");
}
static final public Body body() throws ParseException {Body bod = new Body(); Definition def = null; Exp exp = null;
label_6:
while (true) {
if (jj_2_2(2147483647)) {
;
} else {
break label_6;
}
def = def();
bod.lines.add(def);
}
label_7:
while (true) {
exp = exp();
bod.lines.add(exp);
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case INTEGER:
case BOOLEAN:
case IDENTIFIER:
case 37:{
;
break;
}
default:
jj_la1[12] = jj_gen;
break label_7;
}
}
{if ("" != null) return bod;}
throw new Error("Missing return statement in function");
}
static final public LambdaExp lambdaExp() throws ParseException {LambdaExp l = new LambdaExp(); Variable v = null; Body b = null;
jj_consume_token(LAMBDA);
jj_consume_token(37);
label_8:
while (true) {
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case IDENTIFIER:{
;
break;
}
default:
jj_la1[13] = jj_gen;
break label_8;
}
v = variable();
l.varList.add(v);
}
jj_consume_token(38);
b = body();
l.body = b;
{if ("" != null) return l;}
throw new Error("Missing return statement in function");
}
static final public ProcCall procCall() throws ParseException {ProcCall p = new ProcCall(); Exp e = null;
label_9:
while (true) {
e = exp();
p.expList.add(e);
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case INTEGER:
case BOOLEAN:
case IDENTIFIER:
case 37:{
;
break;
}
default:
jj_la1[14] = jj_gen;
break label_9;
}
}
{if ("" != null) return p;}
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_3R_derivedExpression_184_5_41()
{
if (jj_scan_token(BOOL_CHECK)) return true;
if (jj_3R_exp_126_9_12()) return true;
return false;
}
static private boolean jj_3R_derivedExpression_183_5_40()
{
if (jj_scan_token(INT_CHECK)) return true;
if (jj_3R_exp_126_9_12()) return true;
return false;
}
static private boolean jj_3R_derivedExpression_182_5_39()
{
if (jj_scan_token(LESS_THAN)) return true;
if (jj_3R_exp_126_9_12()) return true;
if (jj_3R_exp_126_9_12()) return true;
return false;
}
static private boolean jj_3R_derivedExpression_181_5_38()
{
if (jj_scan_token(EQV_CHECK)) return true;
if (jj_3R_exp_126_9_12()) return true;
if (jj_3R_exp_126_9_12()) return true;
return false;
}
static private boolean jj_3R_derivedExpression_180_5_37()
{
if (jj_scan_token(NOT)) return true;
if (jj_3R_exp_126_9_12()) return true;
return false;
}
static private boolean jj_3R_derivedExpression_179_5_36()
{
if (jj_scan_token(OR)) return true;
Token xsp;
while (true) {
xsp = jj_scanpos;
if (jj_3R_derivedExpression_179_37_54()) { jj_scanpos = xsp; break; }
}
return false;
}
static private boolean jj_3R_cond_154_29_29()
{
if (jj_3R_exp_126_9_12()) return true;
return false;
}
static private boolean jj_3R_derivedExpression_178_5_35()
{
if (jj_scan_token(AND)) return true;
Token xsp;
while (true) {
xsp = jj_scanpos;
if (jj_3R_derivedExpression_178_40_53()) { jj_scanpos = xsp; break; }
}
return false;
}
static private boolean jj_3R_derivedExpression_177_5_34()
{
if (jj_scan_token(LET)) return true;
if (jj_scan_token(37)) return true;
Token xsp;
while (true) {
xsp = jj_scanpos;
if (jj_3R_derivedExpression_177_42_52()) { jj_scanpos = xsp; break; }
}
if (jj_scan_token(38)) return true;
if (jj_3R_body_206_3_50()) return true;
return false;
}
static private boolean jj_3R_derivedExpression_176_5_33()
{
Token xsp;
xsp = jj_scanpos;
if (jj_scan_token(5)) {
jj_scanpos = xsp;
if (jj_scan_token(6)) {
jj_scanpos = xsp;
if (jj_scan_token(7)) {
jj_scanpos = xsp;
if (jj_scan_token(8)) return true;
}
}
}
if (jj_3R_exp_126_9_12()) return true;
if (jj_3R_exp_126_9_12()) return true;
return false;
}
static private boolean jj_3R_derivedExpression_175_5_32()
{
if (jj_scan_token(NEWLINE)) return true;
return false;
}
static private boolean jj_3R_derivedExpression_174_5_31()
{
if (jj_scan_token(WRITE)) return true;
if (jj_3R_exp_126_9_12()) return true;
return false;
}
static private boolean jj_3R_derivedExpression_173_5_30()
{
if (jj_scan_token(READ)) return true;
return false;
}
static private boolean jj_3R_derivedExpression_172_3_26()
{
Token xsp;
xsp = jj_scanpos;
if (jj_3R_derivedExpression_173_5_30()) {
jj_scanpos = xsp;
if (jj_3R_derivedExpression_174_5_31()) {
jj_scanpos = xsp;
if (jj_3R_derivedExpression_175_5_32()) {
jj_scanpos = xsp;
if (jj_3R_derivedExpression_176_5_33()) {
jj_scanpos = xsp;
if (jj_3R_derivedExpression_177_5_34()) {
jj_scanpos = xsp;
if (jj_3R_derivedExpression_178_5_35()) {
jj_scanpos = xsp;
if (jj_3R_derivedExpression_179_5_36()) {
jj_scanpos = xsp;
if (jj_3R_derivedExpression_180_5_37()) {
jj_scanpos = xsp;
if (jj_3R_derivedExpression_181_5_38()) {
jj_scanpos = xsp;
if (jj_3R_derivedExpression_182_5_39()) {
jj_scanpos = xsp;
if (jj_3R_derivedExpression_183_5_40()) {
jj_scanpos = xsp;
if (jj_3R_derivedExpression_184_5_41()) {
jj_scanpos = xsp;
if (jj_3R_derivedExpression_185_5_42()) {
jj_scanpos = xsp;
if (jj_3R_derivedExpression_186_5_43()) {
jj_scanpos = xsp;
if (jj_3R_derivedExpression_187_5_44()) {
jj_scanpos = xsp;
if (jj_3R_derivedExpression_188_5_45()) {
jj_scanpos = xsp;
if (jj_3R_derivedExpression_189_5_46()) {
jj_scanpos = xsp;
if (jj_3R_derivedExpression_190_5_47()) {
jj_scanpos = xsp;
if (jj_3R_derivedExpression_191_5_48()) return true;
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
return false;
}
static private boolean jj_3R_exp_129_44_19()
{
if (jj_3R_derivedExpression_172_3_26()) return true;
return false;
}
static private boolean jj_3R_assign_161_3_25()
{
if (jj_scan_token(SET)) return true;
if (jj_3R_variable_137_3_11()) return true;
if (jj_3R_exp_126_9_12()) return true;
return false;
}
static private boolean jj_3R_exp_129_31_18()
{
if (jj_3R_assign_161_3_25()) return true;
return false;
}
static private boolean jj_3R_cond_154_3_24()
{
if (jj_scan_token(IF)) return true;
if (jj_3R_exp_126_9_12()) return true;
if (jj_3R_exp_126_9_12()) return true;
Token xsp;
xsp = jj_scanpos;
if (jj_3R_cond_154_29_29()) jj_scanpos = xsp;
return false;
}
static private boolean jj_3R_literal_146_5_23()
{
if (jj_scan_token(BOOLEAN)) return true;
return false;
}
static private boolean jj_3R_literal_145_5_22()
{
if (jj_scan_token(INTEGER)) return true;
return false;
}
static private boolean jj_3R_exp_129_20_17()
{
if (jj_3R_cond_154_3_24()) return true;
return false;
}
static private boolean jj_3R_literal_144_3_16()
{
Token xsp;
xsp = jj_scanpos;
if (jj_3R_literal_145_5_22()) {
jj_scanpos = xsp;
if (jj_3R_literal_146_5_23()) return true;
}
return false;
}
static private boolean jj_3R_exp_127_19_13()
{
if (jj_3R_variable_137_3_11()) return true;
return false;
}
static private boolean jj_3R_exp_129_15_15()
{
if (jj_scan_token(37)) return true;
Token xsp;
xsp = jj_scanpos;
if (jj_3R_exp_129_20_17()) {
jj_scanpos = xsp;
if (jj_3R_exp_129_31_18()) {
jj_scanpos = xsp;
if (jj_3R_exp_129_44_19()) {
jj_scanpos = xsp;
if (jj_3R_exp_129_68_20()) {
jj_scanpos = xsp;
if (jj_3R_exp_129_84_21()) return true;
}
}
}
}
if (jj_scan_token(38)) return true;
return false;
}
static private boolean jj_3R_exp_128_15_14()
{
if (jj_3R_literal_144_3_16()) return true;
return false;
}
static private boolean jj_3R_lambdaExp_216_19_49()
{
if (jj_3R_variable_137_3_11()) return true;
return false;
}
static private boolean jj_3R_variable_137_3_11()
{
if (jj_scan_token(IDENTIFIER)) return true;
return false;
}
static private boolean jj_3R_derivedExpression_187_43_55()
{
if (jj_3R_exp_126_9_12()) return true;
return false;
}
static private boolean jj_3R_exp_126_9_12()
{
Token xsp;
xsp = jj_scanpos;
if (jj_3R_exp_127_19_13()) {
jj_scanpos = xsp;
if (jj_3R_exp_128_15_14()) {
jj_scanpos = xsp;
if (jj_3R_exp_129_15_15()) return true;
}
}
return false;
}
static private boolean jj_3R_procCall_223_4_51()
{
if (jj_3R_exp_126_9_12()) return true;
return false;
}
static private boolean jj_3R_procCall_223_3_28()
{
Token xsp;
if (jj_3R_procCall_223_4_51()) return true;
while (true) {
xsp = jj_scanpos;
if (jj_3R_procCall_223_4_51()) { jj_scanpos = xsp; break; }
}
return false;
}
static private boolean jj_3_2()
{
if (jj_3R_def_119_3_10()) return true;
return false;
}
static private boolean jj_3_1()
{
if (jj_3R_def_119_3_10()) return true;
return false;
}
static private boolean jj_3R_derivedExpression_177_42_52()
{
if (jj_3R_bindSpec_199_3_58()) return true;
return false;
}
static private boolean jj_3R_lambdaExp_216_3_27()
{
if (jj_scan_token(LAMBDA)) return true;
if (jj_scan_token(37)) return true;
Token xsp;
while (true) {
xsp = jj_scanpos;
if (jj_3R_lambdaExp_216_19_49()) { jj_scanpos = xsp; break; }
}
if (jj_scan_token(38)) return true;
if (jj_3R_body_206_3_50()) return true;
return false;
}
static private boolean jj_3R_derivedExpression_178_40_53()
{
if (jj_3R_exp_126_9_12()) return true;
return false;
}
static private boolean jj_3R_def_119_3_10()
{
if (jj_scan_token(37)) return true;
if (jj_scan_token(DEFINE)) return true;
if (jj_3R_variable_137_3_11()) return true;
if (jj_3R_exp_126_9_12()) return true;
if (jj_scan_token(38)) return true;
return false;
}
static private boolean jj_3R_derivedExpression_179_37_54()
{
if (jj_3R_exp_126_9_12()) return true;
return false;
}
static private boolean jj_3R_body_208_6_57()
{
if (jj_3R_exp_126_9_12()) return true;
return false;
}
static private boolean jj_3R_body_207_6_56()
{
if (jj_3R_def_119_3_10()) return true;
return false;
}
static private boolean jj_3R_exp_129_84_21()
{
if (jj_3R_procCall_223_3_28()) return true;
return false;
}
static private boolean jj_3R_body_206_3_50()
{
Token xsp;
while (true) {
xsp = jj_scanpos;
if (jj_3R_body_207_6_56()) { jj_scanpos = xsp; break; }
}
if (jj_3R_body_208_6_57()) return true;
while (true) {
xsp = jj_scanpos;
if (jj_3R_body_208_6_57()) { jj_scanpos = xsp; break; }
}
return false;
}
static private boolean jj_3R_bindSpec_199_3_58()
{
if (jj_scan_token(37)) return true;
if (jj_3R_variable_137_3_11()) return true;
if (jj_3R_exp_126_9_12()) return true;
if (jj_scan_token(38)) return true;
return false;
}
static private boolean jj_3R_exp_129_68_20()
{
if (jj_3R_lambdaExp_216_3_27()) return true;
return false;
}
static private boolean jj_3R_derivedExpression_191_5_48()
{
if (jj_scan_token(SET_CAR)) return true;
if (jj_3R_exp_126_9_12()) return true;
if (jj_3R_exp_126_9_12()) return true;
return false;
}
static private boolean jj_3R_derivedExpression_190_5_47()
{
if (jj_scan_token(CDR)) return true;
if (jj_3R_exp_126_9_12()) return true;
return false;
}
static private boolean jj_3R_derivedExpression_189_5_46()
{
if (jj_scan_token(CAR)) return true;
if (jj_3R_exp_126_9_12()) return true;
return false;
}
static private boolean jj_3R_derivedExpression_188_5_45()
{
if (jj_scan_token(NULL_CHECK)) return true;
if (jj_3R_exp_126_9_12()) return true;
return false;
}
static private boolean jj_3R_derivedExpression_187_5_44()