use of org.candle.decompiler.intermediate.expression.Arithmetic in project candle-decompiler by bradsdavis.
the class MethodIntermediateVisitor method processArithmeticTwoStackOperations.
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);
}
Aggregations