use of net.runelite.asm.attributes.code.instruction.types.TypeInstruction in project runelite by runelite.
the class CodeVisitor method visitTypeInsn.
@Override
public void visitTypeInsn(int opcode, String type) {
TypeInstruction i = (TypeInstruction) createInstructionFromOpcode(opcode);
Type t = Type.fromAsmString(type);
i.setType(t);
}
Aggregations