public class org.jruby.ir.listeners.InstructionsListenerDecorator implements java.util.List<org.jruby.ir.instructions.Instr>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jruby.ir.listeners.InstructionsListenerDecorator
  super_class: java.lang.Object
{
  private final org.jruby.ir.representations.BasicBlock basicBlock;
    descriptor: Lorg/jruby/ir/representations/BasicBlock;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.List<org.jruby.ir.instructions.Instr> instrs;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lorg/jruby/ir/instructions/Instr;>;

  private final org.jruby.ir.listeners.InstructionsListener listener;
    descriptor: Lorg/jruby/ir/listeners/InstructionsListener;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(org.jruby.ir.representations.BasicBlock, java.util.List<org.jruby.ir.instructions.Instr>, org.jruby.ir.listeners.InstructionsListener);
    descriptor: (Lorg/jruby/ir/representations/BasicBlock;Ljava/util/List;Lorg/jruby/ir/listeners/InstructionsListener;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
        start local 1 // org.jruby.ir.representations.BasicBlock basicBlock
        start local 2 // java.util.List instrs
        start local 3 // org.jruby.ir.listeners.InstructionsListener listener
         0: .line 112
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 113
            aload 0 /* this */
            aload 1 /* basicBlock */
            putfield org.jruby.ir.listeners.InstructionsListenerDecorator.basicBlock:Lorg/jruby/ir/representations/BasicBlock;
         2: .line 114
            aload 0 /* this */
            aload 2 /* instrs */
            putfield org.jruby.ir.listeners.InstructionsListenerDecorator.instrs:Ljava/util/List;
         3: .line 115
            aload 0 /* this */
            aload 3 /* listener */
            putfield org.jruby.ir.listeners.InstructionsListenerDecorator.listener:Lorg/jruby/ir/listeners/InstructionsListener;
         4: .line 116
            return
        end local 3 // org.jruby.ir.listeners.InstructionsListener listener
        end local 2 // java.util.List instrs
        end local 1 // org.jruby.ir.representations.BasicBlock basicBlock
        end local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/jruby/ir/listeners/InstructionsListenerDecorator;
            0    5     1  basicBlock  Lorg/jruby/ir/representations/BasicBlock;
            0    5     2      instrs  Ljava/util/List<Lorg/jruby/ir/instructions/Instr;>;
            0    5     3    listener  Lorg/jruby/ir/listeners/InstructionsListener;
    Signature: (Lorg/jruby/ir/representations/BasicBlock;Ljava/util/List<Lorg/jruby/ir/instructions/Instr;>;Lorg/jruby/ir/listeners/InstructionsListener;)V
    MethodParameters:
            Name  Flags
      basicBlock  
      instrs      
      listener    

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
         0: .line 120
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.instrs:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            ireturn
        end local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/listeners/InstructionsListenerDecorator;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
         0: .line 125
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.instrs:Ljava/util/List;
            invokeinterface java.util.List.isEmpty:()Z
            ireturn
        end local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/listeners/InstructionsListenerDecorator;

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
        start local 1 // java.lang.Object o
         0: .line 130
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.instrs:Ljava/util/List;
            aload 1 /* o */
            invokeinterface java.util.List.contains:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/listeners/InstructionsListenerDecorator;
            0    1     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  public java.util.Iterator<org.jruby.ir.instructions.Instr> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
         0: .line 135
            new org.jruby.ir.listeners.InstructionsListenerDecorator$InstructionsListIterator
            dup
            aload 0 /* this */
            invokespecial org.jruby.ir.listeners.InstructionsListenerDecorator$InstructionsListIterator.<init>:(Lorg/jruby/ir/listeners/InstructionsListenerDecorator;)V
            areturn
        end local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/listeners/InstructionsListenerDecorator;
    Signature: ()Ljava/util/Iterator<Lorg/jruby/ir/instructions/Instr;>;

  public java.lang.Object[] toArray();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
         0: .line 140
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.instrs:Ljava/util/List;
            invokeinterface java.util.List.toArray:()[Ljava/lang/Object;
            areturn
        end local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/listeners/InstructionsListenerDecorator;

  public <T> T[] toArray();
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
        start local 1 // java.lang.Object[] a
         0: .line 145
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.instrs:Ljava/util/List;
            aload 1 /* a */
            invokeinterface java.util.List.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object[] a
        end local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/listeners/InstructionsListenerDecorator;
            0    1     1     a  [Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>([TT;)[TT;
    MethodParameters:
      Name  Flags
      a     

  public boolean add(org.jruby.ir.instructions.Instr);
    descriptor: (Lorg/jruby/ir/instructions/Instr;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
        start local 1 // org.jruby.ir.instructions.Instr e
         0: .line 150
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.instrs:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            iconst_1
            iadd
            istore 2 /* index */
        start local 2 // int index
         1: .line 151
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.listener:Lorg/jruby/ir/listeners/InstructionsListener;
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.basicBlock:Lorg/jruby/ir/representations/BasicBlock;
            aconst_null
            aload 1 /* e */
            iload 2 /* index */
            getstatic org.jruby.ir.listeners.InstructionsListener$OperationType.ADD:Lorg/jruby/ir/listeners/InstructionsListener$OperationType;
            invokeinterface org.jruby.ir.listeners.InstructionsListener.instrChanged:(Lorg/jruby/ir/representations/BasicBlock;Lorg/jruby/ir/instructions/Instr;Lorg/jruby/ir/instructions/Instr;ILorg/jruby/ir/listeners/InstructionsListener$OperationType;)V
         2: .line 152
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.instrs:Ljava/util/List;
            aload 1 /* e */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            ireturn
        end local 2 // int index
        end local 1 // org.jruby.ir.instructions.Instr e
        end local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/jruby/ir/listeners/InstructionsListenerDecorator;
            0    3     1      e  Lorg/jruby/ir/instructions/Instr;
            1    3     2  index  I
    MethodParameters:
      Name  Flags
      e     

  public boolean remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
        start local 1 // java.lang.Object o
         0: .line 157
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.instrs:Ljava/util/List;
            aload 1 /* o */
            invokeinterface java.util.List.indexOf:(Ljava/lang/Object;)I
            istore 2 /* index */
        start local 2 // int index
         1: .line 158
            iload 2 /* index */
            iconst_m1
            if_icmpeq 2
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.listener:Lorg/jruby/ir/listeners/InstructionsListener;
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.basicBlock:Lorg/jruby/ir/representations/BasicBlock;
            aload 1 /* o */
            checkcast org.jruby.ir.instructions.Instr
            aconst_null
            iload 2 /* index */
            getstatic org.jruby.ir.listeners.InstructionsListener$OperationType.REMOVE:Lorg/jruby/ir/listeners/InstructionsListener$OperationType;
            invokeinterface org.jruby.ir.listeners.InstructionsListener.instrChanged:(Lorg/jruby/ir/representations/BasicBlock;Lorg/jruby/ir/instructions/Instr;Lorg/jruby/ir/instructions/Instr;ILorg/jruby/ir/listeners/InstructionsListener$OperationType;)V
         2: .line 159
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.instrs:Ljava/util/List;
            aload 1 /* o */
            invokeinterface java.util.List.remove:(Ljava/lang/Object;)Z
            ireturn
        end local 2 // int index
        end local 1 // java.lang.Object o
        end local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/jruby/ir/listeners/InstructionsListenerDecorator;
            0    3     1      o  Ljava/lang/Object;
            1    3     2  index  I
    MethodParameters:
      Name  Flags
      o     

  public boolean containsAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
        start local 1 // java.util.Collection c
         0: .line 164
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.instrs:Ljava/util/List;
            aload 1 /* c */
            invokeinterface java.util.List.containsAll:(Ljava/util/Collection;)Z
            ireturn
        end local 1 // java.util.Collection c
        end local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/listeners/InstructionsListenerDecorator;
            0    1     1     c  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      c     

  public boolean addAll(java.util.Collection<? extends org.jruby.ir.instructions.Instr>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
        start local 1 // java.util.Collection c
         0: .line 169
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.instrs:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            iconst_1
            isub
            istore 2 /* lastIndex */
        start local 2 // int lastIndex
         1: .line 170
            aload 0 /* this */
            iload 2 /* lastIndex */
            aload 1 /* c */
            invokevirtual org.jruby.ir.listeners.InstructionsListenerDecorator.addAll:(ILjava/util/Collection;)Z
            ireturn
        end local 2 // int lastIndex
        end local 1 // java.util.Collection c
        end local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/jruby/ir/listeners/InstructionsListenerDecorator;
            0    2     1          c  Ljava/util/Collection<+Lorg/jruby/ir/instructions/Instr;>;
            1    2     2  lastIndex  I
    Signature: (Ljava/util/Collection<+Lorg/jruby/ir/instructions/Instr;>;)Z
    MethodParameters:
      Name  Flags
      c     

  public boolean addAll(int, java.util.Collection<? extends org.jruby.ir.instructions.Instr>);
    descriptor: (ILjava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=3
        start local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
        start local 1 // int index
        start local 2 // java.util.Collection c
         0: .line 175
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual org.jruby.ir.listeners.InstructionsListenerDecorator.listIterator:(I)Ljava/util/ListIterator;
            astore 3 /* iterator */
        start local 3 // java.util.ListIterator iterator
         1: .line 176
            aload 2 /* c */
            invokeinterface java.util.Collection.isEmpty:()Z
            ifeq 2
            iconst_0
            ireturn
         2: .line 177
      StackMap locals: java.util.ListIterator
      StackMap stack:
            aload 2 /* c */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 5
            goto 5
      StackMap locals: org.jruby.ir.listeners.InstructionsListenerDecorator int java.util.Collection java.util.ListIterator top java.util.Iterator
      StackMap stack:
         3: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.jruby.ir.instructions.Instr
            astore 4 /* instr */
        start local 4 // org.jruby.ir.instructions.Instr instr
         4: .line 178
            aload 3 /* iterator */
            aload 4 /* instr */
            invokeinterface java.util.ListIterator.add:(Ljava/lang/Object;)V
        end local 4 // org.jruby.ir.instructions.Instr instr
         5: .line 177
      StackMap locals:
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 180
            iconst_1
            ireturn
        end local 3 // java.util.ListIterator iterator
        end local 2 // java.util.Collection c
        end local 1 // int index
        end local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/jruby/ir/listeners/InstructionsListenerDecorator;
            0    7     1     index  I
            0    7     2         c  Ljava/util/Collection<+Lorg/jruby/ir/instructions/Instr;>;
            1    7     3  iterator  Ljava/util/ListIterator<Lorg/jruby/ir/instructions/Instr;>;
            4    5     4     instr  Lorg/jruby/ir/instructions/Instr;
    Signature: (ILjava/util/Collection<+Lorg/jruby/ir/instructions/Instr;>;)Z
    MethodParameters:
       Name  Flags
      index  
      c      

  public boolean removeAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
        start local 1 // java.util.Collection c
         0: .line 185
            iconst_0
            istore 2 /* hasChanged */
        start local 2 // boolean hasChanged
         1: .line 186
            aload 1 /* c */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: org.jruby.ir.listeners.InstructionsListenerDecorator java.util.Collection int top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 3 /* item */
        start local 3 // java.lang.Object item
         3: .line 187
            aload 0 /* this */
            aload 3 /* item */
            invokevirtual org.jruby.ir.listeners.InstructionsListenerDecorator.remove:(Ljava/lang/Object;)Z
            istore 5 /* hasRemoved */
        start local 5 // boolean hasRemoved
         4: .line 188
            iload 2 /* hasChanged */
            ifne 5
            iload 5 /* hasRemoved */
            istore 2 /* hasChanged */
        end local 5 // boolean hasRemoved
        end local 3 // java.lang.Object item
         5: .line 186
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         6: .line 190
            iload 2 /* hasChanged */
            ireturn
        end local 2 // boolean hasChanged
        end local 1 // java.util.Collection c
        end local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lorg/jruby/ir/listeners/InstructionsListenerDecorator;
            0    7     1           c  Ljava/util/Collection<*>;
            1    7     2  hasChanged  Z
            3    5     3        item  Ljava/lang/Object;
            4    5     5  hasRemoved  Z
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      c     

  public boolean retainAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
        start local 1 // java.util.Collection c
         0: .line 195
            iconst_0
            istore 2 /* hasChanged */
        start local 2 // boolean hasChanged
         1: .line 196
            aload 0 /* this */
            invokevirtual org.jruby.ir.listeners.InstructionsListenerDecorator.listIterator:()Ljava/util/ListIterator;
            astore 3 /* iterator */
        start local 3 // java.util.ListIterator iterator
         2: .line 197
            goto 8
         3: .line 198
      StackMap locals: int java.util.ListIterator
      StackMap stack:
            aload 3 /* iterator */
            invokeinterface java.util.ListIterator.nextIndex:()I
            pop
         4: .line 199
            aload 3 /* iterator */
            invokeinterface java.util.ListIterator.next:()Ljava/lang/Object;
            checkcast org.jruby.ir.instructions.Instr
            astore 4 /* instr */
        start local 4 // org.jruby.ir.instructions.Instr instr
         5: .line 200
            aload 1 /* c */
            aload 4 /* instr */
            invokeinterface java.util.Collection.contains:(Ljava/lang/Object;)Z
            ifne 8
         6: .line 201
            aload 0 /* this */
            aload 4 /* instr */
            invokevirtual org.jruby.ir.listeners.InstructionsListenerDecorator.remove:(Ljava/lang/Object;)Z
            istore 5 /* hasRemoved */
        start local 5 // boolean hasRemoved
         7: .line 202
            iload 2 /* hasChanged */
            ifne 8
            iload 5 /* hasRemoved */
            istore 2 /* hasChanged */
        end local 5 // boolean hasRemoved
        end local 4 // org.jruby.ir.instructions.Instr instr
         8: .line 197
      StackMap locals:
      StackMap stack:
            aload 3 /* iterator */
            invokeinterface java.util.ListIterator.hasNext:()Z
            ifne 3
         9: .line 205
            iload 2 /* hasChanged */
            ireturn
        end local 3 // java.util.ListIterator iterator
        end local 2 // boolean hasChanged
        end local 1 // java.util.Collection c
        end local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        this  Lorg/jruby/ir/listeners/InstructionsListenerDecorator;
            0   10     1           c  Ljava/util/Collection<*>;
            1   10     2  hasChanged  Z
            2   10     3    iterator  Ljava/util/ListIterator<Lorg/jruby/ir/instructions/Instr;>;
            5    8     4       instr  Lorg/jruby/ir/instructions/Instr;
            7    8     5  hasRemoved  Z
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      c     

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
         0: .line 210
            aload 0 /* this */
            invokestatic java.util.Collections.emptySet:()Ljava/util/Set;
            invokevirtual org.jruby.ir.listeners.InstructionsListenerDecorator.retainAll:(Ljava/util/Collection;)Z
            pop
         1: .line 211
            return
        end local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/jruby/ir/listeners/InstructionsListenerDecorator;

  public org.jruby.ir.instructions.Instr get(int);
    descriptor: (I)Lorg/jruby/ir/instructions/Instr;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
        start local 1 // int index
         0: .line 215
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.instrs:Ljava/util/List;
            iload 1 /* index */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.jruby.ir.instructions.Instr
            areturn
        end local 1 // int index
        end local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/jruby/ir/listeners/InstructionsListenerDecorator;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public org.jruby.ir.instructions.Instr set(int, org.jruby.ir.instructions.Instr);
    descriptor: (ILorg/jruby/ir/instructions/Instr;)Lorg/jruby/ir/instructions/Instr;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
        start local 1 // int index
        start local 2 // org.jruby.ir.instructions.Instr element
         0: .line 220
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.instrs:Ljava/util/List;
            iload 1 /* index */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.jruby.ir.instructions.Instr
            astore 3 /* oldElement */
        start local 3 // org.jruby.ir.instructions.Instr oldElement
         1: .line 221
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.listener:Lorg/jruby/ir/listeners/InstructionsListener;
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.basicBlock:Lorg/jruby/ir/representations/BasicBlock;
            aload 3 /* oldElement */
            aload 2 /* element */
            iload 1 /* index */
            getstatic org.jruby.ir.listeners.InstructionsListener$OperationType.UPDATE:Lorg/jruby/ir/listeners/InstructionsListener$OperationType;
            invokeinterface org.jruby.ir.listeners.InstructionsListener.instrChanged:(Lorg/jruby/ir/representations/BasicBlock;Lorg/jruby/ir/instructions/Instr;Lorg/jruby/ir/instructions/Instr;ILorg/jruby/ir/listeners/InstructionsListener$OperationType;)V
         2: .line 222
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.instrs:Ljava/util/List;
            iload 1 /* index */
            aload 2 /* element */
            invokeinterface java.util.List.set:(ILjava/lang/Object;)Ljava/lang/Object;
            checkcast org.jruby.ir.instructions.Instr
            areturn
        end local 3 // org.jruby.ir.instructions.Instr oldElement
        end local 2 // org.jruby.ir.instructions.Instr element
        end local 1 // int index
        end local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lorg/jruby/ir/listeners/InstructionsListenerDecorator;
            0    3     1       index  I
            0    3     2     element  Lorg/jruby/ir/instructions/Instr;
            1    3     3  oldElement  Lorg/jruby/ir/instructions/Instr;
    MethodParameters:
         Name  Flags
      index    
      element  

  public void add(int, org.jruby.ir.instructions.Instr);
    descriptor: (ILorg/jruby/ir/instructions/Instr;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
        start local 1 // int index
        start local 2 // org.jruby.ir.instructions.Instr element
         0: .line 227
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.listener:Lorg/jruby/ir/listeners/InstructionsListener;
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.basicBlock:Lorg/jruby/ir/representations/BasicBlock;
            aconst_null
            aload 2 /* element */
            iload 1 /* index */
            getstatic org.jruby.ir.listeners.InstructionsListener$OperationType.ADD:Lorg/jruby/ir/listeners/InstructionsListener$OperationType;
            invokeinterface org.jruby.ir.listeners.InstructionsListener.instrChanged:(Lorg/jruby/ir/representations/BasicBlock;Lorg/jruby/ir/instructions/Instr;Lorg/jruby/ir/instructions/Instr;ILorg/jruby/ir/listeners/InstructionsListener$OperationType;)V
         1: .line 228
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.instrs:Ljava/util/List;
            iload 1 /* index */
            aload 2 /* element */
            invokeinterface java.util.List.add:(ILjava/lang/Object;)V
         2: .line 229
            return
        end local 2 // org.jruby.ir.instructions.Instr element
        end local 1 // int index
        end local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/jruby/ir/listeners/InstructionsListenerDecorator;
            0    3     1    index  I
            0    3     2  element  Lorg/jruby/ir/instructions/Instr;
    MethodParameters:
         Name  Flags
      index    
      element  

  public org.jruby.ir.instructions.Instr remove(int);
    descriptor: (I)Lorg/jruby/ir/instructions/Instr;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
        start local 1 // int index
         0: .line 233
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.instrs:Ljava/util/List;
            iload 1 /* index */
            invokeinterface java.util.List.remove:(I)Ljava/lang/Object;
            checkcast org.jruby.ir.instructions.Instr
            astore 2 /* element */
        start local 2 // org.jruby.ir.instructions.Instr element
         1: .line 234
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.listener:Lorg/jruby/ir/listeners/InstructionsListener;
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.basicBlock:Lorg/jruby/ir/representations/BasicBlock;
            aload 2 /* element */
            aconst_null
            iload 1 /* index */
            getstatic org.jruby.ir.listeners.InstructionsListener$OperationType.REMOVE:Lorg/jruby/ir/listeners/InstructionsListener$OperationType;
            invokeinterface org.jruby.ir.listeners.InstructionsListener.instrChanged:(Lorg/jruby/ir/representations/BasicBlock;Lorg/jruby/ir/instructions/Instr;Lorg/jruby/ir/instructions/Instr;ILorg/jruby/ir/listeners/InstructionsListener$OperationType;)V
         2: .line 235
            aload 2 /* element */
            areturn
        end local 2 // org.jruby.ir.instructions.Instr element
        end local 1 // int index
        end local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/jruby/ir/listeners/InstructionsListenerDecorator;
            0    3     1    index  I
            1    3     2  element  Lorg/jruby/ir/instructions/Instr;
    MethodParameters:
       Name  Flags
      index  

  public int indexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
        start local 1 // java.lang.Object o
         0: .line 240
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.instrs:Ljava/util/List;
            aload 1 /* o */
            invokeinterface java.util.List.indexOf:(Ljava/lang/Object;)I
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/listeners/InstructionsListenerDecorator;
            0    1     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  public int lastIndexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
        start local 1 // java.lang.Object o
         0: .line 245
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.instrs:Ljava/util/List;
            aload 1 /* o */
            invokeinterface java.util.List.lastIndexOf:(Ljava/lang/Object;)I
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/listeners/InstructionsListenerDecorator;
            0    1     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  public java.util.ListIterator<org.jruby.ir.instructions.Instr> listIterator();
    descriptor: ()Ljava/util/ListIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
         0: .line 250
            new org.jruby.ir.listeners.InstructionsListenerDecorator$InstructionsListIterator
            dup
            aload 0 /* this */
            invokespecial org.jruby.ir.listeners.InstructionsListenerDecorator$InstructionsListIterator.<init>:(Lorg/jruby/ir/listeners/InstructionsListenerDecorator;)V
            areturn
        end local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/listeners/InstructionsListenerDecorator;
    Signature: ()Ljava/util/ListIterator<Lorg/jruby/ir/instructions/Instr;>;

  public java.util.ListIterator<org.jruby.ir.instructions.Instr> listIterator(int);
    descriptor: (I)Ljava/util/ListIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
        start local 1 // int index
         0: .line 255
            new org.jruby.ir.listeners.InstructionsListenerDecorator$InstructionsListIterator
            dup
            aload 0 /* this */
            invokespecial org.jruby.ir.listeners.InstructionsListenerDecorator$InstructionsListIterator.<init>:(Lorg/jruby/ir/listeners/InstructionsListenerDecorator;)V
            astore 2 /* iterator */
        start local 2 // org.jruby.ir.listeners.InstructionsListenerDecorator$InstructionsListIterator iterator
         1: .line 256
            goto 3
         2: .line 257
      StackMap locals: org.jruby.ir.listeners.InstructionsListenerDecorator$InstructionsListIterator
      StackMap stack:
            aload 2 /* iterator */
            invokevirtual org.jruby.ir.listeners.InstructionsListenerDecorator$InstructionsListIterator.next:()Lorg/jruby/ir/instructions/Instr;
            pop
         3: .line 256
      StackMap locals:
      StackMap stack:
            aload 2 /* iterator */
            invokevirtual org.jruby.ir.listeners.InstructionsListenerDecorator$InstructionsListIterator.nextIndex:()I
            iload 1 /* index */
            if_icmplt 2
         4: .line 259
            aload 2 /* iterator */
            areturn
        end local 2 // org.jruby.ir.listeners.InstructionsListenerDecorator$InstructionsListIterator iterator
        end local 1 // int index
        end local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/jruby/ir/listeners/InstructionsListenerDecorator;
            0    5     1     index  I
            1    5     2  iterator  Lorg/jruby/ir/listeners/InstructionsListenerDecorator$InstructionsListIterator;
    Signature: (I)Ljava/util/ListIterator<Lorg/jruby/ir/instructions/Instr;>;
    MethodParameters:
       Name  Flags
      index  

  public java.util.List<org.jruby.ir.instructions.Instr> subList(int, int);
    descriptor: (II)Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
        start local 1 // int fromIndex
        start local 2 // int toIndex
         0: .line 264
            aload 0 /* this */
            getfield org.jruby.ir.listeners.InstructionsListenerDecorator.instrs:Ljava/util/List;
            iload 1 /* fromIndex */
            iload 2 /* toIndex */
            invokeinterface java.util.List.subList:(II)Ljava/util/List;
            areturn
        end local 2 // int toIndex
        end local 1 // int fromIndex
        end local 0 // org.jruby.ir.listeners.InstructionsListenerDecorator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/jruby/ir/listeners/InstructionsListenerDecorator;
            0    1     1  fromIndex  I
            0    1     2    toIndex  I
    Signature: (II)Ljava/util/List<Lorg/jruby/ir/instructions/Instr;>;
    MethodParameters:
           Name  Flags
      fromIndex  
      toIndex    

  public java.lang.Object set(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            aload 2
            checkcast org.jruby.ir.instructions.Instr
            invokevirtual org.jruby.ir.listeners.InstructionsListenerDecorator.set:(ILorg/jruby/ir/instructions/Instr;)Lorg/jruby/ir/instructions/Instr;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object get(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual org.jruby.ir.listeners.InstructionsListenerDecorator.get:(I)Lorg/jruby/ir/instructions/Instr;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object remove(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual org.jruby.ir.listeners.InstructionsListenerDecorator.remove:(I)Lorg/jruby/ir/instructions/Instr;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void add(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            aload 2
            checkcast org.jruby.ir.instructions.Instr
            invokevirtual org.jruby.ir.listeners.InstructionsListenerDecorator.add:(ILorg/jruby/ir/instructions/Instr;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public boolean add(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.jruby.ir.instructions.Instr
            invokevirtual org.jruby.ir.listeners.InstructionsListenerDecorator.add:(Lorg/jruby/ir/instructions/Instr;)Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Ljava/util/List<Lorg/jruby/ir/instructions/Instr;>;
SourceFile: "InstructionsListenerDecorator.java"
NestMembers:
  org.jruby.ir.listeners.InstructionsListenerDecorator$InstructionsListIterator
InnerClasses:
  public final OperationType = org.jruby.ir.listeners.InstructionsListener$OperationType of org.jruby.ir.listeners.InstructionsListener
  private InstructionsListIterator = org.jruby.ir.listeners.InstructionsListenerDecorator$InstructionsListIterator of org.jruby.ir.listeners.InstructionsListenerDecorator