public abstract class org.apache.lucene.util.PriorityQueue<T> implements java.lang.Iterable<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.apache.lucene.util.PriorityQueue
  super_class: java.lang.Object
{
  private int size;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private final int maxSize;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final T[] heap;
    descriptor: [Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: [TT;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.util.PriorityQueue this
        start local 1 // int maxSize
         0: .line 47
            aload 0 /* this */
            iload 1 /* maxSize */
            invokedynamic get()Ljava/util/function/Supplier;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()Ljava/lang/Object;
                  org/apache/lucene/util/PriorityQueue.lambda$0()Ljava/lang/Object; (6)
                  ()Ljava/lang/Object;
            invokespecial org.apache.lucene.util.PriorityQueue.<init>:(ILjava/util/function/Supplier;)V
         1: .line 48
            return
        end local 1 // int maxSize
        end local 0 // org.apache.lucene.util.PriorityQueue this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/apache/lucene/util/PriorityQueue<TT;>;
            0    2     1  maxSize  I
    MethodParameters:
         Name  Flags
      maxSize  

  public void <init>(int, java.util.function.Supplier<T>);
    descriptor: (ILjava/util/function/Supplier;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=3
        start local 0 // org.apache.lucene.util.PriorityQueue this
        start local 1 // int maxSize
        start local 2 // java.util.function.Supplier sentinelObjectSupplier
         0: .line 83
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 39
            aload 0 /* this */
            iconst_0
            putfield org.apache.lucene.util.PriorityQueue.size:I
         2: .line 85
            iload 1 /* maxSize */
            ifne 5
         3: .line 87
            iconst_2
            istore 3 /* heapSize */
        start local 3 // int heapSize
         4: .line 88
            goto 8
        end local 3 // int heapSize
         5: .line 90
      StackMap locals: org.apache.lucene.util.PriorityQueue int java.util.function.Supplier
      StackMap stack:
            iload 1 /* maxSize */
            iflt 6
            iload 1 /* maxSize */
            getstatic org.apache.lucene.util.ArrayUtil.MAX_ARRAY_LENGTH:I
            if_icmplt 7
         6: .line 92
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "maxSize must be >= 0 and < "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            getstatic org.apache.lucene.util.ArrayUtil.MAX_ARRAY_LENGTH:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "; got: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 1 /* maxSize */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 97
      StackMap locals:
      StackMap stack:
            iload 1 /* maxSize */
            iconst_1
            iadd
            istore 3 /* heapSize */
        start local 3 // int heapSize
         8: .line 100
      StackMap locals: int
      StackMap stack:
            iload 3 /* heapSize */
            anewarray java.lang.Object
            astore 4 /* h */
        start local 4 // java.lang.Object[] h
         9: .line 101
            aload 0 /* this */
            aload 4 /* h */
            putfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
        10: .line 102
            aload 0 /* this */
            iload 1 /* maxSize */
            putfield org.apache.lucene.util.PriorityQueue.maxSize:I
        11: .line 105
            aload 2 /* sentinelObjectSupplier */
            invokeinterface java.util.function.Supplier.get:()Ljava/lang/Object;
            astore 5 /* sentinel */
        start local 5 // java.lang.Object sentinel
        12: .line 106
            aload 5 /* sentinel */
            ifnull 20
        13: .line 107
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iconst_1
            aload 5 /* sentinel */
            aastore
        14: .line 108
            iconst_2
            istore 6 /* i */
        start local 6 // int i
        15: goto 18
        16: .line 109
      StackMap locals: java.lang.Object[] java.lang.Object int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iload 6 /* i */
            aload 2 /* sentinelObjectSupplier */
            invokeinterface java.util.function.Supplier.get:()Ljava/lang/Object;
            aastore
        17: .line 108
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        18: iload 6 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            arraylength
            if_icmplt 16
        end local 6 // int i
        19: .line 111
            aload 0 /* this */
            iload 1 /* maxSize */
            putfield org.apache.lucene.util.PriorityQueue.size:I
        20: .line 113
      StackMap locals:
      StackMap stack:
            return
        end local 5 // java.lang.Object sentinel
        end local 4 // java.lang.Object[] h
        end local 3 // int heapSize
        end local 2 // java.util.function.Supplier sentinelObjectSupplier
        end local 1 // int maxSize
        end local 0 // org.apache.lucene.util.PriorityQueue this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0   21     0                    this  Lorg/apache/lucene/util/PriorityQueue<TT;>;
            0   21     1                 maxSize  I
            0   21     2  sentinelObjectSupplier  Ljava/util/function/Supplier<TT;>;
            4    5     3                heapSize  I
            8   21     3                heapSize  I
            9   21     4                       h  [Ljava/lang/Object;
           12   21     5                sentinel  TT;
           15   19     6                       i  I
    Signature: (ILjava/util/function/Supplier<TT;>;)V
    MethodParameters:
                        Name  Flags
      maxSize                 
      sentinelObjectSupplier  

  protected abstract boolean lessThan(T, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Z
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Signature: (TT;TT;)Z
    MethodParameters:
      Name  Flags
      a     
      b     

  public final T add();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.util.PriorityQueue this
        start local 1 // java.lang.Object element
         0: .line 129
            aload 0 /* this */
            dup
            getfield org.apache.lucene.util.PriorityQueue.size:I
            iconst_1
            iadd
            putfield org.apache.lucene.util.PriorityQueue.size:I
         1: .line 130
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.size:I
            aload 1 /* element */
            aastore
         2: .line 131
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.size:I
            invokevirtual org.apache.lucene.util.PriorityQueue.upHeap:(I)Z
            pop
         3: .line 132
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iconst_1
            aaload
            areturn
        end local 1 // java.lang.Object element
        end local 0 // org.apache.lucene.util.PriorityQueue this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/apache/lucene/util/PriorityQueue<TT;>;
            0    4     1  element  TT;
    Signature: (TT;)TT;
    MethodParameters:
         Name  Flags
      element  

  public T insertWithOverflow();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.apache.lucene.util.PriorityQueue this
        start local 1 // java.lang.Object element
         0: .line 146
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.size:I
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.maxSize:I
            if_icmpge 3
         1: .line 147
            aload 0 /* this */
            aload 1 /* element */
            invokevirtual org.apache.lucene.util.PriorityQueue.add:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 148
            aconst_null
            areturn
         3: .line 149
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.size:I
            ifle 8
            aload 0 /* this */
            aload 1 /* element */
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iconst_1
            aaload
            invokevirtual org.apache.lucene.util.PriorityQueue.lessThan:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 8
         4: .line 150
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iconst_1
            aaload
            astore 2 /* ret */
        start local 2 // java.lang.Object ret
         5: .line 151
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iconst_1
            aload 1 /* element */
            aastore
         6: .line 152
            aload 0 /* this */
            invokevirtual org.apache.lucene.util.PriorityQueue.updateTop:()Ljava/lang/Object;
            pop
         7: .line 153
            aload 2 /* ret */
            areturn
        end local 2 // java.lang.Object ret
         8: .line 155
      StackMap locals:
      StackMap stack:
            aload 1 /* element */
            areturn
        end local 1 // java.lang.Object element
        end local 0 // org.apache.lucene.util.PriorityQueue this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lorg/apache/lucene/util/PriorityQueue<TT;>;
            0    9     1  element  TT;
            5    8     2      ret  TT;
    Signature: (TT;)TT;
    MethodParameters:
         Name  Flags
      element  

  public final T top();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.PriorityQueue this
         0: .line 164
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iconst_1
            aaload
            areturn
        end local 0 // org.apache.lucene.util.PriorityQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/PriorityQueue<TT;>;
    Signature: ()TT;

  public final T pop();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.apache.lucene.util.PriorityQueue this
         0: .line 170
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.size:I
            ifle 7
         1: .line 171
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iconst_1
            aaload
            astore 1 /* result */
        start local 1 // java.lang.Object result
         2: .line 172
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iconst_1
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.size:I
            aaload
            aastore
         3: .line 173
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.size:I
            aconst_null
            aastore
         4: .line 174
            aload 0 /* this */
            dup
            getfield org.apache.lucene.util.PriorityQueue.size:I
            iconst_1
            isub
            putfield org.apache.lucene.util.PriorityQueue.size:I
         5: .line 175
            aload 0 /* this */
            iconst_1
            invokevirtual org.apache.lucene.util.PriorityQueue.downHeap:(I)V
         6: .line 176
            aload 1 /* result */
            areturn
        end local 1 // java.lang.Object result
         7: .line 178
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // org.apache.lucene.util.PriorityQueue this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/apache/lucene/util/PriorityQueue<TT;>;
            2    7     1  result  TT;
    Signature: ()TT;

  public final T updateTop();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.PriorityQueue this
         0: .line 202
            aload 0 /* this */
            iconst_1
            invokevirtual org.apache.lucene.util.PriorityQueue.downHeap:(I)V
         1: .line 203
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iconst_1
            aaload
            areturn
        end local 0 // org.apache.lucene.util.PriorityQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/lucene/util/PriorityQueue<TT;>;
    Signature: ()TT;

  public final T updateTop();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.util.PriorityQueue this
        start local 1 // java.lang.Object newTop
         0: .line 210
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iconst_1
            aload 1 /* newTop */
            aastore
         1: .line 211
            aload 0 /* this */
            invokevirtual org.apache.lucene.util.PriorityQueue.updateTop:()Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object newTop
        end local 0 // org.apache.lucene.util.PriorityQueue this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/apache/lucene/util/PriorityQueue<TT;>;
            0    2     1  newTop  TT;
    Signature: (TT;)TT;
    MethodParameters:
        Name  Flags
      newTop  

  public final int size();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.PriorityQueue this
         0: .line 216
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.size:I
            ireturn
        end local 0 // org.apache.lucene.util.PriorityQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/PriorityQueue<TT;>;

  public final void clear();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.lucene.util.PriorityQueue this
         0: .line 221
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         1: goto 4
         2: .line 222
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iload 1 /* i */
            aconst_null
            aastore
         3: .line 221
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 1 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.size:I
            if_icmple 2
        end local 1 // int i
         5: .line 224
            aload 0 /* this */
            iconst_0
            putfield org.apache.lucene.util.PriorityQueue.size:I
         6: .line 225
            return
        end local 0 // org.apache.lucene.util.PriorityQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/lucene/util/PriorityQueue<TT;>;
            1    5     1     i  I

  public final boolean remove();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.apache.lucene.util.PriorityQueue this
        start local 1 // java.lang.Object element
         0: .line 234
            iconst_1
            istore 2 /* i */
        start local 2 // int i
         1: goto 11
         2: .line 235
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            aload 1 /* element */
            if_acmpne 10
         3: .line 236
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.size:I
            aaload
            aastore
         4: .line 237
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.size:I
            aconst_null
            aastore
         5: .line 238
            aload 0 /* this */
            dup
            getfield org.apache.lucene.util.PriorityQueue.size:I
            iconst_1
            isub
            putfield org.apache.lucene.util.PriorityQueue.size:I
         6: .line 239
            iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.size:I
            if_icmpgt 9
         7: .line 240
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual org.apache.lucene.util.PriorityQueue.upHeap:(I)Z
            ifne 9
         8: .line 241
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual org.apache.lucene.util.PriorityQueue.downHeap:(I)V
         9: .line 244
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        10: .line 234
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.size:I
            if_icmple 2
        end local 2 // int i
        12: .line 247
            iconst_0
            ireturn
        end local 1 // java.lang.Object element
        end local 0 // org.apache.lucene.util.PriorityQueue this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   13     0     this  Lorg/apache/lucene/util/PriorityQueue<TT;>;
            0   13     1  element  TT;
            1   12     2        i  I
    Signature: (TT;)Z
    MethodParameters:
         Name  Flags
      element  

  private final boolean upHeap(int);
    descriptor: (I)Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.apache.lucene.util.PriorityQueue this
        start local 1 // int origPos
         0: .line 251
            iload 1 /* origPos */
            istore 2 /* i */
        start local 2 // int i
         1: .line 252
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            astore 3 /* node */
        start local 3 // java.lang.Object node
         2: .line 253
            iload 2 /* i */
            iconst_1
            iushr
            istore 4 /* j */
        start local 4 // int j
         3: .line 254
            goto 7
         4: .line 255
      StackMap locals: int java.lang.Object int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iload 4 /* j */
            aaload
            aastore
         5: .line 256
            iload 4 /* j */
            istore 2 /* i */
         6: .line 257
            iload 4 /* j */
            iconst_1
            iushr
            istore 4 /* j */
         7: .line 254
      StackMap locals:
      StackMap stack:
            iload 4 /* j */
            ifle 8
            aload 0 /* this */
            aload 3 /* node */
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iload 4 /* j */
            aaload
            invokevirtual org.apache.lucene.util.PriorityQueue.lessThan:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 4
         8: .line 259
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iload 2 /* i */
            aload 3 /* node */
            aastore
         9: .line 260
            iload 2 /* i */
            iload 1 /* origPos */
            if_icmpeq 10
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
        10: iconst_0
            ireturn
        end local 4 // int j
        end local 3 // java.lang.Object node
        end local 2 // int i
        end local 1 // int origPos
        end local 0 // org.apache.lucene.util.PriorityQueue this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lorg/apache/lucene/util/PriorityQueue<TT;>;
            0   11     1  origPos  I
            1   11     2        i  I
            2   11     3     node  TT;
            3   11     4        j  I
    MethodParameters:
         Name  Flags
      origPos  

  private final void downHeap(int);
    descriptor: (I)V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.apache.lucene.util.PriorityQueue this
        start local 1 // int i
         0: .line 264
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iload 1 /* i */
            aaload
            astore 2 /* node */
        start local 2 // java.lang.Object node
         1: .line 265
            iload 1 /* i */
            iconst_1
            ishl
            istore 3 /* j */
        start local 3 // int j
         2: .line 266
            iload 3 /* j */
            iconst_1
            iadd
            istore 4 /* k */
        start local 4 // int k
         3: .line 267
            iload 4 /* k */
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.size:I
            if_icmpgt 12
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iload 4 /* k */
            aaload
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iload 3 /* j */
            aaload
            invokevirtual org.apache.lucene.util.PriorityQueue.lessThan:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 12
         4: .line 268
            iload 4 /* k */
            istore 3 /* j */
         5: .line 270
            goto 12
         6: .line 271
      StackMap locals: java.lang.Object int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iload 1 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iload 3 /* j */
            aaload
            aastore
         7: .line 272
            iload 3 /* j */
            istore 1 /* i */
         8: .line 273
            iload 1 /* i */
            iconst_1
            ishl
            istore 3 /* j */
         9: .line 274
            iload 3 /* j */
            iconst_1
            iadd
            istore 4 /* k */
        10: .line 275
            iload 4 /* k */
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.size:I
            if_icmpgt 12
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iload 4 /* k */
            aaload
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iload 3 /* j */
            aaload
            invokevirtual org.apache.lucene.util.PriorityQueue.lessThan:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 12
        11: .line 276
            iload 4 /* k */
            istore 3 /* j */
        12: .line 270
      StackMap locals:
      StackMap stack:
            iload 3 /* j */
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.size:I
            if_icmpgt 13
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iload 3 /* j */
            aaload
            aload 2 /* node */
            invokevirtual org.apache.lucene.util.PriorityQueue.lessThan:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 6
        13: .line 279
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            iload 1 /* i */
            aload 2 /* node */
            aastore
        14: .line 280
            return
        end local 4 // int k
        end local 3 // int j
        end local 2 // java.lang.Object node
        end local 1 // int i
        end local 0 // org.apache.lucene.util.PriorityQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lorg/apache/lucene/util/PriorityQueue<TT;>;
            0   15     1     i  I
            1   15     2  node  TT;
            2   15     3     j  I
            3   15     4     k  I
    MethodParameters:
      Name  Flags
      i     

  protected final java.lang.Object[] getHeapArray();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.PriorityQueue this
         0: .line 286
            aload 0 /* this */
            getfield org.apache.lucene.util.PriorityQueue.heap:[Ljava/lang/Object;
            areturn
        end local 0 // org.apache.lucene.util.PriorityQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/PriorityQueue<TT;>;

  public java.util.Iterator<T> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.PriorityQueue this
         0: .line 291
            new org.apache.lucene.util.PriorityQueue$1
            dup
            aload 0 /* this */
            invokespecial org.apache.lucene.util.PriorityQueue$1.<init>:(Lorg/apache/lucene/util/PriorityQueue;)V
            areturn
        end local 0 // org.apache.lucene.util.PriorityQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/PriorityQueue<TT;>;
    Signature: ()Ljava/util/Iterator<TT;>;

  private static java.lang.Object lambda$0();
    descriptor: ()Ljava/lang/Object;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 47
            aconst_null
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Ljava/lang/Iterable<TT;>;
SourceFile: "PriorityQueue.java"
NestMembers:
  org.apache.lucene.util.PriorityQueue$1
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  org.apache.lucene.util.PriorityQueue$1