class org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum extends org.apache.lucene.index.BaseTermsEnum
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum
  super_class: org.apache.lucene.index.BaseTermsEnum
{
  final org.apache.lucene.index.FreqProxTermsWriterPerField terms;
    descriptor: Lorg/apache/lucene/index/FreqProxTermsWriterPerField;
    flags: (0x0010) ACC_FINAL

  final int[] sortedTermIDs;
    descriptor: [I
    flags: (0x0010) ACC_FINAL

  final org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray postingsArray;
    descriptor: Lorg/apache/lucene/index/FreqProxTermsWriterPerField$FreqProxPostingsArray;
    flags: (0x0010) ACC_FINAL

  final org.apache.lucene.util.BytesRef scratch;
    descriptor: Lorg/apache/lucene/util/BytesRef;
    flags: (0x0010) ACC_FINAL

  final int numTerms;
    descriptor: I
    flags: (0x0010) ACC_FINAL

  int ord;
    descriptor: I
    flags: (0x0000) 

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 122
            ldc Lorg/apache/lucene/index/FreqProxFields;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(org.apache.lucene.index.FreqProxTermsWriterPerField);
    descriptor: (Lorg/apache/lucene/index/FreqProxTermsWriterPerField;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum this
        start local 1 // org.apache.lucene.index.FreqProxTermsWriterPerField terms
         0: .line 130
            aload 0 /* this */
            invokespecial org.apache.lucene.index.BaseTermsEnum.<init>:()V
         1: .line 126
            aload 0 /* this */
            new org.apache.lucene.util.BytesRef
            dup
            invokespecial org.apache.lucene.util.BytesRef.<init>:()V
            putfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.scratch:Lorg/apache/lucene/util/BytesRef;
         2: .line 131
            aload 0 /* this */
            aload 1 /* terms */
            putfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.terms:Lorg/apache/lucene/index/FreqProxTermsWriterPerField;
         3: .line 132
            aload 0 /* this */
            aload 1 /* terms */
            invokevirtual org.apache.lucene.index.FreqProxTermsWriterPerField.getNumTerms:()I
            putfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.numTerms:I
         4: .line 133
            aload 0 /* this */
            aload 1 /* terms */
            invokevirtual org.apache.lucene.index.FreqProxTermsWriterPerField.getSortedTermIDs:()[I
            putfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.sortedTermIDs:[I
         5: .line 134
            getstatic org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.$assertionsDisabled:Z
            ifne 6
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.sortedTermIDs:[I
            ifnonnull 6
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         6: .line 135
      StackMap locals: org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum org.apache.lucene.index.FreqProxTermsWriterPerField
      StackMap stack:
            aload 0 /* this */
            aload 1 /* terms */
            getfield org.apache.lucene.index.FreqProxTermsWriterPerField.postingsArray:Lorg/apache/lucene/index/ParallelPostingsArray;
            checkcast org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray
            putfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.postingsArray:Lorg/apache/lucene/index/FreqProxTermsWriterPerField$FreqProxPostingsArray;
         7: .line 136
            return
        end local 1 // org.apache.lucene.index.FreqProxTermsWriterPerField terms
        end local 0 // org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lorg/apache/lucene/index/FreqProxFields$FreqProxTermsEnum;
            0    8     1  terms  Lorg/apache/lucene/index/FreqProxTermsWriterPerField;
    MethodParameters:
       Name  Flags
      terms  

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum this
         0: .line 139
            aload 0 /* this */
            iconst_m1
            putfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.ord:I
         1: .line 140
            return
        end local 0 // org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/lucene/index/FreqProxFields$FreqProxTermsEnum;

  public org.apache.lucene.index.TermsEnum$SeekStatus seekCeil(org.apache.lucene.util.BytesRef);
    descriptor: (Lorg/apache/lucene/util/BytesRef;)Lorg/apache/lucene/index/TermsEnum$SeekStatus;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum this
        start local 1 // org.apache.lucene.util.BytesRef text
         0: .line 147
            iconst_0
            istore 2 /* lo */
        start local 2 // int lo
         1: .line 148
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.numTerms:I
            iconst_1
            isub
            istore 3 /* hi */
        start local 3 // int hi
         2: .line 149
            goto 16
         3: .line 150
      StackMap locals: int int
      StackMap stack:
            iload 2 /* lo */
            iload 3 /* hi */
            iadd
            iconst_1
            iushr
            istore 4 /* mid */
        start local 4 // int mid
         4: .line 151
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.postingsArray:Lorg/apache/lucene/index/FreqProxTermsWriterPerField$FreqProxPostingsArray;
            getfield org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray.textStarts:[I
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.sortedTermIDs:[I
            iload 4 /* mid */
            iaload
            iaload
            istore 5 /* textStart */
        start local 5 // int textStart
         5: .line 152
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.terms:Lorg/apache/lucene/index/FreqProxTermsWriterPerField;
            getfield org.apache.lucene.index.FreqProxTermsWriterPerField.bytePool:Lorg/apache/lucene/util/ByteBlockPool;
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.scratch:Lorg/apache/lucene/util/BytesRef;
            iload 5 /* textStart */
            invokevirtual org.apache.lucene.util.ByteBlockPool.setBytesRef:(Lorg/apache/lucene/util/BytesRef;I)V
         6: .line 153
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.scratch:Lorg/apache/lucene/util/BytesRef;
            aload 1 /* text */
            invokevirtual org.apache.lucene.util.BytesRef.compareTo:(Lorg/apache/lucene/util/BytesRef;)I
            istore 6 /* cmp */
        start local 6 // int cmp
         7: .line 154
            iload 6 /* cmp */
            ifge 10
         8: .line 155
            iload 4 /* mid */
            iconst_1
            iadd
            istore 2 /* lo */
         9: .line 156
            goto 16
      StackMap locals: int int int
      StackMap stack:
        10: iload 6 /* cmp */
            ifle 13
        11: .line 157
            iload 4 /* mid */
            iconst_1
            isub
            istore 3 /* hi */
        12: .line 158
            goto 16
        13: .line 160
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* mid */
            putfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.ord:I
        14: .line 161
            getstatic org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.$assertionsDisabled:Z
            ifne 15
            aload 0 /* this */
            invokevirtual org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.term:()Lorg/apache/lucene/util/BytesRef;
            aload 1 /* text */
            invokevirtual org.apache.lucene.util.BytesRef.compareTo:(Lorg/apache/lucene/util/BytesRef;)I
            ifeq 15
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        15: .line 162
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.index.TermsEnum$SeekStatus.FOUND:Lorg/apache/lucene/index/TermsEnum$SeekStatus;
            areturn
        end local 6 // int cmp
        end local 5 // int textStart
        end local 4 // int mid
        16: .line 149
      StackMap locals:
      StackMap stack:
            iload 3 /* hi */
            iload 2 /* lo */
            if_icmpge 3
        17: .line 167
            aload 0 /* this */
            iload 2 /* lo */
            putfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.ord:I
        18: .line 168
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.ord:I
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.numTerms:I
            if_icmplt 20
        19: .line 169
            getstatic org.apache.lucene.index.TermsEnum$SeekStatus.END:Lorg/apache/lucene/index/TermsEnum$SeekStatus;
            areturn
        20: .line 171
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.postingsArray:Lorg/apache/lucene/index/FreqProxTermsWriterPerField$FreqProxPostingsArray;
            getfield org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray.textStarts:[I
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.sortedTermIDs:[I
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.ord:I
            iaload
            iaload
            istore 4 /* textStart */
        start local 4 // int textStart
        21: .line 172
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.terms:Lorg/apache/lucene/index/FreqProxTermsWriterPerField;
            getfield org.apache.lucene.index.FreqProxTermsWriterPerField.bytePool:Lorg/apache/lucene/util/ByteBlockPool;
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.scratch:Lorg/apache/lucene/util/BytesRef;
            iload 4 /* textStart */
            invokevirtual org.apache.lucene.util.ByteBlockPool.setBytesRef:(Lorg/apache/lucene/util/BytesRef;I)V
        22: .line 173
            getstatic org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.$assertionsDisabled:Z
            ifne 23
            aload 0 /* this */
            invokevirtual org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.term:()Lorg/apache/lucene/util/BytesRef;
            aload 1 /* text */
            invokevirtual org.apache.lucene.util.BytesRef.compareTo:(Lorg/apache/lucene/util/BytesRef;)I
            ifgt 23
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        23: .line 174
      StackMap locals: int
      StackMap stack:
            getstatic org.apache.lucene.index.TermsEnum$SeekStatus.NOT_FOUND:Lorg/apache/lucene/index/TermsEnum$SeekStatus;
            areturn
        end local 4 // int textStart
        end local 3 // int hi
        end local 2 // int lo
        end local 1 // org.apache.lucene.util.BytesRef text
        end local 0 // org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   24     0       this  Lorg/apache/lucene/index/FreqProxFields$FreqProxTermsEnum;
            0   24     1       text  Lorg/apache/lucene/util/BytesRef;
            1   24     2         lo  I
            2   24     3         hi  I
            4   16     4        mid  I
            5   16     5  textStart  I
            7   16     6        cmp  I
           21   24     4  textStart  I
    MethodParameters:
      Name  Flags
      text  

  public void seekExact(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum this
        start local 1 // long ord
         0: .line 179
            aload 0 /* this */
            lload 1 /* ord */
            l2i
            putfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.ord:I
         1: .line 180
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.postingsArray:Lorg/apache/lucene/index/FreqProxTermsWriterPerField$FreqProxPostingsArray;
            getfield org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray.textStarts:[I
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.sortedTermIDs:[I
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.ord:I
            iaload
            iaload
            istore 3 /* textStart */
        start local 3 // int textStart
         2: .line 181
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.terms:Lorg/apache/lucene/index/FreqProxTermsWriterPerField;
            getfield org.apache.lucene.index.FreqProxTermsWriterPerField.bytePool:Lorg/apache/lucene/util/ByteBlockPool;
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.scratch:Lorg/apache/lucene/util/BytesRef;
            iload 3 /* textStart */
            invokevirtual org.apache.lucene.util.ByteBlockPool.setBytesRef:(Lorg/apache/lucene/util/BytesRef;I)V
         3: .line 182
            return
        end local 3 // int textStart
        end local 1 // long ord
        end local 0 // org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/apache/lucene/index/FreqProxFields$FreqProxTermsEnum;
            0    4     1        ord  J
            2    4     3  textStart  I
    MethodParameters:
      Name  Flags
      ord   

  public org.apache.lucene.util.BytesRef next();
    descriptor: ()Lorg/apache/lucene/util/BytesRef;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum this
         0: .line 186
            aload 0 /* this */
            dup
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.ord:I
            iconst_1
            iadd
            putfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.ord:I
         1: .line 187
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.ord:I
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.numTerms:I
            if_icmplt 3
         2: .line 188
            aconst_null
            areturn
         3: .line 190
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.postingsArray:Lorg/apache/lucene/index/FreqProxTermsWriterPerField$FreqProxPostingsArray;
            getfield org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray.textStarts:[I
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.sortedTermIDs:[I
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.ord:I
            iaload
            iaload
            istore 1 /* textStart */
        start local 1 // int textStart
         4: .line 191
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.terms:Lorg/apache/lucene/index/FreqProxTermsWriterPerField;
            getfield org.apache.lucene.index.FreqProxTermsWriterPerField.bytePool:Lorg/apache/lucene/util/ByteBlockPool;
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.scratch:Lorg/apache/lucene/util/BytesRef;
            iload 1 /* textStart */
            invokevirtual org.apache.lucene.util.ByteBlockPool.setBytesRef:(Lorg/apache/lucene/util/BytesRef;I)V
         5: .line 192
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.scratch:Lorg/apache/lucene/util/BytesRef;
            areturn
        end local 1 // int textStart
        end local 0 // org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lorg/apache/lucene/index/FreqProxFields$FreqProxTermsEnum;
            4    6     1  textStart  I

  public org.apache.lucene.util.BytesRef term();
    descriptor: ()Lorg/apache/lucene/util/BytesRef;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum this
         0: .line 198
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.scratch:Lorg/apache/lucene/util/BytesRef;
            areturn
        end local 0 // org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/index/FreqProxFields$FreqProxTermsEnum;

  public long ord();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum this
         0: .line 203
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.ord:I
            i2l
            lreturn
        end local 0 // org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/index/FreqProxFields$FreqProxTermsEnum;

  public int docFreq();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum this
         0: .line 211
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/index/FreqProxFields$FreqProxTermsEnum;

  public long totalTermFreq();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum this
         0: .line 219
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/index/FreqProxFields$FreqProxTermsEnum;

  public org.apache.lucene.index.PostingsEnum postings(org.apache.lucene.index.PostingsEnum, int);
    descriptor: (Lorg/apache/lucene/index/PostingsEnum;I)Lorg/apache/lucene/index/PostingsEnum;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum this
        start local 1 // org.apache.lucene.index.PostingsEnum reuse
        start local 2 // int flags
         0: .line 224
            iload 2 /* flags */
            bipush 24
            invokestatic org.apache.lucene.index.PostingsEnum.featureRequested:(IS)Z
            ifeq 13
         1: .line 227
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.terms:Lorg/apache/lucene/index/FreqProxTermsWriterPerField;
            getfield org.apache.lucene.index.FreqProxTermsWriterPerField.hasProx:Z
            ifne 3
         2: .line 230
            new java.lang.IllegalArgumentException
            dup
            ldc "did not index positions"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 233
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.terms:Lorg/apache/lucene/index/FreqProxTermsWriterPerField;
            getfield org.apache.lucene.index.FreqProxTermsWriterPerField.hasOffsets:Z
            ifne 5
            iload 2 /* flags */
            bipush 56
            invokestatic org.apache.lucene.index.PostingsEnum.featureRequested:(IS)Z
            ifeq 5
         4: .line 236
            new java.lang.IllegalArgumentException
            dup
            ldc "did not index offsets"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 239
      StackMap locals:
      StackMap stack:
            aload 1 /* reuse */
            instanceof org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum
            ifeq 10
         6: .line 240
            aload 1 /* reuse */
            checkcast org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum
            astore 3 /* posEnum */
        start local 3 // org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum posEnum
         7: .line 241
            aload 3 /* posEnum */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum.postingsArray:Lorg/apache/lucene/index/FreqProxTermsWriterPerField$FreqProxPostingsArray;
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.postingsArray:Lorg/apache/lucene/index/FreqProxTermsWriterPerField$FreqProxPostingsArray;
            if_acmpeq 11
         8: .line 242
            new org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum
            dup
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.terms:Lorg/apache/lucene/index/FreqProxTermsWriterPerField;
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.postingsArray:Lorg/apache/lucene/index/FreqProxTermsWriterPerField$FreqProxPostingsArray;
            invokespecial org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum.<init>:(Lorg/apache/lucene/index/FreqProxTermsWriterPerField;Lorg/apache/lucene/index/FreqProxTermsWriterPerField$FreqProxPostingsArray;)V
            astore 3 /* posEnum */
         9: .line 244
            goto 11
        end local 3 // org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum posEnum
        10: .line 245
      StackMap locals:
      StackMap stack:
            new org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum
            dup
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.terms:Lorg/apache/lucene/index/FreqProxTermsWriterPerField;
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.postingsArray:Lorg/apache/lucene/index/FreqProxTermsWriterPerField$FreqProxPostingsArray;
            invokespecial org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum.<init>:(Lorg/apache/lucene/index/FreqProxTermsWriterPerField;Lorg/apache/lucene/index/FreqProxTermsWriterPerField$FreqProxPostingsArray;)V
            astore 3 /* posEnum */
        start local 3 // org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum posEnum
        11: .line 247
      StackMap locals: org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum
      StackMap stack:
            aload 3 /* posEnum */
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.sortedTermIDs:[I
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.ord:I
            iaload
            invokevirtual org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum.reset:(I)V
        12: .line 248
            aload 3 /* posEnum */
            areturn
        end local 3 // org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum posEnum
        13: .line 253
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.terms:Lorg/apache/lucene/index/FreqProxTermsWriterPerField;
            getfield org.apache.lucene.index.FreqProxTermsWriterPerField.hasFreq:Z
            ifne 15
            iload 2 /* flags */
            bipush 8
            invokestatic org.apache.lucene.index.PostingsEnum.featureRequested:(IS)Z
            ifeq 15
        14: .line 256
            new java.lang.IllegalArgumentException
            dup
            ldc "did not index freq"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        15: .line 259
      StackMap locals:
      StackMap stack:
            aload 1 /* reuse */
            instanceof org.apache.lucene.index.FreqProxFields$FreqProxDocsEnum
            ifeq 20
        16: .line 260
            aload 1 /* reuse */
            checkcast org.apache.lucene.index.FreqProxFields$FreqProxDocsEnum
            astore 3 /* docsEnum */
        start local 3 // org.apache.lucene.index.FreqProxFields$FreqProxDocsEnum docsEnum
        17: .line 261
            aload 3 /* docsEnum */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxDocsEnum.postingsArray:Lorg/apache/lucene/index/FreqProxTermsWriterPerField$FreqProxPostingsArray;
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.postingsArray:Lorg/apache/lucene/index/FreqProxTermsWriterPerField$FreqProxPostingsArray;
            if_acmpeq 21
        18: .line 262
            new org.apache.lucene.index.FreqProxFields$FreqProxDocsEnum
            dup
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.terms:Lorg/apache/lucene/index/FreqProxTermsWriterPerField;
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.postingsArray:Lorg/apache/lucene/index/FreqProxTermsWriterPerField$FreqProxPostingsArray;
            invokespecial org.apache.lucene.index.FreqProxFields$FreqProxDocsEnum.<init>:(Lorg/apache/lucene/index/FreqProxTermsWriterPerField;Lorg/apache/lucene/index/FreqProxTermsWriterPerField$FreqProxPostingsArray;)V
            astore 3 /* docsEnum */
        19: .line 264
            goto 21
        end local 3 // org.apache.lucene.index.FreqProxFields$FreqProxDocsEnum docsEnum
        20: .line 265
      StackMap locals:
      StackMap stack:
            new org.apache.lucene.index.FreqProxFields$FreqProxDocsEnum
            dup
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.terms:Lorg/apache/lucene/index/FreqProxTermsWriterPerField;
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.postingsArray:Lorg/apache/lucene/index/FreqProxTermsWriterPerField$FreqProxPostingsArray;
            invokespecial org.apache.lucene.index.FreqProxFields$FreqProxDocsEnum.<init>:(Lorg/apache/lucene/index/FreqProxTermsWriterPerField;Lorg/apache/lucene/index/FreqProxTermsWriterPerField$FreqProxPostingsArray;)V
            astore 3 /* docsEnum */
        start local 3 // org.apache.lucene.index.FreqProxFields$FreqProxDocsEnum docsEnum
        21: .line 267
      StackMap locals: org.apache.lucene.index.FreqProxFields$FreqProxDocsEnum
      StackMap stack:
            aload 3 /* docsEnum */
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.sortedTermIDs:[I
            aload 0 /* this */
            getfield org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum.ord:I
            iaload
            invokevirtual org.apache.lucene.index.FreqProxFields$FreqProxDocsEnum.reset:(I)V
        22: .line 268
            aload 3 /* docsEnum */
            areturn
        end local 3 // org.apache.lucene.index.FreqProxFields$FreqProxDocsEnum docsEnum
        end local 2 // int flags
        end local 1 // org.apache.lucene.index.PostingsEnum reuse
        end local 0 // org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   23     0      this  Lorg/apache/lucene/index/FreqProxFields$FreqProxTermsEnum;
            0   23     1     reuse  Lorg/apache/lucene/index/PostingsEnum;
            0   23     2     flags  I
            7   10     3   posEnum  Lorg/apache/lucene/index/FreqProxFields$FreqProxPostingsEnum;
           11   13     3   posEnum  Lorg/apache/lucene/index/FreqProxFields$FreqProxPostingsEnum;
           17   20     3  docsEnum  Lorg/apache/lucene/index/FreqProxFields$FreqProxDocsEnum;
           21   23     3  docsEnum  Lorg/apache/lucene/index/FreqProxFields$FreqProxDocsEnum;
    MethodParameters:
       Name  Flags
      reuse  
      flags  

  public org.apache.lucene.index.ImpactsEnum impacts(int);
    descriptor: (I)Lorg/apache/lucene/index/ImpactsEnum;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum this
        start local 1 // int flags
         0: .line 273
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // int flags
        end local 0 // org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/apache/lucene/index/FreqProxFields$FreqProxTermsEnum;
            0    1     1  flags  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      flags  

  public org.apache.lucene.index.TermState termState();
    descriptor: ()Lorg/apache/lucene/index/TermState;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum this
         0: .line 288
            new org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum$1
            dup
            aload 0 /* this */
            invokespecial org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum$1.<init>:(Lorg/apache/lucene/index/FreqProxFields$FreqProxTermsEnum;)V
            areturn
        end local 0 // org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/index/FreqProxFields$FreqProxTermsEnum;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "FreqProxFields.java"
NestHost: org.apache.lucene.index.FreqProxFields
InnerClasses:
  private FreqProxDocsEnum = org.apache.lucene.index.FreqProxFields$FreqProxDocsEnum of org.apache.lucene.index.FreqProxFields
  private FreqProxPostingsEnum = org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum of org.apache.lucene.index.FreqProxFields
  private FreqProxTermsEnum = org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum of org.apache.lucene.index.FreqProxFields
  org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum$1
  final FreqProxPostingsArray = org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray of org.apache.lucene.index.FreqProxTermsWriterPerField
  public final SeekStatus = org.apache.lucene.index.TermsEnum$SeekStatus of org.apache.lucene.index.TermsEnum