VarInsnNodepublic class VarInsnNode extends AbstractInsnNode A node that represents a local variable instruction. A local variable
instruction is an instruction that loads or stores the value of a local
variable. |
Fields Summary |
---|
public int | varThe operand of this instruction. This operand is the index of a local
variable. |
Constructors Summary |
---|
public VarInsnNode(int opcode, int var)Visits a local variable instruction. A local variable instruction is an
instruction that loads or stores the value of a local variable.
super(opcode);
this.var = var;
|
|