use of net.runelite.asm.attributes.code.instruction.types.IntInstruction in project runelite by runelite.
the class CodeVisitor method visitIntInsn.
@Override
public void visitIntInsn(int opcode, int operand) {
IntInstruction i = (IntInstruction) createInstructionFromOpcode(opcode);
i.setOperand(operand);
}
Aggregations