org.objectweb.asm.tree
public class IincInsnNode extends AbstractInsnNode
Field Summary | |
---|---|
int | incr
Amount to increment the local variable by. |
int | var
Index of the local variable to be incremented. |
Constructor Summary | |
---|---|
IincInsnNode(int var, int incr)
Constructs a new {@link IincInsnNode}.
|
Method Summary | |
---|---|
void | accept(MethodVisitor mv) |
int | getType() |
Parameters: var index of the local variable to be incremented. incr increment amount to increment the local variable by.