public final class org.apache.lucene.search.DisiPriorityQueue implements java.lang.Iterable<org.apache.lucene.search.DisiWrapper>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.apache.lucene.search.DisiPriorityQueue
  super_class: java.lang.Object
{
  private final org.apache.lucene.search.DisiWrapper[] heap;
    descriptor: [Lorg/apache/lucene/search/DisiWrapper;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  static int leftNode(int);
    descriptor: (I)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int node
         0: .line 34
            iload 0 /* node */
            iconst_1
            iadd
            iconst_1
            ishl
            iconst_1
            isub
            ireturn
        end local 0 // int node
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  node  I
    MethodParameters:
      Name  Flags
      node  

  static int rightNode(int);
    descriptor: (I)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int leftNode
         0: .line 38
            iload 0 /* leftNode */
            iconst_1
            iadd
            ireturn
        end local 0 // int leftNode
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  leftNode  I
    MethodParameters:
          Name  Flags
      leftNode  

  static int parentNode(int);
    descriptor: (I)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int node
         0: .line 42
            iload 0 /* node */
            iconst_1
            iadd
            iconst_1
            iushr
            iconst_1
            isub
            ireturn
        end local 0 // int node
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  node  I
    MethodParameters:
      Name  Flags
      node  

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.search.DisiPriorityQueue this
        start local 1 // int maxSize
         0: .line 48
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 49
            aload 0 /* this */
            iload 1 /* maxSize */
            anewarray org.apache.lucene.search.DisiWrapper
            putfield org.apache.lucene.search.DisiPriorityQueue.heap:[Lorg/apache/lucene/search/DisiWrapper;
         2: .line 50
            aload 0 /* this */
            iconst_0
            putfield org.apache.lucene.search.DisiPriorityQueue.size:I
         3: .line 51
            return
        end local 1 // int maxSize
        end local 0 // org.apache.lucene.search.DisiPriorityQueue this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/apache/lucene/search/DisiPriorityQueue;
            0    4     1  maxSize  I
    MethodParameters:
         Name  Flags
      maxSize  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.DisiPriorityQueue this
         0: .line 54
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.size:I
            ireturn
        end local 0 // org.apache.lucene.search.DisiPriorityQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/DisiPriorityQueue;

  public org.apache.lucene.search.DisiWrapper top();
    descriptor: ()Lorg/apache/lucene/search/DisiWrapper;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.DisiPriorityQueue this
         0: .line 58
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.heap:[Lorg/apache/lucene/search/DisiWrapper;
            iconst_0
            aaload
            areturn
        end local 0 // org.apache.lucene.search.DisiPriorityQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/DisiPriorityQueue;

  public org.apache.lucene.search.DisiWrapper topList();
    descriptor: ()Lorg/apache/lucene/search/DisiWrapper;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // org.apache.lucene.search.DisiPriorityQueue this
         0: .line 63
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.heap:[Lorg/apache/lucene/search/DisiWrapper;
            astore 1 /* heap */
        start local 1 // org.apache.lucene.search.DisiWrapper[] heap
         1: .line 64
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.size:I
            istore 2 /* size */
        start local 2 // int size
         2: .line 65
            aload 1 /* heap */
            iconst_0
            aaload
            astore 3 /* list */
        start local 3 // org.apache.lucene.search.DisiWrapper list
         3: .line 66
            aload 3 /* list */
            aconst_null
            putfield org.apache.lucene.search.DisiWrapper.next:Lorg/apache/lucene/search/DisiWrapper;
         4: .line 67
            iload 2 /* size */
            iconst_3
            if_icmplt 8
         5: .line 68
            aload 0 /* this */
            aload 3 /* list */
            aload 1 /* heap */
            iload 2 /* size */
            iconst_1
            invokevirtual org.apache.lucene.search.DisiPriorityQueue.topList:(Lorg/apache/lucene/search/DisiWrapper;[Lorg/apache/lucene/search/DisiWrapper;II)Lorg/apache/lucene/search/DisiWrapper;
            astore 3 /* list */
         6: .line 69
            aload 0 /* this */
            aload 3 /* list */
            aload 1 /* heap */
            iload 2 /* size */
            iconst_2
            invokevirtual org.apache.lucene.search.DisiPriorityQueue.topList:(Lorg/apache/lucene/search/DisiWrapper;[Lorg/apache/lucene/search/DisiWrapper;II)Lorg/apache/lucene/search/DisiWrapper;
            astore 3 /* list */
         7: .line 70
            goto 10
      StackMap locals: org.apache.lucene.search.DisiWrapper[] int org.apache.lucene.search.DisiWrapper
      StackMap stack:
         8: iload 2 /* size */
            iconst_2
            if_icmpne 10
            aload 1 /* heap */
            iconst_1
            aaload
            getfield org.apache.lucene.search.DisiWrapper.doc:I
            aload 3 /* list */
            getfield org.apache.lucene.search.DisiWrapper.doc:I
            if_icmpne 10
         9: .line 71
            aload 0 /* this */
            aload 1 /* heap */
            iconst_1
            aaload
            aload 3 /* list */
            invokevirtual org.apache.lucene.search.DisiPriorityQueue.prepend:(Lorg/apache/lucene/search/DisiWrapper;Lorg/apache/lucene/search/DisiWrapper;)Lorg/apache/lucene/search/DisiWrapper;
            astore 3 /* list */
        10: .line 73
      StackMap locals:
      StackMap stack:
            aload 3 /* list */
            areturn
        end local 3 // org.apache.lucene.search.DisiWrapper list
        end local 2 // int size
        end local 1 // org.apache.lucene.search.DisiWrapper[] heap
        end local 0 // org.apache.lucene.search.DisiPriorityQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/apache/lucene/search/DisiPriorityQueue;
            1   11     1  heap  [Lorg/apache/lucene/search/DisiWrapper;
            2   11     2  size  I
            3   11     3  list  Lorg/apache/lucene/search/DisiWrapper;

  private org.apache.lucene.search.DisiWrapper prepend(org.apache.lucene.search.DisiWrapper, org.apache.lucene.search.DisiWrapper);
    descriptor: (Lorg/apache/lucene/search/DisiWrapper;Lorg/apache/lucene/search/DisiWrapper;)Lorg/apache/lucene/search/DisiWrapper;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.apache.lucene.search.DisiPriorityQueue this
        start local 1 // org.apache.lucene.search.DisiWrapper w1
        start local 2 // org.apache.lucene.search.DisiWrapper w2
         0: .line 78
            aload 1 /* w1 */
            aload 2 /* w2 */
            putfield org.apache.lucene.search.DisiWrapper.next:Lorg/apache/lucene/search/DisiWrapper;
         1: .line 79
            aload 1 /* w1 */
            areturn
        end local 2 // org.apache.lucene.search.DisiWrapper w2
        end local 1 // org.apache.lucene.search.DisiWrapper w1
        end local 0 // org.apache.lucene.search.DisiPriorityQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/lucene/search/DisiPriorityQueue;
            0    2     1    w1  Lorg/apache/lucene/search/DisiWrapper;
            0    2     2    w2  Lorg/apache/lucene/search/DisiWrapper;
    MethodParameters:
      Name  Flags
      w1    
      w2    

  private org.apache.lucene.search.DisiWrapper topList(org.apache.lucene.search.DisiWrapper, org.apache.lucene.search.DisiWrapper[], int, int);
    descriptor: (Lorg/apache/lucene/search/DisiWrapper;[Lorg/apache/lucene/search/DisiWrapper;II)Lorg/apache/lucene/search/DisiWrapper;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=8, args_size=5
        start local 0 // org.apache.lucene.search.DisiPriorityQueue this
        start local 1 // org.apache.lucene.search.DisiWrapper list
        start local 2 // org.apache.lucene.search.DisiWrapper[] heap
        start local 3 // int size
        start local 4 // int i
         0: .line 84
            aload 2 /* heap */
            iload 4 /* i */
            aaload
            astore 5 /* w */
        start local 5 // org.apache.lucene.search.DisiWrapper w
         1: .line 85
            aload 5 /* w */
            getfield org.apache.lucene.search.DisiWrapper.doc:I
            aload 1 /* list */
            getfield org.apache.lucene.search.DisiWrapper.doc:I
            if_icmpne 11
         2: .line 86
            aload 0 /* this */
            aload 5 /* w */
            aload 1 /* list */
            invokevirtual org.apache.lucene.search.DisiPriorityQueue.prepend:(Lorg/apache/lucene/search/DisiWrapper;Lorg/apache/lucene/search/DisiWrapper;)Lorg/apache/lucene/search/DisiWrapper;
            astore 1 /* list */
         3: .line 87
            iload 4 /* i */
            invokestatic org.apache.lucene.search.DisiPriorityQueue.leftNode:(I)I
            istore 6 /* left */
        start local 6 // int left
         4: .line 88
            iload 6 /* left */
            iconst_1
            iadd
            istore 7 /* right */
        start local 7 // int right
         5: .line 89
            iload 7 /* right */
            iload 3 /* size */
            if_icmpge 9
         6: .line 90
            aload 0 /* this */
            aload 1 /* list */
            aload 2 /* heap */
            iload 3 /* size */
            iload 6 /* left */
            invokevirtual org.apache.lucene.search.DisiPriorityQueue.topList:(Lorg/apache/lucene/search/DisiWrapper;[Lorg/apache/lucene/search/DisiWrapper;II)Lorg/apache/lucene/search/DisiWrapper;
            astore 1 /* list */
         7: .line 91
            aload 0 /* this */
            aload 1 /* list */
            aload 2 /* heap */
            iload 3 /* size */
            iload 7 /* right */
            invokevirtual org.apache.lucene.search.DisiPriorityQueue.topList:(Lorg/apache/lucene/search/DisiWrapper;[Lorg/apache/lucene/search/DisiWrapper;II)Lorg/apache/lucene/search/DisiWrapper;
            astore 1 /* list */
         8: .line 92
            goto 11
      StackMap locals: org.apache.lucene.search.DisiWrapper int int
      StackMap stack:
         9: iload 6 /* left */
            iload 3 /* size */
            if_icmpge 11
            aload 2 /* heap */
            iload 6 /* left */
            aaload
            getfield org.apache.lucene.search.DisiWrapper.doc:I
            aload 1 /* list */
            getfield org.apache.lucene.search.DisiWrapper.doc:I
            if_icmpne 11
        10: .line 93
            aload 0 /* this */
            aload 2 /* heap */
            iload 6 /* left */
            aaload
            aload 1 /* list */
            invokevirtual org.apache.lucene.search.DisiPriorityQueue.prepend:(Lorg/apache/lucene/search/DisiWrapper;Lorg/apache/lucene/search/DisiWrapper;)Lorg/apache/lucene/search/DisiWrapper;
            astore 1 /* list */
        end local 7 // int right
        end local 6 // int left
        11: .line 96
      StackMap locals:
      StackMap stack:
            aload 1 /* list */
            areturn
        end local 5 // org.apache.lucene.search.DisiWrapper w
        end local 4 // int i
        end local 3 // int size
        end local 2 // org.apache.lucene.search.DisiWrapper[] heap
        end local 1 // org.apache.lucene.search.DisiWrapper list
        end local 0 // org.apache.lucene.search.DisiPriorityQueue this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   12     0   this  Lorg/apache/lucene/search/DisiPriorityQueue;
            0   12     1   list  Lorg/apache/lucene/search/DisiWrapper;
            0   12     2   heap  [Lorg/apache/lucene/search/DisiWrapper;
            0   12     3   size  I
            0   12     4      i  I
            1   12     5      w  Lorg/apache/lucene/search/DisiWrapper;
            4   11     6   left  I
            5   11     7  right  I
    MethodParameters:
      Name  Flags
      list  
      heap  
      size  
      i     

  public org.apache.lucene.search.DisiWrapper add(org.apache.lucene.search.DisiWrapper);
    descriptor: (Lorg/apache/lucene/search/DisiWrapper;)Lorg/apache/lucene/search/DisiWrapper;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.apache.lucene.search.DisiPriorityQueue this
        start local 1 // org.apache.lucene.search.DisiWrapper entry
         0: .line 100
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.heap:[Lorg/apache/lucene/search/DisiWrapper;
            astore 2 /* heap */
        start local 2 // org.apache.lucene.search.DisiWrapper[] heap
         1: .line 101
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.size:I
            istore 3 /* size */
        start local 3 // int size
         2: .line 102
            aload 2 /* heap */
            iload 3 /* size */
            aload 1 /* entry */
            aastore
         3: .line 103
            aload 0 /* this */
            iload 3 /* size */
            invokevirtual org.apache.lucene.search.DisiPriorityQueue.upHeap:(I)V
         4: .line 104
            aload 0 /* this */
            iload 3 /* size */
            iconst_1
            iadd
            putfield org.apache.lucene.search.DisiPriorityQueue.size:I
         5: .line 105
            aload 2 /* heap */
            iconst_0
            aaload
            areturn
        end local 3 // int size
        end local 2 // org.apache.lucene.search.DisiWrapper[] heap
        end local 1 // org.apache.lucene.search.DisiWrapper entry
        end local 0 // org.apache.lucene.search.DisiPriorityQueue this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/apache/lucene/search/DisiPriorityQueue;
            0    6     1  entry  Lorg/apache/lucene/search/DisiWrapper;
            1    6     2   heap  [Lorg/apache/lucene/search/DisiWrapper;
            2    6     3   size  I
    MethodParameters:
       Name  Flags
      entry  

  public org.apache.lucene.search.DisiWrapper pop();
    descriptor: ()Lorg/apache/lucene/search/DisiWrapper;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // org.apache.lucene.search.DisiPriorityQueue this
         0: .line 109
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.heap:[Lorg/apache/lucene/search/DisiWrapper;
            astore 1 /* heap */
        start local 1 // org.apache.lucene.search.DisiWrapper[] heap
         1: .line 110
            aload 1 /* heap */
            iconst_0
            aaload
            astore 2 /* result */
        start local 2 // org.apache.lucene.search.DisiWrapper result
         2: .line 111
            aload 0 /* this */
            dup
            getfield org.apache.lucene.search.DisiPriorityQueue.size:I
            iconst_1
            isub
            dup_x1
            putfield org.apache.lucene.search.DisiPriorityQueue.size:I
            istore 3 /* i */
        start local 3 // int i
         3: .line 112
            aload 1 /* heap */
            iconst_0
            aload 1 /* heap */
            iload 3 /* i */
            aaload
            aastore
         4: .line 113
            aload 1 /* heap */
            iload 3 /* i */
            aconst_null
            aastore
         5: .line 114
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.apache.lucene.search.DisiPriorityQueue.downHeap:(I)V
         6: .line 115
            aload 2 /* result */
            areturn
        end local 3 // int i
        end local 2 // org.apache.lucene.search.DisiWrapper result
        end local 1 // org.apache.lucene.search.DisiWrapper[] heap
        end local 0 // org.apache.lucene.search.DisiPriorityQueue this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/apache/lucene/search/DisiPriorityQueue;
            1    7     1    heap  [Lorg/apache/lucene/search/DisiWrapper;
            2    7     2  result  Lorg/apache/lucene/search/DisiWrapper;
            3    7     3       i  I

  public org.apache.lucene.search.DisiWrapper updateTop();
    descriptor: ()Lorg/apache/lucene/search/DisiWrapper;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.DisiPriorityQueue this
         0: .line 119
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.size:I
            invokevirtual org.apache.lucene.search.DisiPriorityQueue.downHeap:(I)V
         1: .line 120
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.heap:[Lorg/apache/lucene/search/DisiWrapper;
            iconst_0
            aaload
            areturn
        end local 0 // org.apache.lucene.search.DisiPriorityQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/lucene/search/DisiPriorityQueue;

  org.apache.lucene.search.DisiWrapper updateTop(org.apache.lucene.search.DisiWrapper);
    descriptor: (Lorg/apache/lucene/search/DisiWrapper;)Lorg/apache/lucene/search/DisiWrapper;
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.search.DisiPriorityQueue this
        start local 1 // org.apache.lucene.search.DisiWrapper topReplacement
         0: .line 124
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.heap:[Lorg/apache/lucene/search/DisiWrapper;
            iconst_0
            aload 1 /* topReplacement */
            aastore
         1: .line 125
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.DisiPriorityQueue.updateTop:()Lorg/apache/lucene/search/DisiWrapper;
            areturn
        end local 1 // org.apache.lucene.search.DisiWrapper topReplacement
        end local 0 // org.apache.lucene.search.DisiPriorityQueue this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/apache/lucene/search/DisiPriorityQueue;
            0    2     1  topReplacement  Lorg/apache/lucene/search/DisiWrapper;
    MethodParameters:
                Name  Flags
      topReplacement  

  void upHeap(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.apache.lucene.search.DisiPriorityQueue this
        start local 1 // int i
         0: .line 129
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.heap:[Lorg/apache/lucene/search/DisiWrapper;
            iload 1 /* i */
            aaload
            astore 2 /* node */
        start local 2 // org.apache.lucene.search.DisiWrapper node
         1: .line 130
            aload 2 /* node */
            getfield org.apache.lucene.search.DisiWrapper.doc:I
            istore 3 /* nodeDoc */
        start local 3 // int nodeDoc
         2: .line 131
            iload 1 /* i */
            invokestatic org.apache.lucene.search.DisiPriorityQueue.parentNode:(I)I
            istore 4 /* j */
        start local 4 // int j
         3: .line 132
            goto 7
         4: .line 133
      StackMap locals: org.apache.lucene.search.DisiWrapper int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.heap:[Lorg/apache/lucene/search/DisiWrapper;
            iload 1 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.heap:[Lorg/apache/lucene/search/DisiWrapper;
            iload 4 /* j */
            aaload
            aastore
         5: .line 134
            iload 4 /* j */
            istore 1 /* i */
         6: .line 135
            iload 4 /* j */
            invokestatic org.apache.lucene.search.DisiPriorityQueue.parentNode:(I)I
            istore 4 /* j */
         7: .line 132
      StackMap locals:
      StackMap stack:
            iload 4 /* j */
            iflt 8
            iload 3 /* nodeDoc */
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.heap:[Lorg/apache/lucene/search/DisiWrapper;
            iload 4 /* j */
            aaload
            getfield org.apache.lucene.search.DisiWrapper.doc:I
            if_icmplt 4
         8: .line 137
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.heap:[Lorg/apache/lucene/search/DisiWrapper;
            iload 1 /* i */
            aload 2 /* node */
            aastore
         9: .line 138
            return
        end local 4 // int j
        end local 3 // int nodeDoc
        end local 2 // org.apache.lucene.search.DisiWrapper node
        end local 1 // int i
        end local 0 // org.apache.lucene.search.DisiPriorityQueue this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lorg/apache/lucene/search/DisiPriorityQueue;
            0   10     1        i  I
            1   10     2     node  Lorg/apache/lucene/search/DisiWrapper;
            2   10     3  nodeDoc  I
            3   10     4        j  I
    MethodParameters:
      Name  Flags
      i     

  void downHeap(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // org.apache.lucene.search.DisiPriorityQueue this
        start local 1 // int size
         0: .line 141
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: .line 142
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.heap:[Lorg/apache/lucene/search/DisiWrapper;
            iconst_0
            aaload
            astore 3 /* node */
        start local 3 // org.apache.lucene.search.DisiWrapper node
         2: .line 143
            iload 2 /* i */
            invokestatic org.apache.lucene.search.DisiPriorityQueue.leftNode:(I)I
            istore 4 /* j */
        start local 4 // int j
         3: .line 144
            iload 4 /* j */
            iload 1 /* size */
            if_icmpge 17
         4: .line 145
            iload 4 /* j */
            invokestatic org.apache.lucene.search.DisiPriorityQueue.rightNode:(I)I
            istore 5 /* k */
        start local 5 // int k
         5: .line 146
            iload 5 /* k */
            iload 1 /* size */
            if_icmpge 7
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.heap:[Lorg/apache/lucene/search/DisiWrapper;
            iload 5 /* k */
            aaload
            getfield org.apache.lucene.search.DisiWrapper.doc:I
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.heap:[Lorg/apache/lucene/search/DisiWrapper;
            iload 4 /* j */
            aaload
            getfield org.apache.lucene.search.DisiWrapper.doc:I
            if_icmpge 7
         6: .line 147
            iload 5 /* k */
            istore 4 /* j */
         7: .line 149
      StackMap locals: org.apache.lucene.search.DisiPriorityQueue int int org.apache.lucene.search.DisiWrapper int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.heap:[Lorg/apache/lucene/search/DisiWrapper;
            iload 4 /* j */
            aaload
            getfield org.apache.lucene.search.DisiWrapper.doc:I
            aload 3 /* node */
            getfield org.apache.lucene.search.DisiWrapper.doc:I
            if_icmpge 17
         8: .line 151
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.heap:[Lorg/apache/lucene/search/DisiWrapper;
            iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.heap:[Lorg/apache/lucene/search/DisiWrapper;
            iload 4 /* j */
            aaload
            aastore
         9: .line 152
            iload 4 /* j */
            istore 2 /* i */
        10: .line 153
            iload 2 /* i */
            invokestatic org.apache.lucene.search.DisiPriorityQueue.leftNode:(I)I
            istore 4 /* j */
        11: .line 154
            iload 4 /* j */
            invokestatic org.apache.lucene.search.DisiPriorityQueue.rightNode:(I)I
            istore 5 /* k */
        12: .line 155
            iload 5 /* k */
            iload 1 /* size */
            if_icmpge 14
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.heap:[Lorg/apache/lucene/search/DisiWrapper;
            iload 5 /* k */
            aaload
            getfield org.apache.lucene.search.DisiWrapper.doc:I
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.heap:[Lorg/apache/lucene/search/DisiWrapper;
            iload 4 /* j */
            aaload
            getfield org.apache.lucene.search.DisiWrapper.doc:I
            if_icmpge 14
        13: .line 156
            iload 5 /* k */
            istore 4 /* j */
        14: .line 158
      StackMap locals:
      StackMap stack:
            iload 4 /* j */
            iload 1 /* size */
            if_icmpge 16
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.heap:[Lorg/apache/lucene/search/DisiWrapper;
            iload 4 /* j */
            aaload
            getfield org.apache.lucene.search.DisiWrapper.doc:I
            aload 3 /* node */
            getfield org.apache.lucene.search.DisiWrapper.doc:I
        15: .line 150
            if_icmplt 8
        16: .line 159
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.heap:[Lorg/apache/lucene/search/DisiWrapper;
            iload 2 /* i */
            aload 3 /* node */
            aastore
        end local 5 // int k
        17: .line 162
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int j
        end local 3 // org.apache.lucene.search.DisiWrapper node
        end local 2 // int i
        end local 1 // int size
        end local 0 // org.apache.lucene.search.DisiPriorityQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lorg/apache/lucene/search/DisiPriorityQueue;
            0   18     1  size  I
            1   18     2     i  I
            2   18     3  node  Lorg/apache/lucene/search/DisiWrapper;
            3   18     4     j  I
            5   17     5     k  I
    MethodParameters:
      Name  Flags
      size  

  public java.util.Iterator<org.apache.lucene.search.DisiWrapper> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.DisiPriorityQueue this
         0: .line 166
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.heap:[Lorg/apache/lucene/search/DisiWrapper;
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            iconst_0
            aload 0 /* this */
            getfield org.apache.lucene.search.DisiPriorityQueue.size:I
            invokeinterface java.util.List.subList:(II)Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            areturn
        end local 0 // org.apache.lucene.search.DisiPriorityQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/DisiPriorityQueue;
    Signature: ()Ljava/util/Iterator<Lorg/apache/lucene/search/DisiWrapper;>;
}
Signature: Ljava/lang/Object;Ljava/lang/Iterable<Lorg/apache/lucene/search/DisiWrapper;>;
SourceFile: "DisiPriorityQueue.java"