public class org.apache.lucene.search.MultiPhraseQuery extends org.apache.lucene.search.Query
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.lucene.search.MultiPhraseQuery
  super_class: org.apache.lucene.search.Query
{
  private final java.lang.String field;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.apache.lucene.index.Term[][] termArrays;
    descriptor: [[Lorg/apache/lucene/index/Term;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int[] positions;
    descriptor: [I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  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 58
            ldc Lorg/apache/lucene/search/MultiPhraseQuery;
            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.search.MultiPhraseQuery.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>(java.lang.String, org.apache.lucene.index.Term[][], int[], int);
    descriptor: (Ljava/lang/String;[[Lorg/apache/lucene/index/Term;[II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // org.apache.lucene.search.MultiPhraseQuery this
        start local 1 // java.lang.String field
        start local 2 // org.apache.lucene.index.Term[][] termArrays
        start local 3 // int[] positions
        start local 4 // int slop
         0: .line 163
            aload 0 /* this */
            invokespecial org.apache.lucene.search.Query.<init>:()V
         1: .line 165
            aload 0 /* this */
            aload 1 /* field */
            putfield org.apache.lucene.search.MultiPhraseQuery.field:Ljava/lang/String;
         2: .line 166
            aload 0 /* this */
            aload 2 /* termArrays */
            putfield org.apache.lucene.search.MultiPhraseQuery.termArrays:[[Lorg/apache/lucene/index/Term;
         3: .line 167
            aload 0 /* this */
            aload 3 /* positions */
            putfield org.apache.lucene.search.MultiPhraseQuery.positions:[I
         4: .line 168
            aload 0 /* this */
            iload 4 /* slop */
            putfield org.apache.lucene.search.MultiPhraseQuery.slop:I
         5: .line 169
            return
        end local 4 // int slop
        end local 3 // int[] positions
        end local 2 // org.apache.lucene.index.Term[][] termArrays
        end local 1 // java.lang.String field
        end local 0 // org.apache.lucene.search.MultiPhraseQuery this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Lorg/apache/lucene/search/MultiPhraseQuery;
            0    6     1       field  Ljava/lang/String;
            0    6     2  termArrays  [[Lorg/apache/lucene/index/Term;
            0    6     3   positions  [I
            0    6     4        slop  I
    MethodParameters:
            Name  Flags
      field       
      termArrays  
      positions   
      slop        

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

  public org.apache.lucene.index.Term[][] getTermArrays();
    descriptor: ()[[Lorg/apache/lucene/index/Term;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.MultiPhraseQuery this
         0: .line 181
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiPhraseQuery.termArrays:[[Lorg/apache/lucene/index/Term;
            areturn
        end local 0 // org.apache.lucene.search.MultiPhraseQuery this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/MultiPhraseQuery;

  public int[] getPositions();
    descriptor: ()[I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.MultiPhraseQuery this
         0: .line 189
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiPhraseQuery.positions:[I
            areturn
        end local 0 // org.apache.lucene.search.MultiPhraseQuery this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/MultiPhraseQuery;

  public org.apache.lucene.search.Query rewrite(org.apache.lucene.index.IndexReader);
    descriptor: (Lorg/apache/lucene/index/IndexReader;)Lorg/apache/lucene/search/Query;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // org.apache.lucene.search.MultiPhraseQuery this
        start local 1 // org.apache.lucene.index.IndexReader reader
         0: .line 194
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiPhraseQuery.termArrays:[[Lorg/apache/lucene/index/Term;
            arraylength
            ifne 2
         1: .line 195
            new org.apache.lucene.search.MatchNoDocsQuery
            dup
            ldc "empty MultiPhraseQuery"
            invokespecial org.apache.lucene.search.MatchNoDocsQuery.<init>:(Ljava/lang/String;)V
            areturn
         2: .line 196
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiPhraseQuery.termArrays:[[Lorg/apache/lucene/index/Term;
            arraylength
            iconst_1
            if_icmpne 11
         3: .line 197
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiPhraseQuery.termArrays:[[Lorg/apache/lucene/index/Term;
            iconst_0
            aaload
            astore 2 /* terms */
        start local 2 // org.apache.lucene.index.Term[] terms
         4: .line 198
            new org.apache.lucene.search.BooleanQuery$Builder
            dup
            invokespecial org.apache.lucene.search.BooleanQuery$Builder.<init>:()V
            astore 3 /* builder */
        start local 3 // org.apache.lucene.search.BooleanQuery$Builder builder
         5: .line 199
            aload 2 /* terms */
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 9
      StackMap locals: org.apache.lucene.search.MultiPhraseQuery org.apache.lucene.index.IndexReader org.apache.lucene.index.Term[] org.apache.lucene.search.BooleanQuery$Builder top int int org.apache.lucene.index.Term[]
      StackMap stack:
         6: aload 7
            iload 5
            aaload
            astore 4 /* term */
        start local 4 // org.apache.lucene.index.Term term
         7: .line 200
            aload 3 /* builder */
            new org.apache.lucene.search.TermQuery
            dup
            aload 4 /* term */
            invokespecial org.apache.lucene.search.TermQuery.<init>:(Lorg/apache/lucene/index/Term;)V
            getstatic org.apache.lucene.search.BooleanClause$Occur.SHOULD:Lorg/apache/lucene/search/BooleanClause$Occur;
            invokevirtual org.apache.lucene.search.BooleanQuery$Builder.add:(Lorg/apache/lucene/search/Query;Lorg/apache/lucene/search/BooleanClause$Occur;)Lorg/apache/lucene/search/BooleanQuery$Builder;
            pop
        end local 4 // org.apache.lucene.index.Term term
         8: .line 199
            iinc 5 1
      StackMap locals:
      StackMap stack:
         9: iload 5
            iload 6
            if_icmplt 6
        10: .line 202
            aload 3 /* builder */
            invokevirtual org.apache.lucene.search.BooleanQuery$Builder.build:()Lorg/apache/lucene/search/BooleanQuery;
            areturn
        end local 3 // org.apache.lucene.search.BooleanQuery$Builder builder
        end local 2 // org.apache.lucene.index.Term[] terms
        11: .line 204
      StackMap locals: org.apache.lucene.search.MultiPhraseQuery org.apache.lucene.index.IndexReader
      StackMap stack:
            aload 0 /* this */
            aload 1 /* reader */
            invokespecial org.apache.lucene.search.Query.rewrite:(Lorg/apache/lucene/index/IndexReader;)Lorg/apache/lucene/search/Query;
            areturn
        end local 1 // org.apache.lucene.index.IndexReader reader
        end local 0 // org.apache.lucene.search.MultiPhraseQuery this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   12     0     this  Lorg/apache/lucene/search/MultiPhraseQuery;
            0   12     1   reader  Lorg/apache/lucene/index/IndexReader;
            4   11     2    terms  [Lorg/apache/lucene/index/Term;
            5   11     3  builder  Lorg/apache/lucene/search/BooleanQuery$Builder;
            7    8     4     term  Lorg/apache/lucene/index/Term;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      reader  

  public void visit(org.apache.lucene.search.QueryVisitor);
    descriptor: (Lorg/apache/lucene/search/QueryVisitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=8, args_size=2
        start local 0 // org.apache.lucene.search.MultiPhraseQuery this
        start local 1 // org.apache.lucene.search.QueryVisitor visitor
         0: .line 210
            aload 1 /* visitor */
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiPhraseQuery.field:Ljava/lang/String;
            invokevirtual org.apache.lucene.search.QueryVisitor.acceptField:(Ljava/lang/String;)Z
            ifne 2
         1: .line 211
            return
         2: .line 213
      StackMap locals:
      StackMap stack:
            aload 1 /* visitor */
            getstatic org.apache.lucene.search.BooleanClause$Occur.MUST:Lorg/apache/lucene/search/BooleanClause$Occur;
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.QueryVisitor.getSubVisitor:(Lorg/apache/lucene/search/BooleanClause$Occur;Lorg/apache/lucene/search/Query;)Lorg/apache/lucene/search/QueryVisitor;
            astore 2 /* v */
        start local 2 // org.apache.lucene.search.QueryVisitor v
         3: .line 214
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiPhraseQuery.termArrays:[[Lorg/apache/lucene/index/Term;
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 8
      StackMap locals: org.apache.lucene.search.MultiPhraseQuery org.apache.lucene.search.QueryVisitor org.apache.lucene.search.QueryVisitor top int int org.apache.lucene.index.Term[][]
      StackMap stack:
         4: aload 6
            iload 4
            aaload
            astore 3 /* terms */
        start local 3 // org.apache.lucene.index.Term[] terms
         5: .line 215
            aload 2 /* v */
            getstatic org.apache.lucene.search.BooleanClause$Occur.SHOULD:Lorg/apache/lucene/search/BooleanClause$Occur;
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.QueryVisitor.getSubVisitor:(Lorg/apache/lucene/search/BooleanClause$Occur;Lorg/apache/lucene/search/Query;)Lorg/apache/lucene/search/QueryVisitor;
            astore 7 /* sv */
        start local 7 // org.apache.lucene.search.QueryVisitor sv
         6: .line 216
            aload 7 /* sv */
            aload 0 /* this */
            aload 3 /* terms */
            invokevirtual org.apache.lucene.search.QueryVisitor.consumeTerms:(Lorg/apache/lucene/search/Query;[Lorg/apache/lucene/index/Term;)V
        end local 7 // org.apache.lucene.search.QueryVisitor sv
        end local 3 // org.apache.lucene.index.Term[] terms
         7: .line 214
            iinc 4 1
      StackMap locals:
      StackMap stack:
         8: iload 4
            iload 5
            if_icmplt 4
         9: .line 218
            return
        end local 2 // org.apache.lucene.search.QueryVisitor v
        end local 1 // org.apache.lucene.search.QueryVisitor visitor
        end local 0 // org.apache.lucene.search.MultiPhraseQuery this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lorg/apache/lucene/search/MultiPhraseQuery;
            0   10     1  visitor  Lorg/apache/lucene/search/QueryVisitor;
            3   10     2        v  Lorg/apache/lucene/search/QueryVisitor;
            5    7     3    terms  [Lorg/apache/lucene/index/Term;
            6    7     7       sv  Lorg/apache/lucene/search/QueryVisitor;
    MethodParameters:
         Name  Flags
      visitor  

  public org.apache.lucene.search.Weight createWeight(org.apache.lucene.search.IndexSearcher, org.apache.lucene.search.ScoreMode, float);
    descriptor: (Lorg/apache/lucene/search/IndexSearcher;Lorg/apache/lucene/search/ScoreMode;F)Lorg/apache/lucene/search/Weight;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=5, args_size=4
        start local 0 // org.apache.lucene.search.MultiPhraseQuery this
        start local 1 // org.apache.lucene.search.IndexSearcher searcher
        start local 2 // org.apache.lucene.search.ScoreMode scoreMode
        start local 3 // float boost
         0: .line 222
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            astore 4 /* termStates */
        start local 4 // java.util.Map termStates
         1: .line 223
            new org.apache.lucene.search.MultiPhraseQuery$1
            dup
            aload 0 /* this */
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiPhraseQuery.field:Ljava/lang/String;
            aload 1 /* searcher */
            aload 2 /* scoreMode */
            aload 4 /* termStates */
            fload 3 /* boost */
            invokespecial org.apache.lucene.search.MultiPhraseQuery$1.<init>:(Lorg/apache/lucene/search/MultiPhraseQuery;Lorg/apache/lucene/search/Query;Ljava/lang/String;Lorg/apache/lucene/search/IndexSearcher;Lorg/apache/lucene/search/ScoreMode;Ljava/util/Map;F)V
            areturn
        end local 4 // java.util.Map termStates
        end local 3 // float boost
        end local 2 // org.apache.lucene.search.ScoreMode scoreMode
        end local 1 // org.apache.lucene.search.IndexSearcher searcher
        end local 0 // org.apache.lucene.search.MultiPhraseQuery this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/apache/lucene/search/MultiPhraseQuery;
            0    2     1    searcher  Lorg/apache/lucene/search/IndexSearcher;
            0    2     2   scoreMode  Lorg/apache/lucene/search/ScoreMode;
            0    2     3       boost  F
            1    2     4  termStates  Ljava/util/Map<Lorg/apache/lucene/index/Term;Lorg/apache/lucene/index/TermStates;>;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      searcher   
      scoreMode  
      boost      

  public final java.lang.String toString(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=8, args_size=2
        start local 0 // org.apache.lucene.search.MultiPhraseQuery this
        start local 1 // java.lang.String f
         0: .line 325
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 2 /* buffer */
        start local 2 // java.lang.StringBuilder buffer
         1: .line 326
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiPhraseQuery.field:Ljava/lang/String;
            ifnull 2
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiPhraseQuery.field:Ljava/lang/String;
            aload 1 /* f */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 4
         2: .line 327
      StackMap locals: java.lang.StringBuilder
      StackMap stack:
            aload 2 /* buffer */
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiPhraseQuery.field:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         3: .line 328
            aload 2 /* buffer */
            ldc ":"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         4: .line 331
      StackMap locals:
      StackMap stack:
            aload 2 /* buffer */
            ldc "\""
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         5: .line 332
            iconst_m1
            istore 3 /* lastPos */
        start local 3 // int lastPos
         6: .line 334
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         7: goto 31
         8: .line 335
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiPhraseQuery.termArrays:[[Lorg/apache/lucene/index/Term;
            iload 4 /* i */
            aaload
            astore 5 /* terms */
        start local 5 // org.apache.lucene.index.Term[] terms
         9: .line 336
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiPhraseQuery.positions:[I
            iload 4 /* i */
            iaload
            istore 6 /* position */
        start local 6 // int position
        10: .line 337
            iload 4 /* i */
            ifeq 17
        11: .line 338
            aload 2 /* buffer */
            ldc " "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        12: .line 339
            iconst_1
            istore 7 /* j */
        start local 7 // int j
        13: goto 16
        14: .line 340
      StackMap locals: org.apache.lucene.index.Term[] int int
      StackMap stack:
            aload 2 /* buffer */
            ldc "? "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        15: .line 339
            iinc 7 /* j */ 1
      StackMap locals:
      StackMap stack:
        16: iload 7 /* j */
            iload 6 /* position */
            iload 3 /* lastPos */
            isub
            if_icmplt 14
        end local 7 // int j
        17: .line 343
      StackMap locals:
      StackMap stack:
            aload 5 /* terms */
            arraylength
            iconst_1
            if_icmple 28
        18: .line 344
            aload 2 /* buffer */
            ldc "("
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        19: .line 345
            iconst_0
            istore 7 /* j */
        start local 7 // int j
        20: goto 25
        21: .line 346
      StackMap locals: int
      StackMap stack:
            aload 2 /* buffer */
            aload 5 /* terms */
            iload 7 /* j */
            aaload
            invokevirtual org.apache.lucene.index.Term.text:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        22: .line 347
            iload 7 /* j */
            aload 5 /* terms */
            arraylength
            iconst_1
            isub
            if_icmpge 24
        23: .line 348
            aload 2 /* buffer */
            ldc " "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        24: .line 345
      StackMap locals:
      StackMap stack:
            iinc 7 /* j */ 1
      StackMap locals:
      StackMap stack:
        25: iload 7 /* j */
            aload 5 /* terms */
            arraylength
            if_icmplt 21
        end local 7 // int j
        26: .line 350
            aload 2 /* buffer */
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        27: .line 351
            goto 29
        28: .line 352
      StackMap locals:
      StackMap stack:
            aload 2 /* buffer */
            aload 5 /* terms */
            iconst_0
            aaload
            invokevirtual org.apache.lucene.index.Term.text:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        29: .line 354
      StackMap locals:
      StackMap stack:
            iload 6 /* position */
            istore 3 /* lastPos */
        end local 6 // int position
        end local 5 // org.apache.lucene.index.Term[] terms
        30: .line 334
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        31: iload 4 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiPhraseQuery.termArrays:[[Lorg/apache/lucene/index/Term;
            arraylength
            if_icmplt 8
        end local 4 // int i
        32: .line 356
            aload 2 /* buffer */
            ldc "\""
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        33: .line 358
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiPhraseQuery.slop:I
            ifeq 36
        34: .line 359
            aload 2 /* buffer */
            ldc "~"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        35: .line 360
            aload 2 /* buffer */
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiPhraseQuery.slop:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
        36: .line 363
      StackMap locals:
      StackMap stack:
            aload 2 /* buffer */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 3 // int lastPos
        end local 2 // java.lang.StringBuilder buffer
        end local 1 // java.lang.String f
        end local 0 // org.apache.lucene.search.MultiPhraseQuery this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   37     0      this  Lorg/apache/lucene/search/MultiPhraseQuery;
            0   37     1         f  Ljava/lang/String;
            1   37     2    buffer  Ljava/lang/StringBuilder;
            6   37     3   lastPos  I
            7   32     4         i  I
            9   30     5     terms  [Lorg/apache/lucene/index/Term;
           10   30     6  position  I
           13   17     7         j  I
           20   26     7         j  I
    MethodParameters:
      Name  Flags
      f     

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.search.MultiPhraseQuery this
        start local 1 // java.lang.Object other
         0: .line 370
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual org.apache.lucene.search.MultiPhraseQuery.sameClassAs:(Ljava/lang/Object;)Z
            ifeq 3
         1: .line 371
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* other */
            invokevirtual java.lang.Class.cast:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.apache.lucene.search.MultiPhraseQuery
            invokevirtual org.apache.lucene.search.MultiPhraseQuery.equalsTo:(Lorg/apache/lucene/search/MultiPhraseQuery;)Z
            ifeq 3
         2: .line 370
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_0
            ireturn
        end local 1 // java.lang.Object other
        end local 0 // org.apache.lucene.search.MultiPhraseQuery this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/apache/lucene/search/MultiPhraseQuery;
            0    4     1  other  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      other  

  private boolean equalsTo(org.apache.lucene.search.MultiPhraseQuery);
    descriptor: (Lorg/apache/lucene/search/MultiPhraseQuery;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.search.MultiPhraseQuery this
        start local 1 // org.apache.lucene.search.MultiPhraseQuery other
         0: .line 375
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiPhraseQuery.slop:I
            aload 1 /* other */
            getfield org.apache.lucene.search.MultiPhraseQuery.slop:I
            if_icmpne 4
         1: .line 376
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiPhraseQuery.termArrays:[[Lorg/apache/lucene/index/Term;
            aload 1 /* other */
            getfield org.apache.lucene.search.MultiPhraseQuery.termArrays:[[Lorg/apache/lucene/index/Term;
            invokevirtual org.apache.lucene.search.MultiPhraseQuery.termArraysEquals:([[Lorg/apache/lucene/index/Term;[[Lorg/apache/lucene/index/Term;)Z
            ifeq 4
         2: .line 377
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiPhraseQuery.positions:[I
            aload 1 /* other */
            getfield org.apache.lucene.search.MultiPhraseQuery.positions:[I
            invokestatic java.util.Arrays.equals:([I[I)Z
            ifeq 4
         3: .line 375
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         4: iconst_0
            ireturn
        end local 1 // org.apache.lucene.search.MultiPhraseQuery other
        end local 0 // org.apache.lucene.search.MultiPhraseQuery this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/apache/lucene/search/MultiPhraseQuery;
            0    5     1  other  Lorg/apache/lucene/search/MultiPhraseQuery;
    MethodParameters:
       Name  Flags
      other  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.MultiPhraseQuery this
         0: .line 384
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.MultiPhraseQuery.classHash:()I
         1: .line 385
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiPhraseQuery.slop:I
         2: .line 384
            ixor
         3: .line 386
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.MultiPhraseQuery.termArraysHashCode:()I
         4: .line 384
            ixor
         5: .line 387
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiPhraseQuery.positions:[I
            invokestatic java.util.Arrays.hashCode:([I)I
         6: .line 384
            ixor
            ireturn
        end local 0 // org.apache.lucene.search.MultiPhraseQuery this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/lucene/search/MultiPhraseQuery;

  private int termArraysHashCode();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=6, args_size=1
        start local 0 // org.apache.lucene.search.MultiPhraseQuery this
         0: .line 392
            iconst_1
            istore 1 /* hashCode */
        start local 1 // int hashCode
         1: .line 393
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiPhraseQuery.termArrays:[[Lorg/apache/lucene/index/Term;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 8
      StackMap locals: org.apache.lucene.search.MultiPhraseQuery int top int int org.apache.lucene.index.Term[][]
      StackMap stack:
         2: aload 5
            iload 3
            aaload
            astore 2 /* termArray */
        start local 2 // org.apache.lucene.index.Term[] termArray
         3: .line 394
            bipush 31
            iload 1 /* hashCode */
            imul
         4: .line 395
            aload 2 /* termArray */
            ifnonnull 5
            iconst_0
            goto 6
      StackMap locals: org.apache.lucene.search.MultiPhraseQuery int org.apache.lucene.index.Term[] int int org.apache.lucene.index.Term[][]
      StackMap stack: int
         5: aload 2 /* termArray */
            invokestatic java.util.Arrays.hashCode:([Ljava/lang/Object;)I
         6: .line 394
      StackMap locals: org.apache.lucene.search.MultiPhraseQuery int org.apache.lucene.index.Term[] int int org.apache.lucene.index.Term[][]
      StackMap stack: int int
            iadd
            istore 1 /* hashCode */
        end local 2 // org.apache.lucene.index.Term[] termArray
         7: .line 393
            iinc 3 1
      StackMap locals: org.apache.lucene.search.MultiPhraseQuery int top int int org.apache.lucene.index.Term[][]
      StackMap stack:
         8: iload 3
            iload 4
            if_icmplt 2
         9: .line 397
            iload 1 /* hashCode */
            ireturn
        end local 1 // int hashCode
        end local 0 // org.apache.lucene.search.MultiPhraseQuery this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   10     0       this  Lorg/apache/lucene/search/MultiPhraseQuery;
            1   10     1   hashCode  I
            3    7     2  termArray  [Lorg/apache/lucene/index/Term;

  private boolean termArraysEquals(org.apache.lucene.index.Term[][], org.apache.lucene.index.Term[][]);
    descriptor: ([[Lorg/apache/lucene/index/Term;[[Lorg/apache/lucene/index/Term;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=6, args_size=3
        start local 0 // org.apache.lucene.search.MultiPhraseQuery this
        start local 1 // org.apache.lucene.index.Term[][] termArrays1
        start local 2 // org.apache.lucene.index.Term[][] termArrays2
         0: .line 402
            aload 1 /* termArrays1 */
            arraylength
            aload 2 /* termArrays2 */
            arraylength
            if_icmpeq 2
         1: .line 403
            iconst_0
            ireturn
         2: .line 406
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: goto 13
         4: .line 407
      StackMap locals: int
      StackMap stack:
            aload 1 /* termArrays1 */
            iload 3 /* i */
            aaload
            astore 4 /* termArray1 */
        start local 4 // org.apache.lucene.index.Term[] termArray1
         5: .line 408
            aload 2 /* termArrays2 */
            iload 3 /* i */
            aaload
            astore 5 /* termArray2 */
        start local 5 // org.apache.lucene.index.Term[] termArray2
         6: .line 409
            aload 4 /* termArray1 */
            ifnonnull 7
            aload 5 /* termArray2 */
            ifnull 12
            goto 11
      StackMap locals: org.apache.lucene.index.Term[] org.apache.lucene.index.Term[]
      StackMap stack:
         7: aload 4 /* termArray1 */
         8: .line 410
            aload 5 /* termArray2 */
         9: .line 409
            invokestatic java.util.Arrays.equals:([Ljava/lang/Object;[Ljava/lang/Object;)Z
        10: .line 410
            ifne 12
        11: .line 411
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 5 // org.apache.lucene.index.Term[] termArray2
        end local 4 // org.apache.lucene.index.Term[] termArray1
        12: .line 406
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 3 /* i */
            aload 1 /* termArrays1 */
            arraylength
            if_icmplt 4
        end local 3 // int i
        14: .line 414
            iconst_1
            ireturn
        end local 2 // org.apache.lucene.index.Term[][] termArrays2
        end local 1 // org.apache.lucene.index.Term[][] termArrays1
        end local 0 // org.apache.lucene.search.MultiPhraseQuery this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   15     0         this  Lorg/apache/lucene/search/MultiPhraseQuery;
            0   15     1  termArrays1  [[Lorg/apache/lucene/index/Term;
            0   15     2  termArrays2  [[Lorg/apache/lucene/index/Term;
            3   14     3            i  I
            5   12     4   termArray1  [Lorg/apache/lucene/index/Term;
            6   12     5   termArray2  [Lorg/apache/lucene/index/Term;
    MethodParameters:
             Name  Flags
      termArrays1  
      termArrays2  
}
SourceFile: "MultiPhraseQuery.java"
NestMembers:
  org.apache.lucene.search.MultiPhraseQuery$1  org.apache.lucene.search.MultiPhraseQuery$Builder  org.apache.lucene.search.MultiPhraseQuery$PostingsAndPosition  org.apache.lucene.search.MultiPhraseQuery$UnionFullPostingsEnum  org.apache.lucene.search.MultiPhraseQuery$UnionFullPostingsEnum$1  org.apache.lucene.search.MultiPhraseQuery$UnionPostingsEnum  org.apache.lucene.search.MultiPhraseQuery$UnionPostingsEnum$DocsQueue  org.apache.lucene.search.MultiPhraseQuery$UnionPostingsEnum$PositionsQueue
InnerClasses:
  public Occur = org.apache.lucene.search.BooleanClause$Occur of org.apache.lucene.search.BooleanClause
  public Builder = org.apache.lucene.search.BooleanQuery$Builder of org.apache.lucene.search.BooleanQuery
  org.apache.lucene.search.MultiPhraseQuery$1
  public Builder = org.apache.lucene.search.MultiPhraseQuery$Builder of org.apache.lucene.search.MultiPhraseQuery
  PostingsAndPosition = org.apache.lucene.search.MultiPhraseQuery$PostingsAndPosition of org.apache.lucene.search.MultiPhraseQuery
  UnionFullPostingsEnum = org.apache.lucene.search.MultiPhraseQuery$UnionFullPostingsEnum of org.apache.lucene.search.MultiPhraseQuery
  UnionPostingsEnum = org.apache.lucene.search.MultiPhraseQuery$UnionPostingsEnum of org.apache.lucene.search.MultiPhraseQuery