public class org.glassfish.pfl.objectweb.asm.tree.InsnList
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.glassfish.pfl.objectweb.asm.tree.InsnList
  super_class: java.lang.Object
{
  public static boolean check;
    descriptor: Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC

  private int size;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

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

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

  org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode[] cache;
    descriptor: [Lorg/glassfish/pfl/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.glassfish.pfl.objectweb.asm.tree.InsnList this
         0: .line 41
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/pfl/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.glassfish.pfl.objectweb.asm.tree.InsnList this
         0: .line 79
            aload 0 /* this */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
            ireturn
        end local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;

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

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

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

  public boolean contains(org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode);
    descriptor: (Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
        start local 1 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode insn
         0: .line 131
            aload 0 /* this */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* i */
        start local 2 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode i
         1: .line 132
            goto 3
         2: .line 133
      StackMap locals: org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 2 /* i */
            getfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* i */
         3: .line 132
      StackMap locals:
      StackMap stack:
            aload 2 /* i */
            ifnull 4
            aload 2 /* i */
            aload 1 /* insn */
            if_acmpne 2
         4: .line 135
      StackMap locals:
      StackMap stack:
            aload 2 /* i */
            ifnull 5
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_0
            ireturn
        end local 2 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode i
        end local 1 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode insn
        end local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;
            0    6     1  insn  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            1    6     2     i  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
      Name  Flags
      insn  final

  public int indexOf(org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode);
    descriptor: (Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
        start local 1 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode insn
         0: .line 154
            getstatic org.glassfish.pfl.objectweb.asm.tree.InsnList.check:Z
            ifeq 2
            aload 0 /* this */
            aload 1 /* insn */
            invokevirtual org.glassfish.pfl.objectweb.asm.tree.InsnList.contains:(Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;)Z
            ifne 2
         1: .line 155
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 157
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.cache:[Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            ifnonnull 4
         3: .line 158
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.glassfish.pfl.objectweb.asm.tree.InsnList.toArray:()[Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.cache:[Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         4: .line 160
      StackMap locals:
      StackMap stack:
            aload 1 /* insn */
            getfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.index:I
            ireturn
        end local 1 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode insn
        end local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;
            0    5     1  insn  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
      Name  Flags
      insn  final

  public void accept(org.glassfish.pfl.objectweb.asm.MethodVisitor);
    descriptor: (Lorg/glassfish/pfl/objectweb/asm/MethodVisitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
        start local 1 // org.glassfish.pfl.objectweb.asm.MethodVisitor mv
         0: .line 169
            aload 0 /* this */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* insn */
        start local 2 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode insn
         1: .line 170
            goto 4
         2: .line 171
      StackMap locals: org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 2 /* insn */
            aload 1 /* mv */
            invokevirtual org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.accept:(Lorg/glassfish/pfl/objectweb/asm/MethodVisitor;)V
         3: .line 172
            aload 2 /* insn */
            getfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* insn */
         4: .line 170
      StackMap locals:
      StackMap stack:
            aload 2 /* insn */
            ifnonnull 2
         5: .line 174
            return
        end local 2 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode insn
        end local 1 // org.glassfish.pfl.objectweb.asm.MethodVisitor mv
        end local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;
            0    6     1    mv  Lorg/glassfish/pfl/objectweb/asm/MethodVisitor;
            1    6     2  insn  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
      Name  Flags
      mv    final

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

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

  public org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode[] toArray();
    descriptor: ()[Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
         0: .line 200
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         1: .line 201
            aload 0 /* this */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* elem */
        start local 2 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode elem
         2: .line 202
            aload 0 /* this */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
            anewarray org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode
            astore 3 /* insns */
        start local 3 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode[] insns
         3: .line 203
            goto 7
         4: .line 204
      StackMap locals: int org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode[]
      StackMap stack:
            aload 3 /* insns */
            iload 1 /* i */
            aload 2 /* elem */
            aastore
         5: .line 205
            aload 2 /* elem */
            iload 1 /* i */
            iinc 1 /* i */ 1
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.index:I
         6: .line 206
            aload 2 /* elem */
            getfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* elem */
         7: .line 203
      StackMap locals:
      StackMap stack:
            aload 2 /* elem */
            ifnonnull 4
         8: .line 208
            aload 3 /* insns */
            areturn
        end local 3 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode[] insns
        end local 2 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode elem
        end local 1 // int i
        end local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;
            1    9     1      i  I
            2    9     2   elem  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            3    9     3  insns  [Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;

  public void set(org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode, org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode);
    descriptor: (Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
        start local 1 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode location
        start local 2 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode insn
         0: .line 222
            getstatic org.glassfish.pfl.objectweb.asm.tree.InsnList.check:Z
            ifeq 2
            aload 0 /* this */
            aload 1 /* location */
            invokevirtual org.glassfish.pfl.objectweb.asm.tree.InsnList.contains:(Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;)Z
            ifeq 1
            aload 2 /* insn */
            getfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.index:I
            iconst_m1
            if_icmpeq 2
         1: .line 223
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 225
      StackMap locals:
      StackMap stack:
            aload 1 /* location */
            getfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            astore 3 /* next */
        start local 3 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode next
         3: .line 226
            aload 2 /* insn */
            aload 3 /* next */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         4: .line 227
            aload 3 /* next */
            ifnull 7
         5: .line 228
            aload 3 /* next */
            aload 2 /* insn */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         6: .line 229
            goto 8
         7: .line 230
      StackMap locals: org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 0 /* this */
            aload 2 /* insn */
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.last:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         8: .line 232
      StackMap locals:
      StackMap stack:
            aload 1 /* location */
            getfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            astore 4 /* prev */
        start local 4 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode prev
         9: .line 233
            aload 2 /* insn */
            aload 4 /* prev */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        10: .line 234
            aload 4 /* prev */
            ifnull 13
        11: .line 235
            aload 4 /* prev */
            aload 2 /* insn */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        12: .line 236
            goto 14
        13: .line 237
      StackMap locals: org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 0 /* this */
            aload 2 /* insn */
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        14: .line 239
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.cache:[Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            ifnull 19
        15: .line 240
            aload 1 /* location */
            getfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.index:I
            istore 5 /* index */
        start local 5 // int index
        16: .line 241
            aload 0 /* this */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.cache:[Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            iload 5 /* index */
            aload 2 /* insn */
            aastore
        17: .line 242
            aload 2 /* insn */
            iload 5 /* index */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.index:I
        end local 5 // int index
        18: .line 243
            goto 20
        19: .line 244
      StackMap locals:
      StackMap stack:
            aload 2 /* insn */
            iconst_0
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.index:I
        20: .line 246
      StackMap locals:
      StackMap stack:
            aload 1 /* location */
            iconst_m1
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.index:I
        21: .line 247
            aload 1 /* location */
            aconst_null
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        22: .line 248
            aload 1 /* location */
            aconst_null
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        23: .line 249
            return
        end local 4 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode prev
        end local 3 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode next
        end local 2 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode insn
        end local 1 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode location
        end local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   24     0      this  Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;
            0   24     1  location  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            0   24     2      insn  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            3   24     3      next  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            9   24     4      prev  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
           16   18     5     index  I
    MethodParameters:
          Name  Flags
      location  final
      insn      final

  public void add(org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode);
    descriptor: (Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
        start local 1 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode insn
         0: .line 260
            getstatic org.glassfish.pfl.objectweb.asm.tree.InsnList.check:Z
            ifeq 2
            aload 1 /* insn */
            getfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.index:I
            iconst_m1
            if_icmpeq 2
         1: .line 261
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 263
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
            iconst_1
            iadd
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
         3: .line 264
            aload 0 /* this */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.last:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            ifnonnull 7
         4: .line 265
            aload 0 /* this */
            aload 1 /* insn */
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         5: .line 266
            aload 0 /* this */
            aload 1 /* insn */
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.last:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         6: .line 267
            goto 9
         7: .line 268
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.last:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            aload 1 /* insn */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         8: .line 269
            aload 1 /* insn */
            aload 0 /* this */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.last:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         9: .line 271
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* insn */
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.last:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        10: .line 272
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.cache:[Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        11: .line 273
            aload 1 /* insn */
            iconst_0
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.index:I
        12: .line 274
            return
        end local 1 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode insn
        end local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;
            0   13     1  insn  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
      Name  Flags
      insn  final

  public void add(org.glassfish.pfl.objectweb.asm.tree.InsnList);
    descriptor: (Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
        start local 1 // org.glassfish.pfl.objectweb.asm.tree.InsnList insns
         0: .line 284
            getstatic org.glassfish.pfl.objectweb.asm.tree.InsnList.check:Z
            ifeq 2
            aload 1 /* insns */
            aload 0 /* this */
            if_acmpne 2
         1: .line 285
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 287
      StackMap locals:
      StackMap stack:
            aload 1 /* insns */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
            ifne 4
         3: .line 288
            return
         4: .line 290
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
            aload 1 /* insns */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
            iadd
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
         5: .line 291
            aload 0 /* this */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.last:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            ifnonnull 9
         6: .line 292
            aload 0 /* this */
            aload 1 /* insns */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         7: .line 293
            aload 0 /* this */
            aload 1 /* insns */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.last:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.last:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         8: .line 294
            goto 13
         9: .line 295
      StackMap locals:
      StackMap stack:
            aload 1 /* insns */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* elem */
        start local 2 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode elem
        10: .line 296
            aload 0 /* this */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.last:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            aload 2 /* elem */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        11: .line 297
            aload 2 /* elem */
            aload 0 /* this */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.last:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        12: .line 298
            aload 0 /* this */
            aload 1 /* insns */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.last:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.last:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        end local 2 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode elem
        13: .line 300
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.cache:[Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        14: .line 301
            aload 1 /* insns */
            iconst_0
            invokevirtual org.glassfish.pfl.objectweb.asm.tree.InsnList.removeAll:(Z)V
        15: .line 302
            return
        end local 1 // org.glassfish.pfl.objectweb.asm.tree.InsnList insns
        end local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   16     0   this  Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;
            0   16     1  insns  Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;
           10   13     2   elem  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
       Name  Flags
      insns  final

  public void insert(org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode);
    descriptor: (Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
        start local 1 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode insn
         0: .line 313
            getstatic org.glassfish.pfl.objectweb.asm.tree.InsnList.check:Z
            ifeq 2
            aload 1 /* insn */
            getfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.index:I
            iconst_m1
            if_icmpeq 2
         1: .line 314
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 316
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
            iconst_1
            iadd
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
         3: .line 317
            aload 0 /* this */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            ifnonnull 7
         4: .line 318
            aload 0 /* this */
            aload 1 /* insn */
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         5: .line 319
            aload 0 /* this */
            aload 1 /* insn */
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.last:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         6: .line 320
            goto 9
         7: .line 321
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            aload 1 /* insn */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         8: .line 322
            aload 1 /* insn */
            aload 0 /* this */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         9: .line 324
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* insn */
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        10: .line 325
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.cache:[Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        11: .line 326
            aload 1 /* insn */
            iconst_0
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.index:I
        12: .line 327
            return
        end local 1 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode insn
        end local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;
            0   13     1  insn  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
      Name  Flags
      insn  final

  public void insert(org.glassfish.pfl.objectweb.asm.tree.InsnList);
    descriptor: (Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
        start local 1 // org.glassfish.pfl.objectweb.asm.tree.InsnList insns
         0: .line 337
            getstatic org.glassfish.pfl.objectweb.asm.tree.InsnList.check:Z
            ifeq 2
            aload 1 /* insns */
            aload 0 /* this */
            if_acmpne 2
         1: .line 338
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 340
      StackMap locals:
      StackMap stack:
            aload 1 /* insns */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
            ifne 4
         3: .line 341
            return
         4: .line 343
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
            aload 1 /* insns */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
            iadd
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
         5: .line 344
            aload 0 /* this */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            ifnonnull 9
         6: .line 345
            aload 0 /* this */
            aload 1 /* insns */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         7: .line 346
            aload 0 /* this */
            aload 1 /* insns */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.last:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.last:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         8: .line 347
            goto 13
         9: .line 348
      StackMap locals:
      StackMap stack:
            aload 1 /* insns */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.last:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* elem */
        start local 2 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode elem
        10: .line 349
            aload 0 /* this */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            aload 2 /* elem */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        11: .line 350
            aload 2 /* elem */
            aload 0 /* this */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        12: .line 351
            aload 0 /* this */
            aload 1 /* insns */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        end local 2 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode elem
        13: .line 353
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.cache:[Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        14: .line 354
            aload 1 /* insns */
            iconst_0
            invokevirtual org.glassfish.pfl.objectweb.asm.tree.InsnList.removeAll:(Z)V
        15: .line 355
            return
        end local 1 // org.glassfish.pfl.objectweb.asm.tree.InsnList insns
        end local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   16     0   this  Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;
            0   16     1  insns  Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;
           10   13     2   elem  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
       Name  Flags
      insns  final

  public void insert(org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode, org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode);
    descriptor: (Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
        start local 1 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode location
        start local 2 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode insn
         0: .line 369
            getstatic org.glassfish.pfl.objectweb.asm.tree.InsnList.check:Z
            ifeq 2
            aload 0 /* this */
            aload 1 /* location */
            invokevirtual org.glassfish.pfl.objectweb.asm.tree.InsnList.contains:(Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;)Z
            ifeq 1
            aload 2 /* insn */
            getfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.index:I
            iconst_m1
            if_icmpeq 2
         1: .line 370
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 372
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
            iconst_1
            iadd
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
         3: .line 373
            aload 1 /* location */
            getfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            astore 3 /* next */
        start local 3 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode next
         4: .line 374
            aload 3 /* next */
            ifnonnull 7
         5: .line 375
            aload 0 /* this */
            aload 2 /* insn */
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.last:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         6: .line 376
            goto 8
         7: .line 377
      StackMap locals: org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 3 /* next */
            aload 2 /* insn */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         8: .line 379
      StackMap locals:
      StackMap stack:
            aload 1 /* location */
            aload 2 /* insn */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         9: .line 380
            aload 2 /* insn */
            aload 3 /* next */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        10: .line 381
            aload 2 /* insn */
            aload 1 /* location */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        11: .line 382
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.cache:[Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        12: .line 383
            aload 2 /* insn */
            iconst_0
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.index:I
        13: .line 384
            return
        end local 3 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode next
        end local 2 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode insn
        end local 1 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode location
        end local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;
            0   14     1  location  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            0   14     2      insn  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            4   14     3      next  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
          Name  Flags
      location  final
      insn      final

  public void insert(org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode, org.glassfish.pfl.objectweb.asm.tree.InsnList);
    descriptor: (Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
        start local 1 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode location
        start local 2 // org.glassfish.pfl.objectweb.asm.tree.InsnList insns
         0: .line 397
            getstatic org.glassfish.pfl.objectweb.asm.tree.InsnList.check:Z
            ifeq 2
            aload 0 /* this */
            aload 1 /* location */
            invokevirtual org.glassfish.pfl.objectweb.asm.tree.InsnList.contains:(Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;)Z
            ifeq 1
            aload 2 /* insns */
            aload 0 /* this */
            if_acmpne 2
         1: .line 398
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 400
      StackMap locals:
      StackMap stack:
            aload 2 /* insns */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
            ifne 4
         3: .line 401
            return
         4: .line 403
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
            aload 2 /* insns */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
            iadd
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
         5: .line 404
            aload 2 /* insns */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            astore 3 /* ifirst */
        start local 3 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode ifirst
         6: .line 405
            aload 2 /* insns */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.last:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            astore 4 /* ilast */
        start local 4 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode ilast
         7: .line 406
            aload 1 /* location */
            getfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            astore 5 /* next */
        start local 5 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode next
         8: .line 407
            aload 5 /* next */
            ifnonnull 11
         9: .line 408
            aload 0 /* this */
            aload 4 /* ilast */
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.last:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        10: .line 409
            goto 12
        11: .line 410
      StackMap locals: org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 5 /* next */
            aload 4 /* ilast */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        12: .line 412
      StackMap locals:
      StackMap stack:
            aload 1 /* location */
            aload 3 /* ifirst */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        13: .line 413
            aload 4 /* ilast */
            aload 5 /* next */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        14: .line 414
            aload 3 /* ifirst */
            aload 1 /* location */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        15: .line 415
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.cache:[Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        16: .line 416
            aload 2 /* insns */
            iconst_0
            invokevirtual org.glassfish.pfl.objectweb.asm.tree.InsnList.removeAll:(Z)V
        17: .line 417
            return
        end local 5 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode next
        end local 4 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode ilast
        end local 3 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode ifirst
        end local 2 // org.glassfish.pfl.objectweb.asm.tree.InsnList insns
        end local 1 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode location
        end local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   18     0      this  Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;
            0   18     1  location  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            0   18     2     insns  Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;
            6   18     3    ifirst  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            7   18     4     ilast  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            8   18     5      next  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
          Name  Flags
      location  final
      insns     final

  public void insertBefore(org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode, org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode);
    descriptor: (Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
        start local 1 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode location
        start local 2 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode insn
         0: .line 431
            getstatic org.glassfish.pfl.objectweb.asm.tree.InsnList.check:Z
            ifeq 2
            aload 0 /* this */
            aload 1 /* location */
            invokevirtual org.glassfish.pfl.objectweb.asm.tree.InsnList.contains:(Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;)Z
            ifeq 1
            aload 2 /* insn */
            getfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.index:I
            iconst_m1
            if_icmpeq 2
         1: .line 432
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 434
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
            iconst_1
            iadd
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
         3: .line 435
            aload 1 /* location */
            getfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            astore 3 /* prev */
        start local 3 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode prev
         4: .line 436
            aload 3 /* prev */
            ifnonnull 7
         5: .line 437
            aload 0 /* this */
            aload 2 /* insn */
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         6: .line 438
            goto 8
         7: .line 439
      StackMap locals: org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 3 /* prev */
            aload 2 /* insn */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         8: .line 441
      StackMap locals:
      StackMap stack:
            aload 1 /* location */
            aload 2 /* insn */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         9: .line 442
            aload 2 /* insn */
            aload 1 /* location */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        10: .line 443
            aload 2 /* insn */
            aload 3 /* prev */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        11: .line 444
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.cache:[Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        12: .line 445
            aload 2 /* insn */
            iconst_0
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.index:I
        13: .line 446
            return
        end local 3 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode prev
        end local 2 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode insn
        end local 1 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode location
        end local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;
            0   14     1  location  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            0   14     2      insn  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            4   14     3      prev  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
          Name  Flags
      location  final
      insn      final

  public void insertBefore(org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode, org.glassfish.pfl.objectweb.asm.tree.InsnList);
    descriptor: (Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
        start local 1 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode location
        start local 2 // org.glassfish.pfl.objectweb.asm.tree.InsnList insns
         0: .line 459
            getstatic org.glassfish.pfl.objectweb.asm.tree.InsnList.check:Z
            ifeq 2
            aload 0 /* this */
            aload 1 /* location */
            invokevirtual org.glassfish.pfl.objectweb.asm.tree.InsnList.contains:(Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;)Z
            ifeq 1
            aload 2 /* insns */
            aload 0 /* this */
            if_acmpne 2
         1: .line 460
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 462
      StackMap locals:
      StackMap stack:
            aload 2 /* insns */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
            ifne 4
         3: .line 463
            return
         4: .line 465
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
            aload 2 /* insns */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
            iadd
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
         5: .line 466
            aload 2 /* insns */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            astore 3 /* ifirst */
        start local 3 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode ifirst
         6: .line 467
            aload 2 /* insns */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.last:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            astore 4 /* ilast */
        start local 4 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode ilast
         7: .line 468
            aload 1 /* location */
            getfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            astore 5 /* prev */
        start local 5 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode prev
         8: .line 469
            aload 5 /* prev */
            ifnonnull 11
         9: .line 470
            aload 0 /* this */
            aload 3 /* ifirst */
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        10: .line 471
            goto 12
        11: .line 472
      StackMap locals: org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 5 /* prev */
            aload 3 /* ifirst */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        12: .line 474
      StackMap locals:
      StackMap stack:
            aload 1 /* location */
            aload 4 /* ilast */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        13: .line 475
            aload 4 /* ilast */
            aload 1 /* location */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        14: .line 476
            aload 3 /* ifirst */
            aload 5 /* prev */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        15: .line 477
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.cache:[Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        16: .line 478
            aload 2 /* insns */
            iconst_0
            invokevirtual org.glassfish.pfl.objectweb.asm.tree.InsnList.removeAll:(Z)V
        17: .line 479
            return
        end local 5 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode prev
        end local 4 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode ilast
        end local 3 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode ifirst
        end local 2 // org.glassfish.pfl.objectweb.asm.tree.InsnList insns
        end local 1 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode location
        end local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   18     0      this  Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;
            0   18     1  location  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            0   18     2     insns  Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;
            6   18     3    ifirst  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            7   18     4     ilast  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            8   18     5      prev  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
          Name  Flags
      location  final
      insns     final

  public void remove(org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode);
    descriptor: (Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
        start local 1 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode insn
         0: .line 491
            getstatic org.glassfish.pfl.objectweb.asm.tree.InsnList.check:Z
            ifeq 2
            aload 0 /* this */
            aload 1 /* insn */
            invokevirtual org.glassfish.pfl.objectweb.asm.tree.InsnList.contains:(Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;)Z
            ifne 2
         1: .line 492
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 494
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
            iconst_1
            isub
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
         3: .line 495
            aload 1 /* insn */
            getfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* next */
        start local 2 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode next
         4: .line 496
            aload 1 /* insn */
            getfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            astore 3 /* prev */
        start local 3 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode prev
         5: .line 497
            aload 2 /* next */
            ifnonnull 13
         6: .line 498
            aload 3 /* prev */
            ifnonnull 10
         7: .line 499
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         8: .line 500
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.last:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         9: .line 501
            goto 19
        10: .line 502
      StackMap locals: org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 3 /* prev */
            aconst_null
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        11: .line 503
            aload 0 /* this */
            aload 3 /* prev */
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.last:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        12: .line 505
            goto 19
        13: .line 506
      StackMap locals:
      StackMap stack:
            aload 3 /* prev */
            ifnonnull 17
        14: .line 507
            aload 0 /* this */
            aload 2 /* next */
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        15: .line 508
            aload 2 /* next */
            aconst_null
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        16: .line 509
            goto 19
        17: .line 510
      StackMap locals:
      StackMap stack:
            aload 3 /* prev */
            aload 2 /* next */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        18: .line 511
            aload 2 /* next */
            aload 3 /* prev */
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        19: .line 514
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.cache:[Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        20: .line 515
            aload 1 /* insn */
            iconst_m1
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.index:I
        21: .line 516
            aload 1 /* insn */
            aconst_null
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        22: .line 517
            aload 1 /* insn */
            aconst_null
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        23: .line 518
            return
        end local 3 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode prev
        end local 2 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode next
        end local 1 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode insn
        end local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   24     0  this  Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;
            0   24     1  insn  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            4   24     2  next  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            5   24     3  prev  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
      Name  Flags
      insn  final

  private void removeAll(boolean);
    descriptor: (Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
        start local 1 // boolean mark
         0: .line 527
            iload 1 /* mark */
            ifeq 9
         1: .line 528
            aload 0 /* this */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            astore 2 /* insn */
        start local 2 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode insn
         2: .line 529
            goto 8
         3: .line 530
      StackMap locals: org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 2 /* insn */
            getfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            astore 3 /* next */
        start local 3 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode next
         4: .line 531
            aload 2 /* insn */
            iconst_m1
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.index:I
         5: .line 532
            aload 2 /* insn */
            aconst_null
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.prev:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         6: .line 533
            aload 2 /* insn */
            aconst_null
            putfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
         7: .line 534
            aload 3 /* next */
            astore 2 /* insn */
        end local 3 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode next
         8: .line 529
      StackMap locals:
      StackMap stack:
            aload 2 /* insn */
            ifnonnull 3
        end local 2 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode insn
         9: .line 537
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.size:I
        10: .line 538
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        11: .line 539
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.last:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        12: .line 540
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.pfl.objectweb.asm.tree.InsnList.cache:[Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
        13: .line 541
            return
        end local 1 // boolean mark
        end local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;
            0   14     1  mark  Z
            2    9     2  insn  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            4    8     3  next  Lorg/glassfish/pfl/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.glassfish.pfl.objectweb.asm.tree.InsnList this
         0: .line 547
            aload 0 /* this */
            getstatic org.glassfish.pfl.objectweb.asm.tree.InsnList.check:Z
            invokevirtual org.glassfish.pfl.objectweb.asm.tree.InsnList.removeAll:(Z)V
         1: .line 548
            return
        end local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/pfl/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.glassfish.pfl.objectweb.asm.tree.InsnList this
         0: .line 556
            aload 0 /* this */
            getfield org.glassfish.pfl.objectweb.asm.tree.InsnList.first:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            astore 1 /* insn */
        start local 1 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode insn
         1: .line 557
            goto 5
         2: .line 558
      StackMap locals: org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode
      StackMap stack:
            aload 1 /* insn */
            instanceof org.glassfish.pfl.objectweb.asm.tree.LabelNode
            ifeq 4
         3: .line 559
            aload 1 /* insn */
            checkcast org.glassfish.pfl.objectweb.asm.tree.LabelNode
            invokevirtual org.glassfish.pfl.objectweb.asm.tree.LabelNode.resetLabel:()V
         4: .line 561
      StackMap locals:
      StackMap stack:
            aload 1 /* insn */
            getfield org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode.next:Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
            astore 1 /* insn */
         5: .line 557
      StackMap locals:
      StackMap stack:
            aload 1 /* insn */
            ifnonnull 2
         6: .line 563
            return
        end local 1 // org.glassfish.pfl.objectweb.asm.tree.AbstractInsnNode insn
        end local 0 // org.glassfish.pfl.objectweb.asm.tree.InsnList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/glassfish/pfl/objectweb/asm/tree/InsnList;
            1    7     1  insn  Lorg/glassfish/pfl/objectweb/asm/tree/AbstractInsnNode;
}
SourceFile: "InsnList.java"
NestMembers:
  org.glassfish.pfl.objectweb.asm.tree.InsnList$InsnListIterator
InnerClasses:
  private final InsnListIterator = org.glassfish.pfl.objectweb.asm.tree.InsnList$InsnListIterator of org.glassfish.pfl.objectweb.asm.tree.InsnList