class org.pcollections.ConsPStack$1 implements java.util.ListIterator<E>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.pcollections.ConsPStack$1
  super_class: java.lang.Object
{
  int i;
    descriptor: I
    flags: (0x0000) 

  org.pcollections.ConsPStack<E> next;
    descriptor: Lorg/pcollections/ConsPStack;
    flags: (0x0000) 
    Signature: Lorg/pcollections/ConsPStack<TE;>;

  final org.pcollections.ConsPStack this$0;
    descriptor: Lorg/pcollections/ConsPStack;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  void <init>(org.pcollections.ConsPStack, int);
    descriptor: (Lorg/pcollections/ConsPStack;I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.pcollections.ConsPStack$1 this
         0: .line 99
            aload 0 /* this */
            aload 1
            putfield org.pcollections.ConsPStack$1.this$0:Lorg/pcollections/ConsPStack;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 100
            aload 0 /* this */
            iload 2
            putfield org.pcollections.ConsPStack$1.i:I
         2: .line 101
            aload 0 /* this */
            aload 1
            iload 2
            invokevirtual org.pcollections.ConsPStack.subList:(I)Lorg/pcollections/ConsPStack;
            putfield org.pcollections.ConsPStack$1.next:Lorg/pcollections/ConsPStack;
         3: .line 99
            return
        end local 0 // org.pcollections.ConsPStack$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/pcollections/ConsPStack$1;
    MethodParameters:
           Name  Flags
      this$0     final
      val$index  final

  public boolean hasNext();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.pcollections.ConsPStack$1 this
         0: .line 104
            aload 0 /* this */
            getfield org.pcollections.ConsPStack$1.next:Lorg/pcollections/ConsPStack;
            getfield org.pcollections.ConsPStack.size:I
            ifle 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.pcollections.ConsPStack$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/pcollections/ConsPStack$1;

  public boolean hasPrevious();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.pcollections.ConsPStack$1 this
         0: .line 108
            aload 0 /* this */
            getfield org.pcollections.ConsPStack$1.i:I
            ifle 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.pcollections.ConsPStack$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/pcollections/ConsPStack$1;

  public int nextIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.pcollections.ConsPStack$1 this
         0: .line 112
            aload 0 /* this */
            getfield org.pcollections.ConsPStack$1.i:I
            ireturn
        end local 0 // org.pcollections.ConsPStack$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/pcollections/ConsPStack$1;

  public int previousIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.pcollections.ConsPStack$1 this
         0: .line 116
            aload 0 /* this */
            getfield org.pcollections.ConsPStack$1.i:I
            iconst_1
            isub
            ireturn
        end local 0 // org.pcollections.ConsPStack$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/pcollections/ConsPStack$1;

  public E next();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.pcollections.ConsPStack$1 this
         0: .line 120
            aload 0 /* this */
            getfield org.pcollections.ConsPStack$1.next:Lorg/pcollections/ConsPStack;
            getfield org.pcollections.ConsPStack.first:Ljava/lang/Object;
            astore 1 /* e */
        start local 1 // java.lang.Object e
         1: .line 121
            aload 0 /* this */
            aload 0 /* this */
            getfield org.pcollections.ConsPStack$1.next:Lorg/pcollections/ConsPStack;
            getfield org.pcollections.ConsPStack.rest:Lorg/pcollections/ConsPStack;
            putfield org.pcollections.ConsPStack$1.next:Lorg/pcollections/ConsPStack;
         2: .line 122
            aload 0 /* this */
            dup
            getfield org.pcollections.ConsPStack$1.i:I
            iconst_1
            iadd
            putfield org.pcollections.ConsPStack$1.i:I
         3: .line 123
            aload 1 /* e */
            areturn
        end local 1 // java.lang.Object e
        end local 0 // org.pcollections.ConsPStack$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/pcollections/ConsPStack$1;
            1    4     1     e  TE;
    Signature: ()TE;

  public E previous();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.pcollections.ConsPStack$1 this
         0: .line 127
            getstatic java.lang.System.err:Ljava/io/PrintStream;
            ldc "ConsPStack.listIterator().previous() is inefficient, don't use it!"
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 128
            aload 0 /* this */
            aload 0 /* this */
            getfield org.pcollections.ConsPStack$1.this$0:Lorg/pcollections/ConsPStack;
            aload 0 /* this */
            dup
            getfield org.pcollections.ConsPStack$1.i:I
            iconst_1
            isub
            dup_x1
            putfield org.pcollections.ConsPStack$1.i:I
            invokevirtual org.pcollections.ConsPStack.subList:(I)Lorg/pcollections/ConsPStack;
            putfield org.pcollections.ConsPStack$1.next:Lorg/pcollections/ConsPStack;
         2: .line 129
            aload 0 /* this */
            getfield org.pcollections.ConsPStack$1.next:Lorg/pcollections/ConsPStack;
            getfield org.pcollections.ConsPStack.first:Ljava/lang/Object;
            areturn
        end local 0 // org.pcollections.ConsPStack$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/pcollections/ConsPStack$1;
    Signature: ()TE;

  public void add();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.pcollections.ConsPStack$1 this
        start local 1 // java.lang.Object o
         0: .line 133
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // java.lang.Object o
        end local 0 // org.pcollections.ConsPStack$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/pcollections/ConsPStack$1;
            0    1     1     o  TE;
    Signature: (TE;)V
    MethodParameters:
      Name  Flags
      o     final

  public void remove();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.pcollections.ConsPStack$1 this
         0: .line 137
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // org.pcollections.ConsPStack$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/pcollections/ConsPStack$1;

  public void set();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.pcollections.ConsPStack$1 this
        start local 1 // java.lang.Object o
         0: .line 141
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // java.lang.Object o
        end local 0 // org.pcollections.ConsPStack$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/pcollections/ConsPStack$1;
            0    1     1     o  TE;
    Signature: (TE;)V
    MethodParameters:
      Name  Flags
      o     final
}
Signature: Ljava/lang/Object;Ljava/util/ListIterator<TE;>;
SourceFile: "ConsPStack.java"
EnclosingMethod: org.pcollections.ConsPStack.listIterator:(I)Ljava/util/ListIterator;
NestHost: org.pcollections.ConsPStack
InnerClasses:
  org.pcollections.ConsPStack$1