public class org.objectweb.asm.tree.InsnList implements java.lang.Iterable<org.objectweb.asm.tree.AbstractInsnNode>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.objectweb.asm.tree.InsnList
  super_class: java.lang.Object
{
  private int size;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private org.objectweb.asm.tree.AbstractInsnNode firstInsn;
    descriptor: Lorg/objectweb/asm/tree/AbstractInsnNode;
    flags: (0x0002) ACC_PRIVATE

  private org.objectweb.asm.tree.AbstractInsnNode lastInsn;
    descriptor: Lorg/objectweb/asm/tree/AbstractInsnNode;
    flags: (0x0002) ACC_PRIVATE

  org.objectweb.asm.tree.AbstractInsnNode[] cache;
    descriptor: [Lorg/objectweb/asm/tree/AbstractInsnNode;
    flags: (0x0000) 

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.objectweb.asm.tree.InsnList this
         0: .line 38
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/tree/InsnList;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.objectweb.asm.tree.InsnList this
         0: .line 61
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.size:I
            ireturn
        end local 0 // org.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/tree/InsnList;

  public org.objectweb.asm.tree.AbstractInsnNode getFirst();
    descriptor: ()Lorg/objectweb/asm/tree/AbstractInsnNode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.objectweb.asm.tree.InsnList this
         0: .line 70
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            areturn
        end local 0 // org.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/tree/InsnList;

  public org.objectweb.asm.tree.AbstractInsnNode getLast();
    descriptor: ()Lorg/objectweb/asm/tree/AbstractInsnNode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.objectweb.asm.tree.InsnList this
         0: .line 79
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            areturn
        end local 0 // org.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/tree/InsnList;

  public org.objectweb.asm.tree.AbstractInsnNode get(int);
    descriptor: (I)Lorg/objectweb/asm/tree/AbstractInsnNode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.InsnList this
        start local 1 // int index
         0: .line 93
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.size:I
            if_icmplt 2
         1: .line 94
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 96
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
            ifnonnull 4
         3: .line 97
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.objectweb.asm.tree.InsnList.toArray:()[Lorg/objectweb/asm/tree/AbstractInsnNode;
            putfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
         4: .line 99
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
            iload 1 /* index */
            aaload
            areturn
        end local 1 // int index
        end local 0 // org.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/objectweb/asm/tree/InsnList;
            0    5     1  index  I
    MethodParameters:
       Name  Flags
      index  final

  public boolean contains(org.objectweb.asm.tree.AbstractInsnNode);
    descriptor: (Lorg/objectweb/asm/tree/AbstractInsnNode;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.objectweb.asm.tree.InsnList this
        start local 1 // org.objectweb.asm.tree.AbstractInsnNode insnNode
         0: .line 111
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* currentInsn */
        start local 2 // org.objectweb.asm.tree.AbstractInsnNode currentInsn
         1: .line 112
            goto 3
         2: .line 113
      StackMap locals: org.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 2 /* currentInsn */
            getfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* currentInsn */
         3: .line 112
      StackMap locals:
      StackMap stack:
            aload 2 /* currentInsn */
            ifnull 4
            aload 2 /* currentInsn */
            aload 1 /* insnNode */
            if_acmpne 2
         4: .line 115
      StackMap locals:
      StackMap stack:
            aload 2 /* currentInsn */
            ifnull 5
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_0
            ireturn
        end local 2 // org.objectweb.asm.tree.AbstractInsnNode currentInsn
        end local 1 // org.objectweb.asm.tree.AbstractInsnNode insnNode
        end local 0 // org.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lorg/objectweb/asm/tree/InsnList;
            0    6     1     insnNode  Lorg/objectweb/asm/tree/AbstractInsnNode;
            1    6     2  currentInsn  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
          Name  Flags
      insnNode  final

  public int indexOf(org.objectweb.asm.tree.AbstractInsnNode);
    descriptor: (Lorg/objectweb/asm/tree/AbstractInsnNode;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.InsnList this
        start local 1 // org.objectweb.asm.tree.AbstractInsnNode insnNode
         0: .line 130
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
            ifnonnull 2
         1: .line 131
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.objectweb.asm.tree.InsnList.toArray:()[Lorg/objectweb/asm/tree/AbstractInsnNode;
            putfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
         2: .line 133
      StackMap locals:
      StackMap stack:
            aload 1 /* insnNode */
            getfield org.objectweb.asm.tree.AbstractInsnNode.index:I
            ireturn
        end local 1 // org.objectweb.asm.tree.AbstractInsnNode insnNode
        end local 0 // org.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/objectweb/asm/tree/InsnList;
            0    3     1  insnNode  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
          Name  Flags
      insnNode  final

  public void accept(org.objectweb.asm.MethodVisitor);
    descriptor: (Lorg/objectweb/asm/MethodVisitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.objectweb.asm.tree.InsnList this
        start local 1 // org.objectweb.asm.MethodVisitor methodVisitor
         0: .line 142
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* currentInsn */
        start local 2 // org.objectweb.asm.tree.AbstractInsnNode currentInsn
         1: .line 143
            goto 4
         2: .line 144
      StackMap locals: org.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 2 /* currentInsn */
            aload 1 /* methodVisitor */
            invokevirtual org.objectweb.asm.tree.AbstractInsnNode.accept:(Lorg/objectweb/asm/MethodVisitor;)V
         3: .line 145
            aload 2 /* currentInsn */
            getfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* currentInsn */
         4: .line 143
      StackMap locals:
      StackMap stack:
            aload 2 /* currentInsn */
            ifnonnull 2
         5: .line 147
            return
        end local 2 // org.objectweb.asm.tree.AbstractInsnNode currentInsn
        end local 1 // org.objectweb.asm.MethodVisitor methodVisitor
        end local 0 // org.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lorg/objectweb/asm/tree/InsnList;
            0    6     1  methodVisitor  Lorg/objectweb/asm/MethodVisitor;
            1    6     2    currentInsn  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
               Name  Flags
      methodVisitor  final

  public java.util.ListIterator<org.objectweb.asm.tree.AbstractInsnNode> iterator();
    descriptor: ()Ljava/util/ListIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.objectweb.asm.tree.InsnList this
         0: .line 156
            aload 0 /* this */
            iconst_0
            invokevirtual org.objectweb.asm.tree.InsnList.iterator:(I)Ljava/util/ListIterator;
            areturn
        end local 0 // org.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/tree/InsnList;
    Signature: ()Ljava/util/ListIterator<Lorg/objectweb/asm/tree/AbstractInsnNode;>;

  public java.util.ListIterator<org.objectweb.asm.tree.AbstractInsnNode> iterator(int);
    descriptor: (I)Ljava/util/ListIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.InsnList this
        start local 1 // int index
         0: .line 167
            new org.objectweb.asm.tree.InsnList$InsnListIterator
            dup
            aload 0 /* this */
            iload 1 /* index */
            invokespecial org.objectweb.asm.tree.InsnList$InsnListIterator.<init>:(Lorg/objectweb/asm/tree/InsnList;I)V
            areturn
        end local 1 // int index
        end local 0 // org.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/objectweb/asm/tree/InsnList;
            0    1     1  index  I
    Signature: (I)Ljava/util/ListIterator<Lorg/objectweb/asm/tree/AbstractInsnNode;>;
    MethodParameters:
       Name  Flags
      index  final

  public org.objectweb.asm.tree.AbstractInsnNode[] toArray();
    descriptor: ()[Lorg/objectweb/asm/tree/AbstractInsnNode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // org.objectweb.asm.tree.InsnList this
         0: .line 176
            iconst_0
            istore 1 /* currentInsnIndex */
        start local 1 // int currentInsnIndex
         1: .line 177
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* currentInsn */
        start local 2 // org.objectweb.asm.tree.AbstractInsnNode currentInsn
         2: .line 178
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.size:I
            anewarray org.objectweb.asm.tree.AbstractInsnNode
            astore 3 /* insnNodeArray */
        start local 3 // org.objectweb.asm.tree.AbstractInsnNode[] insnNodeArray
         3: .line 179
            goto 7
         4: .line 180
      StackMap locals: int org.objectweb.asm.tree.AbstractInsnNode org.objectweb.asm.tree.AbstractInsnNode[]
      StackMap stack:
            aload 3 /* insnNodeArray */
            iload 1 /* currentInsnIndex */
            aload 2 /* currentInsn */
            aastore
         5: .line 181
            aload 2 /* currentInsn */
            iload 1 /* currentInsnIndex */
            iinc 1 /* currentInsnIndex */ 1
            putfield org.objectweb.asm.tree.AbstractInsnNode.index:I
         6: .line 182
            aload 2 /* currentInsn */
            getfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* currentInsn */
         7: .line 179
      StackMap locals:
      StackMap stack:
            aload 2 /* currentInsn */
            ifnonnull 4
         8: .line 184
            aload 3 /* insnNodeArray */
            areturn
        end local 3 // org.objectweb.asm.tree.AbstractInsnNode[] insnNodeArray
        end local 2 // org.objectweb.asm.tree.AbstractInsnNode currentInsn
        end local 1 // int currentInsnIndex
        end local 0 // org.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    9     0              this  Lorg/objectweb/asm/tree/InsnList;
            1    9     1  currentInsnIndex  I
            2    9     2       currentInsn  Lorg/objectweb/asm/tree/AbstractInsnNode;
            3    9     3     insnNodeArray  [Lorg/objectweb/asm/tree/AbstractInsnNode;

  public void set(org.objectweb.asm.tree.AbstractInsnNode, org.objectweb.asm.tree.AbstractInsnNode);
    descriptor: (Lorg/objectweb/asm/tree/AbstractInsnNode;Lorg/objectweb/asm/tree/AbstractInsnNode;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // org.objectweb.asm.tree.InsnList this
        start local 1 // org.objectweb.asm.tree.AbstractInsnNode oldInsnNode
        start local 2 // org.objectweb.asm.tree.AbstractInsnNode newInsnNode
         0: .line 194
            aload 1 /* oldInsnNode */
            getfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 3 /* nextInsn */
        start local 3 // org.objectweb.asm.tree.AbstractInsnNode nextInsn
         1: .line 195
            aload 2 /* newInsnNode */
            aload 3 /* nextInsn */
            putfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         2: .line 196
            aload 3 /* nextInsn */
            ifnull 5
         3: .line 197
            aload 3 /* nextInsn */
            aload 2 /* newInsnNode */
            putfield org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         4: .line 198
            goto 6
         5: .line 199
      StackMap locals: org.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 0 /* this */
            aload 2 /* newInsnNode */
            putfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         6: .line 201
      StackMap locals:
      StackMap stack:
            aload 1 /* oldInsnNode */
            getfield org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 4 /* previousInsn */
        start local 4 // org.objectweb.asm.tree.AbstractInsnNode previousInsn
         7: .line 202
            aload 2 /* newInsnNode */
            aload 4 /* previousInsn */
            putfield org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         8: .line 203
            aload 4 /* previousInsn */
            ifnull 11
         9: .line 204
            aload 4 /* previousInsn */
            aload 2 /* newInsnNode */
            putfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        10: .line 205
            goto 12
        11: .line 206
      StackMap locals: org.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 0 /* this */
            aload 2 /* newInsnNode */
            putfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        12: .line 208
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
            ifnull 17
        13: .line 209
            aload 1 /* oldInsnNode */
            getfield org.objectweb.asm.tree.AbstractInsnNode.index:I
            istore 5 /* index */
        start local 5 // int index
        14: .line 210
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
            iload 5 /* index */
            aload 2 /* newInsnNode */
            aastore
        15: .line 211
            aload 2 /* newInsnNode */
            iload 5 /* index */
            putfield org.objectweb.asm.tree.AbstractInsnNode.index:I
        end local 5 // int index
        16: .line 212
            goto 18
        17: .line 213
      StackMap locals:
      StackMap stack:
            aload 2 /* newInsnNode */
            iconst_0
            putfield org.objectweb.asm.tree.AbstractInsnNode.index:I
        18: .line 215
      StackMap locals:
      StackMap stack:
            aload 1 /* oldInsnNode */
            iconst_m1
            putfield org.objectweb.asm.tree.AbstractInsnNode.index:I
        19: .line 216
            aload 1 /* oldInsnNode */
            aconst_null
            putfield org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        20: .line 217
            aload 1 /* oldInsnNode */
            aconst_null
            putfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        21: .line 218
            return
        end local 4 // org.objectweb.asm.tree.AbstractInsnNode previousInsn
        end local 3 // org.objectweb.asm.tree.AbstractInsnNode nextInsn
        end local 2 // org.objectweb.asm.tree.AbstractInsnNode newInsnNode
        end local 1 // org.objectweb.asm.tree.AbstractInsnNode oldInsnNode
        end local 0 // org.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   22     0          this  Lorg/objectweb/asm/tree/InsnList;
            0   22     1   oldInsnNode  Lorg/objectweb/asm/tree/AbstractInsnNode;
            0   22     2   newInsnNode  Lorg/objectweb/asm/tree/AbstractInsnNode;
            1   22     3      nextInsn  Lorg/objectweb/asm/tree/AbstractInsnNode;
            7   22     4  previousInsn  Lorg/objectweb/asm/tree/AbstractInsnNode;
           14   16     5         index  I
    MethodParameters:
             Name  Flags
      oldInsnNode  final
      newInsnNode  final

  public void add(org.objectweb.asm.tree.AbstractInsnNode);
    descriptor: (Lorg/objectweb/asm/tree/AbstractInsnNode;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.InsnList this
        start local 1 // org.objectweb.asm.tree.AbstractInsnNode insnNode
         0: .line 226
            aload 0 /* this */
            dup
            getfield org.objectweb.asm.tree.InsnList.size:I
            iconst_1
            iadd
            putfield org.objectweb.asm.tree.InsnList.size:I
         1: .line 227
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            ifnonnull 5
         2: .line 228
            aload 0 /* this */
            aload 1 /* insnNode */
            putfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         3: .line 229
            aload 0 /* this */
            aload 1 /* insnNode */
            putfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         4: .line 230
            goto 7
         5: .line 231
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            aload 1 /* insnNode */
            putfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         6: .line 232
            aload 1 /* insnNode */
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            putfield org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         7: .line 234
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* insnNode */
            putfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         8: .line 235
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
         9: .line 236
            aload 1 /* insnNode */
            iconst_0
            putfield org.objectweb.asm.tree.AbstractInsnNode.index:I
        10: .line 237
            return
        end local 1 // org.objectweb.asm.tree.AbstractInsnNode insnNode
        end local 0 // org.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Lorg/objectweb/asm/tree/InsnList;
            0   11     1  insnNode  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
          Name  Flags
      insnNode  final

  public void add(org.objectweb.asm.tree.InsnList);
    descriptor: (Lorg/objectweb/asm/tree/InsnList;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.objectweb.asm.tree.InsnList this
        start local 1 // org.objectweb.asm.tree.InsnList insnList
         0: .line 246
            aload 1 /* insnList */
            getfield org.objectweb.asm.tree.InsnList.size:I
            ifne 2
         1: .line 247
            return
         2: .line 249
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.objectweb.asm.tree.InsnList.size:I
            aload 1 /* insnList */
            getfield org.objectweb.asm.tree.InsnList.size:I
            iadd
            putfield org.objectweb.asm.tree.InsnList.size:I
         3: .line 250
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            ifnonnull 7
         4: .line 251
            aload 0 /* this */
            aload 1 /* insnList */
            getfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            putfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         5: .line 252
            aload 0 /* this */
            aload 1 /* insnList */
            getfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            putfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         6: .line 253
            goto 11
         7: .line 254
      StackMap locals:
      StackMap stack:
            aload 1 /* insnList */
            getfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* firstInsnListElement */
        start local 2 // org.objectweb.asm.tree.AbstractInsnNode firstInsnListElement
         8: .line 255
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            aload 2 /* firstInsnListElement */
            putfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         9: .line 256
            aload 2 /* firstInsnListElement */
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            putfield org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        10: .line 257
            aload 0 /* this */
            aload 1 /* insnList */
            getfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            putfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        end local 2 // org.objectweb.asm.tree.AbstractInsnNode firstInsnListElement
        11: .line 259
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
        12: .line 260
            aload 1 /* insnList */
            iconst_0
            invokevirtual org.objectweb.asm.tree.InsnList.removeAll:(Z)V
        13: .line 261
            return
        end local 1 // org.objectweb.asm.tree.InsnList insnList
        end local 0 // org.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   14     0                  this  Lorg/objectweb/asm/tree/InsnList;
            0   14     1              insnList  Lorg/objectweb/asm/tree/InsnList;
            8   11     2  firstInsnListElement  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
          Name  Flags
      insnList  final

  public void insert(org.objectweb.asm.tree.AbstractInsnNode);
    descriptor: (Lorg/objectweb/asm/tree/AbstractInsnNode;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.InsnList this
        start local 1 // org.objectweb.asm.tree.AbstractInsnNode insnNode
         0: .line 269
            aload 0 /* this */
            dup
            getfield org.objectweb.asm.tree.InsnList.size:I
            iconst_1
            iadd
            putfield org.objectweb.asm.tree.InsnList.size:I
         1: .line 270
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            ifnonnull 5
         2: .line 271
            aload 0 /* this */
            aload 1 /* insnNode */
            putfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         3: .line 272
            aload 0 /* this */
            aload 1 /* insnNode */
            putfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         4: .line 273
            goto 7
         5: .line 274
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            aload 1 /* insnNode */
            putfield org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         6: .line 275
            aload 1 /* insnNode */
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            putfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         7: .line 277
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* insnNode */
            putfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         8: .line 278
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
         9: .line 279
            aload 1 /* insnNode */
            iconst_0
            putfield org.objectweb.asm.tree.AbstractInsnNode.index:I
        10: .line 280
            return
        end local 1 // org.objectweb.asm.tree.AbstractInsnNode insnNode
        end local 0 // org.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Lorg/objectweb/asm/tree/InsnList;
            0   11     1  insnNode  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
          Name  Flags
      insnNode  final

  public void insert(org.objectweb.asm.tree.InsnList);
    descriptor: (Lorg/objectweb/asm/tree/InsnList;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.objectweb.asm.tree.InsnList this
        start local 1 // org.objectweb.asm.tree.InsnList insnList
         0: .line 289
            aload 1 /* insnList */
            getfield org.objectweb.asm.tree.InsnList.size:I
            ifne 2
         1: .line 290
            return
         2: .line 292
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.objectweb.asm.tree.InsnList.size:I
            aload 1 /* insnList */
            getfield org.objectweb.asm.tree.InsnList.size:I
            iadd
            putfield org.objectweb.asm.tree.InsnList.size:I
         3: .line 293
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            ifnonnull 7
         4: .line 294
            aload 0 /* this */
            aload 1 /* insnList */
            getfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            putfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         5: .line 295
            aload 0 /* this */
            aload 1 /* insnList */
            getfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            putfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         6: .line 296
            goto 11
         7: .line 297
      StackMap locals:
      StackMap stack:
            aload 1 /* insnList */
            getfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* lastInsnListElement */
        start local 2 // org.objectweb.asm.tree.AbstractInsnNode lastInsnListElement
         8: .line 298
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            aload 2 /* lastInsnListElement */
            putfield org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         9: .line 299
            aload 2 /* lastInsnListElement */
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            putfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        10: .line 300
            aload 0 /* this */
            aload 1 /* insnList */
            getfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            putfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        end local 2 // org.objectweb.asm.tree.AbstractInsnNode lastInsnListElement
        11: .line 302
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
        12: .line 303
            aload 1 /* insnList */
            iconst_0
            invokevirtual org.objectweb.asm.tree.InsnList.removeAll:(Z)V
        13: .line 304
            return
        end local 1 // org.objectweb.asm.tree.InsnList insnList
        end local 0 // org.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   14     0                 this  Lorg/objectweb/asm/tree/InsnList;
            0   14     1             insnList  Lorg/objectweb/asm/tree/InsnList;
            8   11     2  lastInsnListElement  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
          Name  Flags
      insnList  final

  public void insert(org.objectweb.asm.tree.AbstractInsnNode, org.objectweb.asm.tree.AbstractInsnNode);
    descriptor: (Lorg/objectweb/asm/tree/AbstractInsnNode;Lorg/objectweb/asm/tree/AbstractInsnNode;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.objectweb.asm.tree.InsnList this
        start local 1 // org.objectweb.asm.tree.AbstractInsnNode previousInsn
        start local 2 // org.objectweb.asm.tree.AbstractInsnNode insnNode
         0: .line 314
            aload 0 /* this */
            dup
            getfield org.objectweb.asm.tree.InsnList.size:I
            iconst_1
            iadd
            putfield org.objectweb.asm.tree.InsnList.size:I
         1: .line 315
            aload 1 /* previousInsn */
            getfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 3 /* nextInsn */
        start local 3 // org.objectweb.asm.tree.AbstractInsnNode nextInsn
         2: .line 316
            aload 3 /* nextInsn */
            ifnonnull 5
         3: .line 317
            aload 0 /* this */
            aload 2 /* insnNode */
            putfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         4: .line 318
            goto 6
         5: .line 319
      StackMap locals: org.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 3 /* nextInsn */
            aload 2 /* insnNode */
            putfield org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         6: .line 321
      StackMap locals:
      StackMap stack:
            aload 1 /* previousInsn */
            aload 2 /* insnNode */
            putfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         7: .line 322
            aload 2 /* insnNode */
            aload 3 /* nextInsn */
            putfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         8: .line 323
            aload 2 /* insnNode */
            aload 1 /* previousInsn */
            putfield org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         9: .line 324
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
        10: .line 325
            aload 2 /* insnNode */
            iconst_0
            putfield org.objectweb.asm.tree.AbstractInsnNode.index:I
        11: .line 326
            return
        end local 3 // org.objectweb.asm.tree.AbstractInsnNode nextInsn
        end local 2 // org.objectweb.asm.tree.AbstractInsnNode insnNode
        end local 1 // org.objectweb.asm.tree.AbstractInsnNode previousInsn
        end local 0 // org.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   12     0          this  Lorg/objectweb/asm/tree/InsnList;
            0   12     1  previousInsn  Lorg/objectweb/asm/tree/AbstractInsnNode;
            0   12     2      insnNode  Lorg/objectweb/asm/tree/AbstractInsnNode;
            2   12     3      nextInsn  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
              Name  Flags
      previousInsn  final
      insnNode      final

  public void insert(org.objectweb.asm.tree.AbstractInsnNode, org.objectweb.asm.tree.InsnList);
    descriptor: (Lorg/objectweb/asm/tree/AbstractInsnNode;Lorg/objectweb/asm/tree/InsnList;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // org.objectweb.asm.tree.InsnList this
        start local 1 // org.objectweb.asm.tree.AbstractInsnNode previousInsn
        start local 2 // org.objectweb.asm.tree.InsnList insnList
         0: .line 337
            aload 2 /* insnList */
            getfield org.objectweb.asm.tree.InsnList.size:I
            ifne 2
         1: .line 338
            return
         2: .line 340
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.objectweb.asm.tree.InsnList.size:I
            aload 2 /* insnList */
            getfield org.objectweb.asm.tree.InsnList.size:I
            iadd
            putfield org.objectweb.asm.tree.InsnList.size:I
         3: .line 341
            aload 2 /* insnList */
            getfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 3 /* firstInsnListElement */
        start local 3 // org.objectweb.asm.tree.AbstractInsnNode firstInsnListElement
         4: .line 342
            aload 2 /* insnList */
            getfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 4 /* lastInsnListElement */
        start local 4 // org.objectweb.asm.tree.AbstractInsnNode lastInsnListElement
         5: .line 343
            aload 1 /* previousInsn */
            getfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 5 /* nextInsn */
        start local 5 // org.objectweb.asm.tree.AbstractInsnNode nextInsn
         6: .line 344
            aload 5 /* nextInsn */
            ifnonnull 9
         7: .line 345
            aload 0 /* this */
            aload 4 /* lastInsnListElement */
            putfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         8: .line 346
            goto 10
         9: .line 347
      StackMap locals: org.objectweb.asm.tree.AbstractInsnNode org.objectweb.asm.tree.AbstractInsnNode org.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 5 /* nextInsn */
            aload 4 /* lastInsnListElement */
            putfield org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        10: .line 349
      StackMap locals:
      StackMap stack:
            aload 1 /* previousInsn */
            aload 3 /* firstInsnListElement */
            putfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        11: .line 350
            aload 4 /* lastInsnListElement */
            aload 5 /* nextInsn */
            putfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        12: .line 351
            aload 3 /* firstInsnListElement */
            aload 1 /* previousInsn */
            putfield org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        13: .line 352
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
        14: .line 353
            aload 2 /* insnList */
            iconst_0
            invokevirtual org.objectweb.asm.tree.InsnList.removeAll:(Z)V
        15: .line 354
            return
        end local 5 // org.objectweb.asm.tree.AbstractInsnNode nextInsn
        end local 4 // org.objectweb.asm.tree.AbstractInsnNode lastInsnListElement
        end local 3 // org.objectweb.asm.tree.AbstractInsnNode firstInsnListElement
        end local 2 // org.objectweb.asm.tree.InsnList insnList
        end local 1 // org.objectweb.asm.tree.AbstractInsnNode previousInsn
        end local 0 // org.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   16     0                  this  Lorg/objectweb/asm/tree/InsnList;
            0   16     1          previousInsn  Lorg/objectweb/asm/tree/AbstractInsnNode;
            0   16     2              insnList  Lorg/objectweb/asm/tree/InsnList;
            4   16     3  firstInsnListElement  Lorg/objectweb/asm/tree/AbstractInsnNode;
            5   16     4   lastInsnListElement  Lorg/objectweb/asm/tree/AbstractInsnNode;
            6   16     5              nextInsn  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
              Name  Flags
      previousInsn  final
      insnList      final

  public void insertBefore(org.objectweb.asm.tree.AbstractInsnNode, org.objectweb.asm.tree.AbstractInsnNode);
    descriptor: (Lorg/objectweb/asm/tree/AbstractInsnNode;Lorg/objectweb/asm/tree/AbstractInsnNode;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.objectweb.asm.tree.InsnList this
        start local 1 // org.objectweb.asm.tree.AbstractInsnNode nextInsn
        start local 2 // org.objectweb.asm.tree.AbstractInsnNode insnNode
         0: .line 364
            aload 0 /* this */
            dup
            getfield org.objectweb.asm.tree.InsnList.size:I
            iconst_1
            iadd
            putfield org.objectweb.asm.tree.InsnList.size:I
         1: .line 365
            aload 1 /* nextInsn */
            getfield org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 3 /* previousInsn */
        start local 3 // org.objectweb.asm.tree.AbstractInsnNode previousInsn
         2: .line 366
            aload 3 /* previousInsn */
            ifnonnull 5
         3: .line 367
            aload 0 /* this */
            aload 2 /* insnNode */
            putfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         4: .line 368
            goto 6
         5: .line 369
      StackMap locals: org.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 3 /* previousInsn */
            aload 2 /* insnNode */
            putfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         6: .line 371
      StackMap locals:
      StackMap stack:
            aload 1 /* nextInsn */
            aload 2 /* insnNode */
            putfield org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         7: .line 372
            aload 2 /* insnNode */
            aload 1 /* nextInsn */
            putfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         8: .line 373
            aload 2 /* insnNode */
            aload 3 /* previousInsn */
            putfield org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         9: .line 374
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
        10: .line 375
            aload 2 /* insnNode */
            iconst_0
            putfield org.objectweb.asm.tree.AbstractInsnNode.index:I
        11: .line 376
            return
        end local 3 // org.objectweb.asm.tree.AbstractInsnNode previousInsn
        end local 2 // org.objectweb.asm.tree.AbstractInsnNode insnNode
        end local 1 // org.objectweb.asm.tree.AbstractInsnNode nextInsn
        end local 0 // org.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   12     0          this  Lorg/objectweb/asm/tree/InsnList;
            0   12     1      nextInsn  Lorg/objectweb/asm/tree/AbstractInsnNode;
            0   12     2      insnNode  Lorg/objectweb/asm/tree/AbstractInsnNode;
            2   12     3  previousInsn  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
          Name  Flags
      nextInsn  final
      insnNode  final

  public void insertBefore(org.objectweb.asm.tree.AbstractInsnNode, org.objectweb.asm.tree.InsnList);
    descriptor: (Lorg/objectweb/asm/tree/AbstractInsnNode;Lorg/objectweb/asm/tree/InsnList;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // org.objectweb.asm.tree.InsnList this
        start local 1 // org.objectweb.asm.tree.AbstractInsnNode nextInsn
        start local 2 // org.objectweb.asm.tree.InsnList insnList
         0: .line 387
            aload 2 /* insnList */
            getfield org.objectweb.asm.tree.InsnList.size:I
            ifne 2
         1: .line 388
            return
         2: .line 390
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.objectweb.asm.tree.InsnList.size:I
            aload 2 /* insnList */
            getfield org.objectweb.asm.tree.InsnList.size:I
            iadd
            putfield org.objectweb.asm.tree.InsnList.size:I
         3: .line 391
            aload 2 /* insnList */
            getfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 3 /* firstInsnListElement */
        start local 3 // org.objectweb.asm.tree.AbstractInsnNode firstInsnListElement
         4: .line 392
            aload 2 /* insnList */
            getfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 4 /* lastInsnListElement */
        start local 4 // org.objectweb.asm.tree.AbstractInsnNode lastInsnListElement
         5: .line 393
            aload 1 /* nextInsn */
            getfield org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 5 /* previousInsn */
        start local 5 // org.objectweb.asm.tree.AbstractInsnNode previousInsn
         6: .line 394
            aload 5 /* previousInsn */
            ifnonnull 9
         7: .line 395
            aload 0 /* this */
            aload 3 /* firstInsnListElement */
            putfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         8: .line 396
            goto 10
         9: .line 397
      StackMap locals: org.objectweb.asm.tree.AbstractInsnNode org.objectweb.asm.tree.AbstractInsnNode org.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 5 /* previousInsn */
            aload 3 /* firstInsnListElement */
            putfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        10: .line 399
      StackMap locals:
      StackMap stack:
            aload 1 /* nextInsn */
            aload 4 /* lastInsnListElement */
            putfield org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        11: .line 400
            aload 4 /* lastInsnListElement */
            aload 1 /* nextInsn */
            putfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        12: .line 401
            aload 3 /* firstInsnListElement */
            aload 5 /* previousInsn */
            putfield org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        13: .line 402
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
        14: .line 403
            aload 2 /* insnList */
            iconst_0
            invokevirtual org.objectweb.asm.tree.InsnList.removeAll:(Z)V
        15: .line 404
            return
        end local 5 // org.objectweb.asm.tree.AbstractInsnNode previousInsn
        end local 4 // org.objectweb.asm.tree.AbstractInsnNode lastInsnListElement
        end local 3 // org.objectweb.asm.tree.AbstractInsnNode firstInsnListElement
        end local 2 // org.objectweb.asm.tree.InsnList insnList
        end local 1 // org.objectweb.asm.tree.AbstractInsnNode nextInsn
        end local 0 // org.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   16     0                  this  Lorg/objectweb/asm/tree/InsnList;
            0   16     1              nextInsn  Lorg/objectweb/asm/tree/AbstractInsnNode;
            0   16     2              insnList  Lorg/objectweb/asm/tree/InsnList;
            4   16     3  firstInsnListElement  Lorg/objectweb/asm/tree/AbstractInsnNode;
            5   16     4   lastInsnListElement  Lorg/objectweb/asm/tree/AbstractInsnNode;
            6   16     5          previousInsn  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
          Name  Flags
      nextInsn  final
      insnList  final

  public void remove(org.objectweb.asm.tree.AbstractInsnNode);
    descriptor: (Lorg/objectweb/asm/tree/AbstractInsnNode;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.objectweb.asm.tree.InsnList this
        start local 1 // org.objectweb.asm.tree.AbstractInsnNode insnNode
         0: .line 412
            aload 0 /* this */
            dup
            getfield org.objectweb.asm.tree.InsnList.size:I
            iconst_1
            isub
            putfield org.objectweb.asm.tree.InsnList.size:I
         1: .line 413
            aload 1 /* insnNode */
            getfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* nextInsn */
        start local 2 // org.objectweb.asm.tree.AbstractInsnNode nextInsn
         2: .line 414
            aload 1 /* insnNode */
            getfield org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 3 /* previousInsn */
        start local 3 // org.objectweb.asm.tree.AbstractInsnNode previousInsn
         3: .line 415
            aload 2 /* nextInsn */
            ifnonnull 11
         4: .line 416
            aload 3 /* previousInsn */
            ifnonnull 8
         5: .line 417
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         6: .line 418
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         7: .line 419
            goto 17
         8: .line 420
      StackMap locals: org.objectweb.asm.tree.AbstractInsnNode org.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 3 /* previousInsn */
            aconst_null
            putfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         9: .line 421
            aload 0 /* this */
            aload 3 /* previousInsn */
            putfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        10: .line 423
            goto 17
        11: .line 424
      StackMap locals:
      StackMap stack:
            aload 3 /* previousInsn */
            ifnonnull 15
        12: .line 425
            aload 0 /* this */
            aload 2 /* nextInsn */
            putfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        13: .line 426
            aload 2 /* nextInsn */
            aconst_null
            putfield org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        14: .line 427
            goto 17
        15: .line 428
      StackMap locals:
      StackMap stack:
            aload 3 /* previousInsn */
            aload 2 /* nextInsn */
            putfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        16: .line 429
            aload 2 /* nextInsn */
            aload 3 /* previousInsn */
            putfield org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        17: .line 432
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
        18: .line 433
            aload 1 /* insnNode */
            iconst_m1
            putfield org.objectweb.asm.tree.AbstractInsnNode.index:I
        19: .line 434
            aload 1 /* insnNode */
            aconst_null
            putfield org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        20: .line 435
            aload 1 /* insnNode */
            aconst_null
            putfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        21: .line 436
            return
        end local 3 // org.objectweb.asm.tree.AbstractInsnNode previousInsn
        end local 2 // org.objectweb.asm.tree.AbstractInsnNode nextInsn
        end local 1 // org.objectweb.asm.tree.AbstractInsnNode insnNode
        end local 0 // org.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   22     0          this  Lorg/objectweb/asm/tree/InsnList;
            0   22     1      insnNode  Lorg/objectweb/asm/tree/AbstractInsnNode;
            2   22     2      nextInsn  Lorg/objectweb/asm/tree/AbstractInsnNode;
            3   22     3  previousInsn  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
          Name  Flags
      insnNode  final

  void removeAll(boolean);
    descriptor: (Z)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.objectweb.asm.tree.InsnList this
        start local 1 // boolean mark
         0: .line 444
            iload 1 /* mark */
            ifeq 9
         1: .line 445
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* currentInsn */
        start local 2 // org.objectweb.asm.tree.AbstractInsnNode currentInsn
         2: .line 446
            goto 8
         3: .line 447
      StackMap locals: org.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 2 /* currentInsn */
            getfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 3 /* next */
        start local 3 // org.objectweb.asm.tree.AbstractInsnNode next
         4: .line 448
            aload 2 /* currentInsn */
            iconst_m1
            putfield org.objectweb.asm.tree.AbstractInsnNode.index:I
         5: .line 449
            aload 2 /* currentInsn */
            aconst_null
            putfield org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         6: .line 450
            aload 2 /* currentInsn */
            aconst_null
            putfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
         7: .line 451
            aload 3 /* next */
            astore 2 /* currentInsn */
        end local 3 // org.objectweb.asm.tree.AbstractInsnNode next
         8: .line 446
      StackMap locals:
      StackMap stack:
            aload 2 /* currentInsn */
            ifnonnull 3
        end local 2 // org.objectweb.asm.tree.AbstractInsnNode currentInsn
         9: .line 454
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield org.objectweb.asm.tree.InsnList.size:I
        10: .line 455
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        11: .line 456
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.lastInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
        12: .line 457
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
        13: .line 458
            return
        end local 1 // boolean mark
        end local 0 // org.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   14     0         this  Lorg/objectweb/asm/tree/InsnList;
            0   14     1         mark  Z
            2    9     2  currentInsn  Lorg/objectweb/asm/tree/AbstractInsnNode;
            4    8     3         next  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
      Name  Flags
      mark  final

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.objectweb.asm.tree.InsnList this
         0: .line 462
            aload 0 /* this */
            iconst_0
            invokevirtual org.objectweb.asm.tree.InsnList.removeAll:(Z)V
         1: .line 463
            return
        end local 0 // org.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/objectweb/asm/tree/InsnList;

  public void resetLabels();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // org.objectweb.asm.tree.InsnList this
         0: .line 470
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.firstInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 1 /* currentInsn */
        start local 1 // org.objectweb.asm.tree.AbstractInsnNode currentInsn
         1: .line 471
            goto 5
         2: .line 472
      StackMap locals: org.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 1 /* currentInsn */
            instanceof org.objectweb.asm.tree.LabelNode
            ifeq 4
         3: .line 473
            aload 1 /* currentInsn */
            checkcast org.objectweb.asm.tree.LabelNode
            invokevirtual org.objectweb.asm.tree.LabelNode.resetLabel:()V
         4: .line 475
      StackMap locals:
      StackMap stack:
            aload 1 /* currentInsn */
            getfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 1 /* currentInsn */
         5: .line 471
      StackMap locals:
      StackMap stack:
            aload 1 /* currentInsn */
            ifnonnull 2
         6: .line 477
            return
        end local 1 // org.objectweb.asm.tree.AbstractInsnNode currentInsn
        end local 0 // org.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         this  Lorg/objectweb/asm/tree/InsnList;
            1    7     1  currentInsn  Lorg/objectweb/asm/tree/AbstractInsnNode;

  public java.util.Iterator iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.objectweb.asm.tree.InsnList.iterator:()Ljava/util/ListIterator;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Ljava/lang/Iterable<Lorg/objectweb/asm/tree/AbstractInsnNode;>;
SourceFile: "InsnList.java"
NestMembers:
  org.objectweb.asm.tree.InsnList$InsnListIterator
InnerClasses:
  private final InsnListIterator = org.objectweb.asm.tree.InsnList$InsnListIterator of org.objectweb.asm.tree.InsnList