public class org.objectweb.asm.tree.InsnList
  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 first;
    descriptor: Lorg/objectweb/asm/tree/AbstractInsnNode;
    flags: (0x0002) ACC_PRIVATE

  private org.objectweb.asm.tree.AbstractInsnNode last;
    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 41
            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 70
            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 80
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.first: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 90
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.last: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 106
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.size:I
            if_icmplt 2
         1: .line 107
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 109
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
            ifnonnull 4
         3: .line 110
            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 112
      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 insn
         0: .line 125
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* i */
        start local 2 // org.objectweb.asm.tree.AbstractInsnNode i
         1: .line 126
            goto 3
         2: .line 127
      StackMap locals: org.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 2 /* i */
            getfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* i */
         3: .line 126
      StackMap locals:
      StackMap stack:
            aload 2 /* i */
            ifnull 4
            aload 2 /* i */
            aload 1 /* insn */
            if_acmpne 2
         4: .line 129
      StackMap locals:
      StackMap stack:
            aload 2 /* i */
            ifnull 5
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_0
            ireturn
        end local 2 // org.objectweb.asm.tree.AbstractInsnNode i
        end local 1 // org.objectweb.asm.tree.AbstractInsnNode insn
        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  insn  Lorg/objectweb/asm/tree/AbstractInsnNode;
            1    6     2     i  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
      Name  Flags
      insn  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 insn
         0: .line 147
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
            ifnonnull 2
         1: .line 148
            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 150
      StackMap locals:
      StackMap stack:
            aload 1 /* insn */
            getfield org.objectweb.asm.tree.AbstractInsnNode.index:I
            ireturn
        end local 1 // org.objectweb.asm.tree.AbstractInsnNode insn
        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  insn  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
      Name  Flags
      insn  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 mv
         0: .line 160
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* insn */
        start local 2 // org.objectweb.asm.tree.AbstractInsnNode insn
         1: .line 161
            goto 4
         2: .line 162
      StackMap locals: org.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 2 /* insn */
            aload 1 /* mv */
            invokevirtual org.objectweb.asm.tree.AbstractInsnNode.accept:(Lorg/objectweb/asm/MethodVisitor;)V
         3: .line 163
            aload 2 /* insn */
            getfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* insn */
         4: .line 161
      StackMap locals:
      StackMap stack:
            aload 2 /* insn */
            ifnonnull 2
         5: .line 165
            return
        end local 2 // org.objectweb.asm.tree.AbstractInsnNode insn
        end local 1 // org.objectweb.asm.MethodVisitor mv
        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    mv  Lorg/objectweb/asm/MethodVisitor;
            1    6     2  insn  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
      Name  Flags
      mv    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 173
            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 183
            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  

  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 192
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         1: .line 193
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* elem */
        start local 2 // org.objectweb.asm.tree.AbstractInsnNode elem
         2: .line 194
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.size:I
            anewarray org.objectweb.asm.tree.AbstractInsnNode
            astore 3 /* insns */
        start local 3 // org.objectweb.asm.tree.AbstractInsnNode[] insns
         3: .line 195
            goto 7
         4: .line 196
      StackMap locals: int org.objectweb.asm.tree.AbstractInsnNode org.objectweb.asm.tree.AbstractInsnNode[]
      StackMap stack:
            aload 3 /* insns */
            iload 1 /* i */
            aload 2 /* elem */
            aastore
         5: .line 197
            aload 2 /* elem */
            iload 1 /* i */
            iinc 1 /* i */ 1
            putfield org.objectweb.asm.tree.AbstractInsnNode.index:I
         6: .line 198
            aload 2 /* elem */
            getfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* elem */
         7: .line 195
      StackMap locals:
      StackMap stack:
            aload 2 /* elem */
            ifnonnull 4
         8: .line 200
            aload 3 /* insns */
            areturn
        end local 3 // org.objectweb.asm.tree.AbstractInsnNode[] insns
        end local 2 // org.objectweb.asm.tree.AbstractInsnNode elem
        end local 1 // int i
        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      i  I
            2    9     2   elem  Lorg/objectweb/asm/tree/AbstractInsnNode;
            3    9     3  insns  [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 location
        start local 2 // org.objectweb.asm.tree.AbstractInsnNode insn
         0: .line 213
            aload 1 /* location */
            getfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 3 /* next */
        start local 3 // org.objectweb.asm.tree.AbstractInsnNode next
         1: .line 214
            aload 2 /* insn */
            aload 3 /* next */
            putfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
         2: .line 215
            aload 3 /* next */
            ifnull 5
         3: .line 216
            aload 3 /* next */
            aload 2 /* insn */
            putfield org.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/objectweb/asm/tree/AbstractInsnNode;
         4: .line 217
            goto 6
         5: .line 218
      StackMap locals: org.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 0 /* this */
            aload 2 /* insn */
            putfield org.objectweb.asm.tree.InsnList.last:Lorg/objectweb/asm/tree/AbstractInsnNode;
         6: .line 220
      StackMap locals:
      StackMap stack:
            aload 1 /* location */
            getfield org.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 4 /* prev */
        start local 4 // org.objectweb.asm.tree.AbstractInsnNode prev
         7: .line 221
            aload 2 /* insn */
            aload 4 /* prev */
            putfield org.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/objectweb/asm/tree/AbstractInsnNode;
         8: .line 222
            aload 4 /* prev */
            ifnull 11
         9: .line 223
            aload 4 /* prev */
            aload 2 /* insn */
            putfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
        10: .line 224
            goto 12
        11: .line 225
      StackMap locals: org.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 0 /* this */
            aload 2 /* insn */
            putfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
        12: .line 227
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
            ifnull 17
        13: .line 228
            aload 1 /* location */
            getfield org.objectweb.asm.tree.AbstractInsnNode.index:I
            istore 5 /* index */
        start local 5 // int index
        14: .line 229
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
            iload 5 /* index */
            aload 2 /* insn */
            aastore
        15: .line 230
            aload 2 /* insn */
            iload 5 /* index */
            putfield org.objectweb.asm.tree.AbstractInsnNode.index:I
        end local 5 // int index
        16: .line 231
            goto 18
        17: .line 232
      StackMap locals:
      StackMap stack:
            aload 2 /* insn */
            iconst_0
            putfield org.objectweb.asm.tree.AbstractInsnNode.index:I
        18: .line 234
      StackMap locals:
      StackMap stack:
            aload 1 /* location */
            iconst_m1
            putfield org.objectweb.asm.tree.AbstractInsnNode.index:I
        19: .line 235
            aload 1 /* location */
            aconst_null
            putfield org.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/objectweb/asm/tree/AbstractInsnNode;
        20: .line 236
            aload 1 /* location */
            aconst_null
            putfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
        21: .line 237
            return
        end local 4 // org.objectweb.asm.tree.AbstractInsnNode prev
        end local 3 // org.objectweb.asm.tree.AbstractInsnNode next
        end local 2 // org.objectweb.asm.tree.AbstractInsnNode insn
        end local 1 // org.objectweb.asm.tree.AbstractInsnNode location
        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  location  Lorg/objectweb/asm/tree/AbstractInsnNode;
            0   22     2      insn  Lorg/objectweb/asm/tree/AbstractInsnNode;
            1   22     3      next  Lorg/objectweb/asm/tree/AbstractInsnNode;
            7   22     4      prev  Lorg/objectweb/asm/tree/AbstractInsnNode;
           14   16     5     index  I
    MethodParameters:
          Name  Flags
      location  final
      insn      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 insn
         0: .line 247
            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 248
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.last:Lorg/objectweb/asm/tree/AbstractInsnNode;
            ifnonnull 5
         2: .line 249
            aload 0 /* this */
            aload 1 /* insn */
            putfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
         3: .line 250
            aload 0 /* this */
            aload 1 /* insn */
            putfield org.objectweb.asm.tree.InsnList.last:Lorg/objectweb/asm/tree/AbstractInsnNode;
         4: .line 251
            goto 7
         5: .line 252
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.last:Lorg/objectweb/asm/tree/AbstractInsnNode;
            aload 1 /* insn */
            putfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
         6: .line 253
            aload 1 /* insn */
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.last:Lorg/objectweb/asm/tree/AbstractInsnNode;
            putfield org.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/objectweb/asm/tree/AbstractInsnNode;
         7: .line 255
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* insn */
            putfield org.objectweb.asm.tree.InsnList.last:Lorg/objectweb/asm/tree/AbstractInsnNode;
         8: .line 256
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
         9: .line 257
            aload 1 /* insn */
            iconst_0
            putfield org.objectweb.asm.tree.AbstractInsnNode.index:I
        10: .line 258
            return
        end local 1 // org.objectweb.asm.tree.AbstractInsnNode insn
        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  insn  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
      Name  Flags
      insn  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 insns
         0: .line 268
            aload 1 /* insns */
            getfield org.objectweb.asm.tree.InsnList.size:I
            ifne 2
         1: .line 269
            return
         2: .line 271
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.objectweb.asm.tree.InsnList.size:I
            aload 1 /* insns */
            getfield org.objectweb.asm.tree.InsnList.size:I
            iadd
            putfield org.objectweb.asm.tree.InsnList.size:I
         3: .line 272
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.last:Lorg/objectweb/asm/tree/AbstractInsnNode;
            ifnonnull 7
         4: .line 273
            aload 0 /* this */
            aload 1 /* insns */
            getfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
            putfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
         5: .line 274
            aload 0 /* this */
            aload 1 /* insns */
            getfield org.objectweb.asm.tree.InsnList.last:Lorg/objectweb/asm/tree/AbstractInsnNode;
            putfield org.objectweb.asm.tree.InsnList.last:Lorg/objectweb/asm/tree/AbstractInsnNode;
         6: .line 275
            goto 11
         7: .line 276
      StackMap locals:
      StackMap stack:
            aload 1 /* insns */
            getfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* elem */
        start local 2 // org.objectweb.asm.tree.AbstractInsnNode elem
         8: .line 277
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.last:Lorg/objectweb/asm/tree/AbstractInsnNode;
            aload 2 /* elem */
            putfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
         9: .line 278
            aload 2 /* elem */
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.last:Lorg/objectweb/asm/tree/AbstractInsnNode;
            putfield org.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/objectweb/asm/tree/AbstractInsnNode;
        10: .line 279
            aload 0 /* this */
            aload 1 /* insns */
            getfield org.objectweb.asm.tree.InsnList.last:Lorg/objectweb/asm/tree/AbstractInsnNode;
            putfield org.objectweb.asm.tree.InsnList.last:Lorg/objectweb/asm/tree/AbstractInsnNode;
        end local 2 // org.objectweb.asm.tree.AbstractInsnNode elem
        11: .line 281
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
        12: .line 282
            aload 1 /* insns */
            iconst_0
            invokevirtual org.objectweb.asm.tree.InsnList.removeAll:(Z)V
        13: .line 283
            return
        end local 1 // org.objectweb.asm.tree.InsnList insns
        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  insns  Lorg/objectweb/asm/tree/InsnList;
            8   11     2   elem  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
       Name  Flags
      insns  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 insn
         0: .line 293
            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 294
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
            ifnonnull 5
         2: .line 295
            aload 0 /* this */
            aload 1 /* insn */
            putfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
         3: .line 296
            aload 0 /* this */
            aload 1 /* insn */
            putfield org.objectweb.asm.tree.InsnList.last:Lorg/objectweb/asm/tree/AbstractInsnNode;
         4: .line 297
            goto 7
         5: .line 298
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
            aload 1 /* insn */
            putfield org.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/objectweb/asm/tree/AbstractInsnNode;
         6: .line 299
            aload 1 /* insn */
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
            putfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
         7: .line 301
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* insn */
            putfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
         8: .line 302
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
         9: .line 303
            aload 1 /* insn */
            iconst_0
            putfield org.objectweb.asm.tree.AbstractInsnNode.index:I
        10: .line 304
            return
        end local 1 // org.objectweb.asm.tree.AbstractInsnNode insn
        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  insn  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
      Name  Flags
      insn  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 insns
         0: .line 314
            aload 1 /* insns */
            getfield org.objectweb.asm.tree.InsnList.size:I
            ifne 2
         1: .line 315
            return
         2: .line 317
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.objectweb.asm.tree.InsnList.size:I
            aload 1 /* insns */
            getfield org.objectweb.asm.tree.InsnList.size:I
            iadd
            putfield org.objectweb.asm.tree.InsnList.size:I
         3: .line 318
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
            ifnonnull 7
         4: .line 319
            aload 0 /* this */
            aload 1 /* insns */
            getfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
            putfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
         5: .line 320
            aload 0 /* this */
            aload 1 /* insns */
            getfield org.objectweb.asm.tree.InsnList.last:Lorg/objectweb/asm/tree/AbstractInsnNode;
            putfield org.objectweb.asm.tree.InsnList.last:Lorg/objectweb/asm/tree/AbstractInsnNode;
         6: .line 321
            goto 11
         7: .line 322
      StackMap locals:
      StackMap stack:
            aload 1 /* insns */
            getfield org.objectweb.asm.tree.InsnList.last:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* elem */
        start local 2 // org.objectweb.asm.tree.AbstractInsnNode elem
         8: .line 323
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
            aload 2 /* elem */
            putfield org.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/objectweb/asm/tree/AbstractInsnNode;
         9: .line 324
            aload 2 /* elem */
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
            putfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
        10: .line 325
            aload 0 /* this */
            aload 1 /* insns */
            getfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
            putfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
        end local 2 // org.objectweb.asm.tree.AbstractInsnNode elem
        11: .line 327
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
        12: .line 328
            aload 1 /* insns */
            iconst_0
            invokevirtual org.objectweb.asm.tree.InsnList.removeAll:(Z)V
        13: .line 329
            return
        end local 1 // org.objectweb.asm.tree.InsnList insns
        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  insns  Lorg/objectweb/asm/tree/InsnList;
            8   11     2   elem  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
       Name  Flags
      insns  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 location
        start local 2 // org.objectweb.asm.tree.AbstractInsnNode insn
         0: .line 343
            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 344
            aload 1 /* location */
            getfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 3 /* next */
        start local 3 // org.objectweb.asm.tree.AbstractInsnNode next
         2: .line 345
            aload 3 /* next */
            ifnonnull 5
         3: .line 346
            aload 0 /* this */
            aload 2 /* insn */
            putfield org.objectweb.asm.tree.InsnList.last:Lorg/objectweb/asm/tree/AbstractInsnNode;
         4: .line 347
            goto 6
         5: .line 348
      StackMap locals: org.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 3 /* next */
            aload 2 /* insn */
            putfield org.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/objectweb/asm/tree/AbstractInsnNode;
         6: .line 350
      StackMap locals:
      StackMap stack:
            aload 1 /* location */
            aload 2 /* insn */
            putfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
         7: .line 351
            aload 2 /* insn */
            aload 3 /* next */
            putfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
         8: .line 352
            aload 2 /* insn */
            aload 1 /* location */
            putfield org.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/objectweb/asm/tree/AbstractInsnNode;
         9: .line 353
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
        10: .line 354
            aload 2 /* insn */
            iconst_0
            putfield org.objectweb.asm.tree.AbstractInsnNode.index:I
        11: .line 355
            return
        end local 3 // org.objectweb.asm.tree.AbstractInsnNode next
        end local 2 // org.objectweb.asm.tree.AbstractInsnNode insn
        end local 1 // org.objectweb.asm.tree.AbstractInsnNode location
        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  location  Lorg/objectweb/asm/tree/AbstractInsnNode;
            0   12     2      insn  Lorg/objectweb/asm/tree/AbstractInsnNode;
            2   12     3      next  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
          Name  Flags
      location  final
      insn      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 location
        start local 2 // org.objectweb.asm.tree.InsnList insns
         0: .line 368
            aload 2 /* insns */
            getfield org.objectweb.asm.tree.InsnList.size:I
            ifne 2
         1: .line 369
            return
         2: .line 371
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.objectweb.asm.tree.InsnList.size:I
            aload 2 /* insns */
            getfield org.objectweb.asm.tree.InsnList.size:I
            iadd
            putfield org.objectweb.asm.tree.InsnList.size:I
         3: .line 372
            aload 2 /* insns */
            getfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 3 /* ifirst */
        start local 3 // org.objectweb.asm.tree.AbstractInsnNode ifirst
         4: .line 373
            aload 2 /* insns */
            getfield org.objectweb.asm.tree.InsnList.last:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 4 /* ilast */
        start local 4 // org.objectweb.asm.tree.AbstractInsnNode ilast
         5: .line 374
            aload 1 /* location */
            getfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 5 /* next */
        start local 5 // org.objectweb.asm.tree.AbstractInsnNode next
         6: .line 375
            aload 5 /* next */
            ifnonnull 9
         7: .line 376
            aload 0 /* this */
            aload 4 /* ilast */
            putfield org.objectweb.asm.tree.InsnList.last:Lorg/objectweb/asm/tree/AbstractInsnNode;
         8: .line 377
            goto 10
         9: .line 378
      StackMap locals: org.objectweb.asm.tree.AbstractInsnNode org.objectweb.asm.tree.AbstractInsnNode org.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 5 /* next */
            aload 4 /* ilast */
            putfield org.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/objectweb/asm/tree/AbstractInsnNode;
        10: .line 380
      StackMap locals:
      StackMap stack:
            aload 1 /* location */
            aload 3 /* ifirst */
            putfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
        11: .line 381
            aload 4 /* ilast */
            aload 5 /* next */
            putfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
        12: .line 382
            aload 3 /* ifirst */
            aload 1 /* location */
            putfield org.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/objectweb/asm/tree/AbstractInsnNode;
        13: .line 383
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
        14: .line 384
            aload 2 /* insns */
            iconst_0
            invokevirtual org.objectweb.asm.tree.InsnList.removeAll:(Z)V
        15: .line 385
            return
        end local 5 // org.objectweb.asm.tree.AbstractInsnNode next
        end local 4 // org.objectweb.asm.tree.AbstractInsnNode ilast
        end local 3 // org.objectweb.asm.tree.AbstractInsnNode ifirst
        end local 2 // org.objectweb.asm.tree.InsnList insns
        end local 1 // org.objectweb.asm.tree.AbstractInsnNode location
        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  location  Lorg/objectweb/asm/tree/AbstractInsnNode;
            0   16     2     insns  Lorg/objectweb/asm/tree/InsnList;
            4   16     3    ifirst  Lorg/objectweb/asm/tree/AbstractInsnNode;
            5   16     4     ilast  Lorg/objectweb/asm/tree/AbstractInsnNode;
            6   16     5      next  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
          Name  Flags
      location  final
      insns     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 location
        start local 2 // org.objectweb.asm.tree.AbstractInsnNode insn
         0: .line 399
            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 400
            aload 1 /* location */
            getfield org.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 3 /* prev */
        start local 3 // org.objectweb.asm.tree.AbstractInsnNode prev
         2: .line 401
            aload 3 /* prev */
            ifnonnull 5
         3: .line 402
            aload 0 /* this */
            aload 2 /* insn */
            putfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
         4: .line 403
            goto 6
         5: .line 404
      StackMap locals: org.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 3 /* prev */
            aload 2 /* insn */
            putfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
         6: .line 406
      StackMap locals:
      StackMap stack:
            aload 1 /* location */
            aload 2 /* insn */
            putfield org.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/objectweb/asm/tree/AbstractInsnNode;
         7: .line 407
            aload 2 /* insn */
            aload 1 /* location */
            putfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
         8: .line 408
            aload 2 /* insn */
            aload 3 /* prev */
            putfield org.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/objectweb/asm/tree/AbstractInsnNode;
         9: .line 409
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
        10: .line 410
            aload 2 /* insn */
            iconst_0
            putfield org.objectweb.asm.tree.AbstractInsnNode.index:I
        11: .line 411
            return
        end local 3 // org.objectweb.asm.tree.AbstractInsnNode prev
        end local 2 // org.objectweb.asm.tree.AbstractInsnNode insn
        end local 1 // org.objectweb.asm.tree.AbstractInsnNode location
        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  location  Lorg/objectweb/asm/tree/AbstractInsnNode;
            0   12     2      insn  Lorg/objectweb/asm/tree/AbstractInsnNode;
            2   12     3      prev  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
          Name  Flags
      location  final
      insn      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 location
        start local 2 // org.objectweb.asm.tree.InsnList insns
         0: .line 425
            aload 2 /* insns */
            getfield org.objectweb.asm.tree.InsnList.size:I
            ifne 2
         1: .line 426
            return
         2: .line 428
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.objectweb.asm.tree.InsnList.size:I
            aload 2 /* insns */
            getfield org.objectweb.asm.tree.InsnList.size:I
            iadd
            putfield org.objectweb.asm.tree.InsnList.size:I
         3: .line 429
            aload 2 /* insns */
            getfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 3 /* ifirst */
        start local 3 // org.objectweb.asm.tree.AbstractInsnNode ifirst
         4: .line 430
            aload 2 /* insns */
            getfield org.objectweb.asm.tree.InsnList.last:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 4 /* ilast */
        start local 4 // org.objectweb.asm.tree.AbstractInsnNode ilast
         5: .line 431
            aload 1 /* location */
            getfield org.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 5 /* prev */
        start local 5 // org.objectweb.asm.tree.AbstractInsnNode prev
         6: .line 432
            aload 5 /* prev */
            ifnonnull 9
         7: .line 433
            aload 0 /* this */
            aload 3 /* ifirst */
            putfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
         8: .line 434
            goto 10
         9: .line 435
      StackMap locals: org.objectweb.asm.tree.AbstractInsnNode org.objectweb.asm.tree.AbstractInsnNode org.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 5 /* prev */
            aload 3 /* ifirst */
            putfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
        10: .line 437
      StackMap locals:
      StackMap stack:
            aload 1 /* location */
            aload 4 /* ilast */
            putfield org.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/objectweb/asm/tree/AbstractInsnNode;
        11: .line 438
            aload 4 /* ilast */
            aload 1 /* location */
            putfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
        12: .line 439
            aload 3 /* ifirst */
            aload 5 /* prev */
            putfield org.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/objectweb/asm/tree/AbstractInsnNode;
        13: .line 440
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
        14: .line 441
            aload 2 /* insns */
            iconst_0
            invokevirtual org.objectweb.asm.tree.InsnList.removeAll:(Z)V
        15: .line 442
            return
        end local 5 // org.objectweb.asm.tree.AbstractInsnNode prev
        end local 4 // org.objectweb.asm.tree.AbstractInsnNode ilast
        end local 3 // org.objectweb.asm.tree.AbstractInsnNode ifirst
        end local 2 // org.objectweb.asm.tree.InsnList insns
        end local 1 // org.objectweb.asm.tree.AbstractInsnNode location
        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  location  Lorg/objectweb/asm/tree/AbstractInsnNode;
            0   16     2     insns  Lorg/objectweb/asm/tree/InsnList;
            4   16     3    ifirst  Lorg/objectweb/asm/tree/AbstractInsnNode;
            5   16     4     ilast  Lorg/objectweb/asm/tree/AbstractInsnNode;
            6   16     5      prev  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
          Name  Flags
      location  final
      insns     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 insn
         0: .line 451
            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 452
            aload 1 /* insn */
            getfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* next */
        start local 2 // org.objectweb.asm.tree.AbstractInsnNode next
         2: .line 453
            aload 1 /* insn */
            getfield org.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 3 /* prev */
        start local 3 // org.objectweb.asm.tree.AbstractInsnNode prev
         3: .line 454
            aload 2 /* next */
            ifnonnull 11
         4: .line 455
            aload 3 /* prev */
            ifnonnull 8
         5: .line 456
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
         6: .line 457
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.last:Lorg/objectweb/asm/tree/AbstractInsnNode;
         7: .line 458
            goto 17
         8: .line 459
      StackMap locals: org.objectweb.asm.tree.AbstractInsnNode org.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 3 /* prev */
            aconst_null
            putfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
         9: .line 460
            aload 0 /* this */
            aload 3 /* prev */
            putfield org.objectweb.asm.tree.InsnList.last:Lorg/objectweb/asm/tree/AbstractInsnNode;
        10: .line 462
            goto 17
        11: .line 463
      StackMap locals:
      StackMap stack:
            aload 3 /* prev */
            ifnonnull 15
        12: .line 464
            aload 0 /* this */
            aload 2 /* next */
            putfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
        13: .line 465
            aload 2 /* next */
            aconst_null
            putfield org.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/objectweb/asm/tree/AbstractInsnNode;
        14: .line 466
            goto 17
        15: .line 467
      StackMap locals:
      StackMap stack:
            aload 3 /* prev */
            aload 2 /* next */
            putfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
        16: .line 468
            aload 2 /* next */
            aload 3 /* prev */
            putfield org.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/objectweb/asm/tree/AbstractInsnNode;
        17: .line 471
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
        18: .line 472
            aload 1 /* insn */
            iconst_m1
            putfield org.objectweb.asm.tree.AbstractInsnNode.index:I
        19: .line 473
            aload 1 /* insn */
            aconst_null
            putfield org.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/objectweb/asm/tree/AbstractInsnNode;
        20: .line 474
            aload 1 /* insn */
            aconst_null
            putfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
        21: .line 475
            return
        end local 3 // org.objectweb.asm.tree.AbstractInsnNode prev
        end local 2 // org.objectweb.asm.tree.AbstractInsnNode next
        end local 1 // org.objectweb.asm.tree.AbstractInsnNode insn
        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  insn  Lorg/objectweb/asm/tree/AbstractInsnNode;
            2   22     2  next  Lorg/objectweb/asm/tree/AbstractInsnNode;
            3   22     3  prev  Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
      Name  Flags
      insn  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 485
            iload 1 /* mark */
            ifeq 9
         1: .line 486
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* insn */
        start local 2 // org.objectweb.asm.tree.AbstractInsnNode insn
         2: .line 487
            goto 8
         3: .line 488
      StackMap locals: org.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 2 /* insn */
            getfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 3 /* next */
        start local 3 // org.objectweb.asm.tree.AbstractInsnNode next
         4: .line 489
            aload 2 /* insn */
            iconst_m1
            putfield org.objectweb.asm.tree.AbstractInsnNode.index:I
         5: .line 490
            aload 2 /* insn */
            aconst_null
            putfield org.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/objectweb/asm/tree/AbstractInsnNode;
         6: .line 491
            aload 2 /* insn */
            aconst_null
            putfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
         7: .line 492
            aload 3 /* next */
            astore 2 /* insn */
        end local 3 // org.objectweb.asm.tree.AbstractInsnNode next
         8: .line 487
      StackMap locals:
      StackMap stack:
            aload 2 /* insn */
            ifnonnull 3
        end local 2 // org.objectweb.asm.tree.AbstractInsnNode insn
         9: .line 495
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield org.objectweb.asm.tree.InsnList.size:I
        10: .line 496
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
        11: .line 497
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.last:Lorg/objectweb/asm/tree/AbstractInsnNode;
        12: .line 498
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.InsnList.cache:[Lorg/objectweb/asm/tree/AbstractInsnNode;
        13: .line 499
            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  insn  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 505
            aload 0 /* this */
            iconst_0
            invokevirtual org.objectweb.asm.tree.InsnList.removeAll:(Z)V
         1: .line 506
            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 514
            aload 0 /* this */
            getfield org.objectweb.asm.tree.InsnList.first:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 1 /* insn */
        start local 1 // org.objectweb.asm.tree.AbstractInsnNode insn
         1: .line 515
            goto 5
         2: .line 516
      StackMap locals: org.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 1 /* insn */
            instanceof org.objectweb.asm.tree.LabelNode
            ifeq 4
         3: .line 517
            aload 1 /* insn */
            checkcast org.objectweb.asm.tree.LabelNode
            invokevirtual org.objectweb.asm.tree.LabelNode.resetLabel:()V
         4: .line 519
      StackMap locals:
      StackMap stack:
            aload 1 /* insn */
            getfield org.objectweb.asm.tree.AbstractInsnNode.next:Lorg/objectweb/asm/tree/AbstractInsnNode;
            astore 1 /* insn */
         5: .line 515
      StackMap locals:
      StackMap stack:
            aload 1 /* insn */
            ifnonnull 2
         6: .line 521
            return
        end local 1 // org.objectweb.asm.tree.AbstractInsnNode insn
        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  insn  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