Package org.candle.decompiler.intermediate.expression

Examples of org.candle.decompiler.intermediate.expression.Arithmetic


  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);
  }
View Full Code Here

TOP

Related Classes of org.candle.decompiler.intermediate.expression.Arithmetic

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.