| |
|
| java.lang.Object com.tc.asm.tree.AbstractInsnNode com.tc.asm.tree.IincInsnNode
IincInsnNode | public class IincInsnNode extends AbstractInsnNode (Code) | | A node that represents an IINC instruction.
author: Eric Bruneton |
Field Summary | |
public int | incr Amount to increment the local variable by. | public int | var Index of the local variable to be incremented. |
incr | public int incr(Code) | | Amount to increment the local variable by.
|
var | public int var(Code) | | Index of the local variable to be incremented.
|
IincInsnNode | public IincInsnNode(int var, int incr)(Code) | | Constructs a new
IincInsnNode .
Parameters: var - index of the local variable to be incremented. Parameters: incr - increment amount to increment the local variable by. |
getType | public int getType()(Code) | | |
|
|
|