protected void processArithmeticTwoStackOperations(ArithmeticType type) {
Expression right = context.getExpressions().pop();
Expression left = context.getExpressions().pop();
Expression addExp = new Arithmetic(context.getCurrentInstruction(), left, right, type);
context.getExpressions().push(addExp);
}