Package jadx.core.dex.instructions.args

Examples of jadx.core.dex.instructions.args.TypeImmutableArg


      }
    }
    if (accFlags.isStatic()) {
      thisArg = null;
    } else {
      TypeImmutableArg arg = InsnArg.typeImmutableReg(pos - 1, parentClass.getClassInfo().getType());
      arg.markAsThis();
      thisArg = arg;
    }
    if (args.isEmpty()) {
      argsList = Collections.emptyList();
      return;
    }
    argsList = new ArrayList<RegisterArg>(args.size());
    for (ArgType arg : args) {
      argsList.add(InsnArg.typeImmutableReg(pos, arg));
      pos += arg.getRegCount();
    }
  }
View Full Code Here

TOP

Related Classes of jadx.core.dex.instructions.args.TypeImmutableArg

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.