Package jadx.core.dex.instructions

Examples of jadx.core.dex.instructions.IfOp.invert()


    if (firstArg.getType().equals(ArgType.BOOLEAN)
        && secondArg.isLiteral()
        && secondArg.getType().equals(ArgType.BOOLEAN)) {
      LiteralArg lit = (LiteralArg) secondArg;
      if (lit.getLiteral() == 0) {
        op = op.invert();
      }
      if (op == IfOp.EQ) {
        // == true
        if (stack.getStack().size() == 1) {
          addArg(code, firstArg, false);
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.