Examples of ReturnExpression


Examples of org.jreversepro.ast.expression.ReturnExpression

   * net.sf.jrevpro.decompile.evaluator.AbstractInstructionEvaluator#evaluate
   * (net.sf.jrevpro.reflect.instruction.Instruction)
   */
  @Override
  void evaluate(Instruction ins) {
    ReturnExpression expr = null;
    if (ins.opcode == OPCODE_RETURN) {
      expr = new ReturnExpression();
    } else {
      Expression op1 = evalMachine.pop();

      switch (ins.opcode) {
      case OPCODE_IRETURN:
        expr = new ReturnExpression(op1, methodReturnType);
        break;
      case OPCODE_LRETURN:
      case OPCODE_FRETURN:
      case OPCODE_DRETURN:
      case OPCODE_ARETURN:
        expr = new ReturnExpression(op1, JVM_TYPE_VOID);
        break;
      default:
        throw new IllegalArgumentException("Unsupported return code "
            + ins.opcode);
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.