Class IincInsnNode


  • public class IincInsnNode
    extends AbstractInsnNode
    A node that represents an IINC instruction.
    Author:
    Eric Bruneton
    • Field Detail

      • var

        public int var
        Index of the local variable to be incremented.
      • incr

        public int incr
        Amount to increment the local variable by.
    • Constructor Detail

      • IincInsnNode

        public IincInsnNode​(int var,
                            int incr)
        Constructs a new IincInsnNode.
        Parameters:
        var - index of the local variable to be incremented.
        incr - increment amount to increment the local variable by.