Search in sources :

Example 1 with IntInstruction

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);
}
Also used : IntInstruction(net.runelite.asm.attributes.code.instruction.types.IntInstruction)

Aggregations

IntInstruction (net.runelite.asm.attributes.code.instruction.types.IntInstruction)1