use of net.runelite.asm.attributes.code.instructions.InvokeInterface in project runelite by runelite.
the class CodeVisitor method visitMethodInsn.
@Override
public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) {
InvokeInstruction ii = (InvokeInstruction) createInstructionFromOpcode(opcode);
assert ii instanceof InvokeInterface == itf;
Type type = new Type(owner);
net.runelite.asm.pool.Method entry = new net.runelite.asm.pool.Method(new net.runelite.asm.pool.Class(type.getInternalName()), name, new Signature(desc));
ii.setMethod(entry);
}
Aggregations