Package org.jreversepro.ast.expression

Examples of org.jreversepro.ast.expression.BinaryOpExpression


        .getArgUnsignedWide(), ins.currentPc);
    int constant = ins.getArgWide(1);

    if (constant < 0) {
      Constant ct = new Constant(-constant);
      statements.append(new CompleteLine(ins, new BinaryOpExpression(var,
          BinaryOperator.SMART_MINUS, ct, JVM_TYPE_INT)));
    } else {
      Constant ct = new Constant(constant);
      statements.append(new CompleteLine(ins, new BinaryOpExpression(var,
          BinaryOperator.SMART_PLUS, ct, JVM_TYPE_INT)));
    }

  }
View Full Code Here

TOP

Related Classes of org.jreversepro.ast.expression.BinaryOpExpression

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.