-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCheckType.java
More file actions
913 lines (811 loc) · 31 KB
/
Copy pathCheckType.java
File metadata and controls
913 lines (811 loc) · 31 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
package FinalProject;
import FinalProject.analysis.*;
import FinalProject.node.*;
import java.util.*;
class CheckType extends DepthFirstAdapter
{
Method curmeth = null;
String lhsid = null;
String lhstype = null;
String rhstype = null;
String rhslastid = null;
String lastid = null;
public CheckType() {
//System.out.println("Start of the Printing Action");
}
//this gets called if the production is prog --> id digit
public void caseAProg(AProg node){
//System.out.println("\tGot a first prog!");
node.getBegin().apply(this);
node.getClassmethodstmts().apply(this);
node.getEnd().apply(this);
}
//term --> {first} term multop factor
public void caseAFirstTerm(AFirstTerm node){
//System.out.println("\tGot a first term!");
node.getTerm().apply(this);
node.getMultop().apply(this);
node.getFactor().apply(this);
}
//term --> {second} factor
public void caseASecondTerm(ASecondTerm node){
//System.out.println("\tGot a second term!");
node.getFactor().apply(this);
}
//expr --> {first} expr addop term
public void caseAFirstExpr(AFirstExpr node){
//System.out.println("\tGot a first expr!");
node.getExpr().apply(this);
node.getAddop().apply(this);
node.getTerm().apply(this);
}
//expr --> {second} term
public void caseASecondExpr(ASecondExpr node){
//System.out.println("\tGot a second expr!");
node.getTerm().apply(this);
}
//varlisttwo --> {first}
public void caseAFirstVarlisttwo(AFirstVarlisttwo node){
//System.out.println("\tGot a first varlisttwo!");
}
//varlisttwo --> {second} expr
public void caseASecondVarlisttwo(ASecondVarlisttwo node){
//System.out.println("\tGot a second varlisttwo!");
node.getExpr().apply(this);
}
//varlisttwo --> {third} expr comma varlisttwo
public void caseAThirdVarlisttwo(AThirdVarlisttwo node){
//System.out.println("\tGot a third varlisttwo!");
node.getExpr().apply(this);
node.getComma().apply(this);
node.getVarlisttwo().apply(this);
}
//varlist --> {first}
public void caseAFirstVarlist(AFirstVarlist node){
//System.out.println("\tGot a first varlist!");
}
//varlist --> {second} id colon type
public void caseASecondVarlist(ASecondVarlist node){
//System.out.println("\tGot a second varlist!");
node.getId().apply(this);
node.getColon().apply(this);
node.getType().apply(this);
}
//varlist --> {third} id colon type lbracket int rbracket
public void caseAThirdVarlist(AThirdVarlist node){
//System.out.println("\tGot a third varlist!");
node.getId().apply(this);
node.getColon().apply(this);
node.getType().apply(this);
node.getLbracket().apply(this);
node.getInt().apply(this);
node.getRbracket().apply(this);
}
//varlist --> {fourth} id colon type comma varlist
public void caseAFourthVarlist(AFourthVarlist node){
//System.out.println("\tGot a fourth varlist!");
node.getId().apply(this);
node.getColon().apply(this);
node.getType().apply(this);
node.getComma().apply(this);
node.getVarlist().apply(this);
}
//varlist --> {fifth} id colon type lbracket int rbracket comma varlist
public void caseAFifthVarlist(AFifthVarlist node){
//System.out.println("\tGot a fifth varlist!");
node.getId().apply(this);
node.getColon().apply(this);
node.getType().apply(this);
node.getLbracket().apply(this);
node.getInt().apply(this);
node.getRbracket().apply(this);
node.getComma().apply(this);
node.getVarlist().apply(this);
}
//idlist --> {first} id
public void caseAFirstIdlist(AFirstIdlist node){
//System.out.println("\tGot a first idlist!");
node.getId().apply(this);
}
//idlist --> {second} id comma idlist
public void caseASecondIdlist(ASecondIdlist node){
//System.out.println("\tGot a first idlist!");
node.getId().apply(this);
node.getComma().apply(this);
node.getIdlist().apply(this);
}
//stmtseq --> {first}
public void caseAFirstStmtseq(AFirstStmtseq node){
//System.out.println("\tGot a first stmtseq!");
}
//stmtseq --> {second} stmt stmtseq
public void caseASecondStmtseq(ASecondStmtseq node){
//System.out.println("\tGot a second stmtseq!");
node.getStmt().apply(this);
node.getStmtseq().apply(this);
}
//idorarray --> {first} id
public void caseAFirstIdorarray(AFirstIdorarray node){
//System.out.println("\tGot a first idorarray!");
node.getId().apply(this);
}
//idorarray --> {second} id lbracket int rbracket
public void caseASecondIdorarray(ASecondIdorarray node){
//System.out.println("\tGot a second idorarray!");
node.getId().apply(this);
node.getLbracket().apply(this);
node.getInt().apply(this);
node.getRbracket().apply(this);
}
//stmt --> {first} idorarray assign expr semicolon
public void caseAFirstStmt(AFirstStmt node){
//System.out.println("\tGot a first stmt!");
node.getIdorarray().apply(this);
if(curmeth.containsVar(lastid)){
lhstype = curmeth.getVar(lastid).type;
} else if (curmeth.containsParam(lastid)){
lhstype = curmeth.getParam(lastid).type;
}
node.getAssign().apply(this);
node.getExpr().apply(this);
if (!lhstype.equals(rhstype)){
System.out.println("attempting to store a value in the wrong type variable \n" + lastid + " is " + lhstype + " not " + rhstype);
System.exit(1);
}
node.getSemicolon().apply(this);
}
//stmt --> {third} idorarray assign anychars semicolon
public void caseAThirdStmt(AThirdStmt node){
//System.out.println("\tGot a third stmt!");
node.getIdorarray().apply(this);
if(curmeth.containsVar(lastid)){
lhstype = curmeth.getVar(lastid).type;
} else if (curmeth.containsParam(lastid)){
lhstype = curmeth.getParam(lastid).type;
}
if (!lhstype.equals("STRING")){
System.out.println("types don't match. trying to assign STRING to " + lhstype);
System.exit(1);
}
node.getAssign().apply(this);
node.getAnychars().apply(this);
node.getSemicolon().apply(this);
}
//stmt --> {fifth} idlist colon type semicolon
public void caseAFifthStmt(AFifthStmt node){
//System.out.println("\tGot a fifth stmt!");
node.getIdlist().apply(this);
node.getColon().apply(this);
node.getType().apply(this);
node.getSemicolon().apply(this);
}
//stmt --> {sixth} idlist colon type lbracket int rbracket semicolon
public void caseASixthStmt(ASixthStmt node){
//System.out.println("\tGot a sixth stmt!");
node.getIdlist().apply(this);
node.getColon().apply(this);
node.getType().apply(this);
node.getLbracket().apply(this);
node.getInt().apply(this);
node.getRbracket().apply(this);
node.getSemicolon().apply(this);
}
//stmt --> {seventh} if lparen boolean rparen then lbrace stmtseq rbrace
public void caseASeventhStmt(ASeventhStmt node){
//System.out.println("\tGot a seventh stmt!");
node.getIf().apply(this);
node.getLparen().apply(this);
node.getBoolean().apply(this);
node.getRparen().apply(this);
node.getThen().apply(this);
node.getLbrace().apply(this);
node.getStmtseq().apply(this);
node.getRbrace().apply(this);
}
//stmt --> {eighth} if lparen boolean rparen then [one]:lbrace [five]:stmtseq [three]:rbrace else [two]:lbrace [six]:stmtseq [four]:rbrace
public void caseAEighthStmt(AEighthStmt node){
//System.out.println("\tGot a eighth stmt!");
node.getIf().apply(this);
node.getLparen().apply(this);
node.getBoolean().apply(this);
node.getRparen().apply(this);
node.getThen().apply(this);
node.getOne().apply(this);
node.getFive().apply(this);
node.getThree().apply(this);
node.getElse().apply(this);
node.getTwo().apply(this);
node.getSix().apply(this);
node.getFour().apply(this);
}
//stmt --> {ninth} while lparen boolean rparen lbrace stmtseq rbrace
public void caseANinthStmt(ANinthStmt node){
//System.out.println("\tGot a ninth stmt!");
node.getWhile().apply(this);
node.getLparen().apply(this);
node.getBoolean().apply(this);
node.getRparen().apply(this);
node.getLbrace().apply(this);
node.getStmtseq().apply(this);
node.getRbrace().apply(this);
}
//stmt --> {tenth} for lparen [five]:id assign expr [one]:semicolon boolean [two]:semicolon [six]:id [three]:plus [four]:plus rparen lbrace stmtseq rbrace
public void caseATenthStmt(ATenthStmt node){
//System.out.println("\tGot a tenth stmt!");
node.getFor().apply(this);
node.getLparen().apply(this);
node.getFive().apply(this);
if(curmeth.containsVar(lastid)){
lhstype = curmeth.getVar(lastid).type;
} else if (curmeth.containsParam(lastid)){
lhstype = curmeth.getParam(lastid).type;
}
node.getAssign().apply(this);
node.getExpr().apply(this);
if (!lhstype.equals(rhstype)){
System.out.println("attempting to store a value in the wrong type variable \n" + lastid + " is " + lhstype + " not " + rhstype);
System.exit(1);
}
node.getOne().apply(this);
node.getBoolean().apply(this);
node.getTwo().apply(this);
node.getSix().apply(this);
if(curmeth.containsVar(lastid)){
lhstype = curmeth.getVar(lastid).type;
} else if (curmeth.containsParam(lastid)){
lhstype = curmeth.getParam(lastid).type;
}
if (!lhstype.equals("INT")){
System.out.println("you can only use ++ or -- on ant int, not a " + lhstype + " for variable " + lastid);
System.exit(1);
}
node.getThree().apply(this);
node.getFour().apply(this);
node.getRparen().apply(this);
node.getLbrace().apply(this);
node.getStmtseq().apply(this);
node.getRbrace().apply(this);
}
//stmt --> {eleventh} for lparen type [five]:id assign expr [one]:semicolon boolean [two]:semicolon [six]:id [three]:plus [four]:plus rparen lbrace stmtseq rbrace
public void caseAEleventhStmt(AEleventhStmt node){
//System.out.println("\tGot a eleventh stmt!");
node.getFor().apply(this);
node.getLparen().apply(this);
node.getType().apply(this);
node.getFive().apply(this);
node.getAssign().apply(this);
node.getExpr().apply(this);
node.getOne().apply(this);
node.getBoolean().apply(this);
node.getTwo().apply(this);
node.getSix().apply(this);
if(curmeth.containsVar(lastid)){
lhstype = curmeth.getVar(lastid).type;
} else if (curmeth.containsParam(lastid)){
lhstype = curmeth.getParam(lastid).type;
}
if (!lhstype.equals("INT")){
System.out.println("you can only use ++ or -- on ant int, not a " + lhstype + " for variable " + lastid);
System.exit(1);
}
node.getThree().apply(this);
node.getFour().apply(this);
node.getRparen().apply(this);
node.getLbrace().apply(this);
node.getStmtseq().apply(this);
node.getRbrace().apply(this);
}
//stmt --> {twelveth} for lparen [five]:id assign expr [one]:semicolon boolean [two]:semicolon [six]:id [three]:minus [four]:minus rparen lbrace stmtseq rbrace
public void caseATwelvethStmt(ATwelvethStmt node){
//System.out.println("\tGot a twelveth stmt!");
node.getFor().apply(this);
node.getLparen().apply(this);
node.getFive().apply(this);
if(curmeth.containsVar(lastid)){
lhstype = curmeth.getVar(lastid).type;
} else if (curmeth.containsParam(lastid)){
lhstype = curmeth.getParam(lastid).type;
}
node.getAssign().apply(this);
node.getExpr().apply(this);
if (!lhstype.equals(rhstype)){
System.out.println("attempting to store a value in the wrong type variable \n" + lastid + " is " + lhstype + " not " + rhstype);
System.exit(1);
}
node.getOne().apply(this);
node.getBoolean().apply(this);
node.getTwo().apply(this);
node.getSix().apply(this);
if(curmeth.containsVar(lastid)){
lhstype = curmeth.getVar(lastid).type;
} else if (curmeth.containsParam(lastid)){
lhstype = curmeth.getParam(lastid).type;
}
if (!lhstype.equals("INT")){
System.out.println("you can only use ++ or -- on ant int, not a " + lhstype + " for variable " + lastid);
System.exit(1);
}
node.getThree().apply(this);
node.getFour().apply(this);
node.getRparen().apply(this);
node.getLbrace().apply(this);
node.getStmtseq().apply(this);
node.getRbrace().apply(this);
}
//stmt --> {thirteenth} for lparen type [five]:id assign expr [one]:semicolon boolean [two]:semicolon [six]:id [three]:minus [four]:minus rparen lbrace stmtseq rbrace
public void caseAThirteenthStmt(AThirteenthStmt node){
//System.out.println("\tGot a thirteenth stmt!");
node.getFor().apply(this);
node.getLparen().apply(this);
node.getType().apply(this);
node.getFive().apply(this);
node.getAssign().apply(this);
node.getExpr().apply(this);
node.getOne().apply(this);
node.getBoolean().apply(this);
node.getTwo().apply(this);
node.getSix().apply(this);
if(curmeth.containsVar(lastid)){
lhstype = curmeth.getVar(lastid).type;
} else if (curmeth.containsParam(lastid)){
lhstype = curmeth.getParam(lastid).type;
}
if (!lhstype.equals("INT")){
System.out.println("you can only use ++ or -- on ant int, not a " + lhstype + " for variable " + lastid);
System.exit(1);
}
node.getThree().apply(this);
node.getFour().apply(this);
node.getRparen().apply(this);
node.getLbrace().apply(this);
node.getStmtseq().apply(this);
node.getRbrace().apply(this);
}
//stmt --> {fourteenth} for lparen [five]:id [aba]:assign [aca]:expr [one]:semicolon boolean [two]:semicolon [six]:id [three]:plus [four]:plus [gay]:assign [aaa]:expr rparen lbrace stmtseq rbrace
public void caseAFourteenthStmt(AFourteenthStmt node){
//System.out.println("\tGot a fourteenth stmt!");
node.getFor().apply(this);
node.getLparen().apply(this);
node.getFive().apply(this);
if(curmeth.containsVar(lastid)){
lhstype = curmeth.getVar(lastid).type;
} else if (curmeth.containsParam(lastid)){
lhstype = curmeth.getParam(lastid).type;
}
node.getAba().apply(this);
node.getAca().apply(this);
if (!lhstype.equals(rhstype)){
System.out.println("attempting to store a value in the wrong type variable \n" + lastid + " is " + lhstype + " not " + rhstype);
System.exit(1);
}
node.getOne().apply(this);
node.getBoolean().apply(this);
node.getTwo().apply(this);
node.getSix().apply(this);
if(curmeth.containsVar(lastid)){
lhstype = curmeth.getVar(lastid).type;
} else if (curmeth.containsParam(lastid)){
lhstype = curmeth.getParam(lastid).type;
}
node.getGay().apply(this);
node.getAaa().apply(this);
if (!lhstype.equals(rhstype)){
System.out.println("attempting to store a value in the wrong type variable \n" + lastid + " is " + lhstype + " not " + rhstype);
System.exit(1);
}
node.getRparen().apply(this);
node.getLbrace().apply(this);
node.getStmtseq().apply(this);
node.getRbrace().apply(this);
}
//stmt --> {fifteenth} for type lparen [five]:id [aba]:assign [aca]:expr [one]:semicolon boolean [two]:semicolon [six]:id [three]:plus [four]:plus [gay]:assign [aaa]:expr rparen lbrace stmtseq rbrace
public void caseAFifteenthStmt(AFifteenthStmt node){
//System.out.println("\tGot a fifteenth stmt!");
node.getFor().apply(this);
node.getType().apply(this);
node.getLparen().apply(this);
node.getFive().apply(this);
node.getAba().apply(this);
node.getAca().apply(this);
node.getOne().apply(this);
node.getBoolean().apply(this);
node.getTwo().apply(this);
node.getSix().apply(this);
if(curmeth.containsVar(lastid)){
lhstype = curmeth.getVar(lastid).type;
} else if (curmeth.containsParam(lastid)){
lhstype = curmeth.getParam(lastid).type;
}
node.getGay().apply(this);
node.getAaa().apply(this);
if (!lhstype.equals(rhstype)){
System.out.println("attempting to store a value in the wrong type variable \n" + lastid + " is " + lhstype + " not " + rhstype);
System.exit(1);
}
node.getRparen().apply(this);
node.getLbrace().apply(this);
node.getStmtseq().apply(this);
node.getRbrace().apply(this);
}
//stmt --> {sixteenth} idorarray assign get lparen rparen semicolon
public void caseASixteenthStmt(ASixteenthStmt node){
//System.out.println("\tGot a sixteenth stmt!");
node.getIdorarray().apply(this);
node.getAssign().apply(this);
node.getGet().apply(this);
node.getLparen().apply(this);
node.getRparen().apply(this);
node.getSemicolon().apply(this);
}
//stmt --> {seventeenth} put lparen idorarray rparen semicolon
public void caseASeventeenthStmt(ASeventeenthStmt node){
//System.out.println("\tGot a seventeenth stmt!");
node.getPut().apply(this);
node.getLparen().apply(this);
node.getIdorarray().apply(this);
node.getRparen().apply(this);
node.getSemicolon().apply(this);
}
//stmt --> {eighteenth} idorarray [first]:plus [second]:plus semicolon
public void caseAEighteenthStmt(AEighteenthStmt node){
//System.out.println("\tGot a eightteenth stmt!");
node.getIdorarray().apply(this);
if(curmeth.containsVar(lastid)){
lhstype = curmeth.getVar(lastid).type;
} else if (curmeth.containsParam(lastid)){
lhstype = curmeth.getParam(lastid).type;
}
if (!lhstype.equals("INT")){
System.out.println("you can only use ++ or -- on ant int, not a " + lhstype + " for variable " + lastid);
System.exit(1);
}
node.getFirst().apply(this);
node.getSecond().apply(this);
node.getSemicolon().apply(this);
}
//stmt --> {nineteenth} idorarray [first]:minus [second]:minus semicolon
public void caseANineteenthStmt(ANineteenthStmt node){
//System.out.println("\tGot a nineteenth stmt!");
node.getIdorarray().apply(this);
if(curmeth.containsVar(lastid)){
lhstype = curmeth.getVar(lastid).type;
} else if (curmeth.containsParam(lastid)){
lhstype = curmeth.getParam(lastid).type;
}
if (!lhstype.equals("INT")){
System.out.println("you can only use ++ or -- on ant int, not a " + lhstype + " for variable " + lastid);
System.exit(1);
}
node.getFirst().apply(this);
node.getSecond().apply(this);
node.getSemicolon().apply(this);
}
//stmt --> {twenty} idorarray assign new id lparen rparen semicolon
public void caseATwentyStmt(ATwentyStmt node){
//System.out.println("\tGot a twenty stmt!");
node.getIdorarray().apply(this);
node.getAssign().apply(this);
node.getNew().apply(this);
node.getId().apply(this);
node.getLparen().apply(this);
node.getRparen().apply(this);
node.getSemicolon().apply(this);
}
//stmt --> {twentyone} id lparen varlisttwo rparen semicolon |
public void caseATwentyoneStmt(ATwentyoneStmt node){
//System.out.println("\tGot a twentyone stmt!");
node.getId().apply(this);
node.getLparen().apply(this);
node.getVarlisttwo().apply(this);
node.getRparen().apply(this);
node.getSemicolon().apply(this);
}
//stmt --> {twentytwo} idorarray dot id lparen varlisttwo rparen dotmethod semicolon
public void caseATwentytwoStmt(ATwentytwoStmt node){
//System.out.println("\tGot a twentytwo stmt!");
node.getIdorarray().apply(this);
node.getDot().apply(this);
node.getId().apply(this);
node.getLparen().apply(this);
node.getVarlisttwo().apply(this);
node.getRparen().apply(this);
node.getDotmethod().apply(this);
node.getSemicolon().apply(this);
}
//stmt --> {twentythree} return expr semicolon
public void caseATwentythreeStmt(ATwentythreeStmt node){
//System.out.println("\tGot a twentythree stmt!");
node.getReturn().apply(this);
node.getExpr().apply(this);
node.getSemicolon().apply(this);
}
//Type --> {first} intdecl
public void caseAFirstType(AFirstType node){
//System.out.println("\tGot a First Type!");
node.getIntdecl().apply(this);
}
//Type --> {second} realdecl
public void caseASecondType(ASecondType node){
//System.out.println("\tGot a Second Type!");
node.getRealdecl().apply(this);
}
//Type --> {third} voiddecl
public void caseAThirdType(AThirdType node){
//System.out.println("\tGot a third Type!");
node.getVoiddecl().apply(this);
}
//Type --> {fourth} booleandecl
public void caseAFourthType(AFourthType node){
//System.out.println("\tGot a fourth Type!");
node.getBooleandecl().apply(this);
}
//Type --> {fifth} stringdecl
public void caseAFifthType(AFifthType node){
//System.out.println("\tGot a fifth Type!");
node.getStringdecl().apply(this);
}
//Type --> {sixth} iddecl
public void caseASixthType(ASixthType node){
//System.out.println("\tGot a sixth Type!");
node.getId().apply(this);
}
//multop --> {first} times
public void caseAFirstMultop(AFirstMultop node){
//System.out.println("\tGot a first Multop!");
node.getTimes().apply(this);
}
public void caseASecondMultop(ASecondMultop node){
//System.out.println("\tGot a second Multop!");
node.getDivide().apply(this);
}
//addop --> {first} plus
public void caseAFirstAddop(AFirstAddop node){
//System.out.println("\tGot a first Addop!");
node.getPlus().apply(this);
}
public void caseASecondAddop(ASecondAddop node){
//System.out.println("\tGot a second Addop!");
node.getMinus().apply(this);
}
//cond --> {first} equalequal
public void caseAFirstCond(AFirstCond node){
//System.out.println("\tGot a First Cond!");
node.getEqualequal().apply(this);
}
public void caseASecondCond(ASecondCond node){
//System.out.println("\tGot a Second Cond!");
node.getNotequal().apply(this);
}
public void caseAThirdCond(AThirdCond node){
//System.out.println("\tGot a Third Cond!");
node.getLeq().apply(this);
}
public void caseAFourthCond(AFourthCond node){
//System.out.println("\tGot a Fourth Cond!");
node.getGeq().apply(this);
}
public void caseAFifthCond(AFifthCond node){
//System.out.println("\tGot a Fifth Cond!");
node.getLt().apply(this);
}
public void caseASixthCond(ASixthCond node){
//System.out.println("\tGot a Sixth Cond!");
node.getGt().apply(this);
}
public void caseAFirstFactor(AFirstFactor node){
//System.out.println("\tGet a first factor!");
node.getMinus().apply(this);
node.getFactor().apply(this);
if ((!rhstype.equals("INT")) && (!rhstype.equals("REAL"))){
System.out.println("you can only take the negative of a number");
System.exit(1);
}
}
public void caseASecondFactor(ASecondFactor node){
//System.out.println("\tGet a second factor!");
node.getInt().apply(this);
rhstype = "INT";
}
public void caseAThirdFactor(AThirdFactor node){
//System.out.println("\tGet a Third factor!");
node.getReal().apply(this);
rhstype = "REAL";
}
public void caseAFourthFactor(AFourthFactor node){
//System.out.println("\tGet a fourth factor!");
node.getId().apply(this);
if(curmeth.containsVar(lastid)){
rhstype = curmeth.getVar(lastid).type;
} else if (curmeth.containsParam(lastid)){
rhstype = curmeth.getParam(lastid).type;
}
}
public void caseAFifthFactor(AFifthFactor node){
//System.out.println("\tGet a fifth factor!");
node.getId().apply(this);
if(curmeth.containsVar(lastid)){
rhstype = curmeth.getVar(lastid).type;
} else if (curmeth.containsParam(lastid)){
rhstype = curmeth.getParam(lastid).type;
}
if(rhstype.equals("STRING")){
System.out.println("you cannot do math on a string");
System.exit(1);
}
node.getLbracket().apply(this);
node.getInt().apply(this);
node.getRbracket().apply(this);
}
public void caseASixthFactor(ASixthFactor node){
//System.out.println("\tGet a sixth factor!");
node.getId().apply(this);
node.getLparen().apply(this);
node.getVarlisttwo().apply(this);
node.getRparen().apply(this);
}
public void caseASeventhFactor(ASeventhFactor node){
//System.out.println("\tGet a seventh factor!");
node.getObject().apply(this);
node.getDot().apply(this);
node.getField().apply(this);
node.getLparen().apply(this);
node.getVarlisttwo().apply(this);
node.getRparen().apply(this);
}
public void caseAEighthFactor(AEighthFactor node){
//System.out.println("\tGet an Eighth factor!");
node.getObject().apply(this);
node.getLbracket().apply(this);
node.getInt().apply(this);
node.getRbracket().apply(this);
node.getDot().apply(this);
node.getField().apply(this);
node.getLparen().apply(this);
node.getVarlisttwo().apply(this);
node.getRparen().apply(this);
}
public void caseANinthFactor(ANinthFactor node){
//System.out.println("\tGet a Ninth factor!");
node.getObject().apply(this);
node.getDot().apply(this);
node.getField().apply(this);
}
public void caseATenthFactor(ATenthFactor node){
//System.out.println("\tGet a Tenth factor!");
node.getLparen().apply(this);
node.getExpr().apply(this);
node.getRparen().apply(this);
}
public void caseAFirstBoolean(AFirstBoolean node){
//System.out.println("\tGot a First Boolean!");
node.getTrue().apply(this);
}
public void caseASecondBoolean(ASecondBoolean node){
//System.out.println("\tGot a Second Boolean!");
node.getFalse().apply(this);
}
public void caseAThirdBoolean(AThirdBoolean node){
//System.out.println("\tGot a Third Boolean!");
node.getId().apply(this);
}
public void caseAFourthBoolean(AFourthBoolean node){
//System.out.println("\tGot a Fourth Boolean!");
node.getOne().apply(this);
node.getCond().apply(this);
node.getTwo().apply(this);
}
public void caseAFifthBoolean(AFifthBoolean node){
//System.out.println("\tGot a Fifth Boolean!");
node.getObject().apply(this);
node.getDot().apply(this);
node.getField().apply(this);
}
public void caseASixthBoolean(ASixthBoolean node){
//System.out.println("\tGot a Sixth Boolean!");
node.getObject().apply(this);
node.getLbracket().apply(this);
node.getInt().apply(this);
node.getRbracket().apply(this);
node.getDot().apply(this);
node.getField().apply(this);
}
public void caseAFirstDotmethod(AFirstDotmethod node){
//System.out.println("\tGot a first Dotmethod!");
node.getDot().apply(this);
node.getId().apply(this);
node.getLparen().apply(this);
node.getVarlisttwo().apply(this);
node.getRparen().apply(this);
node.getDotmethod().apply(this);
}
public void caseASecondDotmethod(ASecondDotmethod node){
//System.out.println("\tGot a second Dotmethod!");
}
public void caseAFirstMethodstmtseq(AFirstMethodstmtseq node){
//System.out.println("\tGot a first Methodstmtseq!");
node.getType().apply(this);
node.getId().apply(this);
curmeth = SymbolTraverse.st.getMethod(lastid);
node.getLparen().apply(this);
node.getVarlist().apply(this);
node.getRparen().apply(this);
node.getLbrace().apply(this);
node.getStmtseq().apply(this);
node.getRbrace().apply(this);
curmeth = null;
}
public void caseASecondMethodstmtseq(ASecondMethodstmtseq node){
//System.out.println("\tGot a Second Methodstmtseq!");
node.getIdlist().apply(this);
node.getColon().apply(this);
node.getType().apply(this);
node.getSemicolon().apply(this);
}
public void caseAFirstMethodstmtseqs(AFirstMethodstmtseqs node){
//System.out.println("\tGot a First methodstmtseqs!");
node.getMethodstmtseq().apply(this);
node.getMethodstmtseqs().apply(this);
}
public void caseASecondMethodstmtseqs(ASecondMethodstmtseqs node){
//System.out.println("\tGot a Second methodstmtseqs!");
}
public void caseAFirstClassmethodstmt(AFirstClassmethodstmt node){
//System.out.println("\tGot a First Classmethodstmt!");
node.getClasss().apply(this);
node.getId().apply(this);
node.getLbrace().apply(this);
node.getMethodstmtseqs().apply(this);
node.getRbrace().apply(this);
}
public void caseASecondClassmethodstmt(ASecondClassmethodstmt node){
//System.out.println("\tGot a Second Classmethodstmt!");
node.getType().apply(this);
node.getId().apply(this);
curmeth = SymbolTraverse.st.getMethod(lastid);
node.getLparen().apply(this);
node.getVarlist().apply(this);
node.getRparen().apply(this);
node.getLbrace().apply(this);
node.getStmtseq().apply(this);
node.getRbrace().apply(this);
curmeth = null;
}
public void caseAThirdClassmethodstmt(AThirdClassmethodstmt node){
//System.out.println("\tGot a Third Classmethodstmt!");
node.getIdlist().apply(this);
node.getColon().apply(this);
node.getType().apply(this);
node.getSemicolon().apply(this);
}
public void caseAFirstClassmethodstmts(AFirstClassmethodstmts node){
//System.out.println("\tGot a First Classmethodstmts!");
node.getClassmethodstmt().apply(this);
node.getClassmethodstmts().apply(this);
}
public void caseASecondClassmethodstmts(ASecondClassmethodstmts node){
//System.out.println("\tGot a Second Classmethodstmts!");
}
//if it reaches an id, print it off
public void caseTId(TId node){
//System.out.println("\tGot myself an id: <"+node.getText()+">");
lastid = node.getText();
}
//if it reaches an int, print it off
public void caseTInt(TInt node){
//System.out.println("\tGot myself an int: <"+node.getText()+">");
}
//if it reaches an real, print it off
public void caseTReal(TReal node){
//System.out.println("\tGot myself an real: <"+node.getText()+">");
System.out.println("Unfortunately, we do not support real numbers at this time. Your number : " + node.getText() + " cannot be evaluated");
System.exit(0);
}
//if it reaches an string, print it off
public void caseTAnychars(TAnychars node){
//System.out.println("\tGot myself an anychars: <"+node.getText()+">");
}
//if it reaches an semicolon,
public void caseTSemicolon(TSemicolon node){
rhstype = null;
}
}