end of prac 4

This commit is contained in:
simonkellet 2023-10-04 12:41:29 +01:00
parent dc5f17620e
commit b2882bf8f7

View File

@ -588,6 +588,14 @@ public class ConstantFolder implements ActualParameterVisitor<Void, AbstractSynt
if (o.decl == StdEnvironment.addDecl) { if (o.decl == StdEnvironment.addDecl) {
foldedValue = int1 + int2; foldedValue = int1 + int2;
} else if(o.decl == StdEnvironment.multiplyDecl) {
foldedValue = int1 * int2;
} else if(o.decl == StdEnvironment.subtractDecl) {
foldedValue = int1 - int2;
} else if(o.decl == StdEnvironment.moduloDecl) {
foldedValue = int1 % int2;
} else if(o.decl == StdEnvironment.divideDecl) {
foldedValue = int1 / int2;
} }
if (foldedValue instanceof Integer) { if (foldedValue instanceof Integer) {