class org.joni.Search$1 extends org.joni.Search$Forward
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.joni.Search$1
  super_class: org.joni.Search$Forward
{
  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.joni.Search$1 this
         0: .line 58
            aload 0 /* this */
            invokespecial org.joni.Search$Forward.<init>:()V
            return
        end local 0 // org.joni.Search$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/joni/Search$1;

  final java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0010) ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.joni.Search$1 this
         0: .line 61
            ldc "EXACT_FORWARD"
            areturn
        end local 0 // org.joni.Search$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/joni/Search$1;

  final int search(org.joni.Matcher, byte[], int, int, int);
    descriptor: (Lorg/joni/Matcher;[BIII)I
    flags: (0x0010) ACC_FINAL
    Code:
      stack=5, locals=15, args_size=6
        start local 0 // org.joni.Search$1 this
        start local 1 // org.joni.Matcher matcher
        start local 2 // byte[] text
        start local 3 // int textP
        start local 4 // int textEnd
        start local 5 // int textRange
         0: .line 65
            aload 1 /* matcher */
            getfield org.joni.Matcher.regex:Lorg/joni/Regex;
            astore 6 /* regex */
        start local 6 // org.joni.Regex regex
         1: .line 66
            aload 6 /* regex */
            getfield org.joni.Regex.enc:Lorg/jcodings/Encoding;
            astore 7 /* enc */
        start local 7 // org.jcodings.Encoding enc
         2: .line 67
            aload 6 /* regex */
            getfield org.joni.Regex.exact:[B
            astore 8 /* target */
        start local 8 // byte[] target
         3: .line 68
            aload 6 /* regex */
            getfield org.joni.Regex.exactP:I
            istore 9 /* targetP */
        start local 9 // int targetP
         4: .line 69
            aload 6 /* regex */
            getfield org.joni.Regex.exactEnd:I
            istore 10 /* targetEnd */
        start local 10 // int targetEnd
         5: .line 71
            iload 4 /* textEnd */
            istore 11 /* end */
        start local 11 // int end
         6: .line 72
            iload 11 /* end */
            iload 10 /* targetEnd */
            iload 9 /* targetP */
            isub
            iconst_1
            isub
            isub
            istore 11 /* end */
         7: .line 73
            iload 11 /* end */
            iload 5 /* textRange */
            if_icmple 8
            iload 5 /* textRange */
            istore 11 /* end */
         8: .line 74
      StackMap locals: org.joni.Search$1 org.joni.Matcher byte[] int int int org.joni.Regex org.jcodings.Encoding byte[] int int int
      StackMap stack:
            iload 3 /* textP */
            istore 12 /* s */
        start local 12 // int s
         9: .line 76
            goto 19
        10: .line 77
      StackMap locals: int
      StackMap stack:
            aload 2 /* text */
            iload 12 /* s */
            baload
            aload 8 /* target */
            iload 9 /* targetP */
            baload
            if_icmpne 18
        11: .line 78
            iload 12 /* s */
            iconst_1
            iadd
            istore 13 /* p */
        start local 13 // int p
        12: .line 79
            iload 9 /* targetP */
            iconst_1
            iadd
            istore 14 /* t */
        start local 14 // int t
        13: .line 80
            goto 16
        14: .line 81
      StackMap locals: int int
      StackMap stack:
            aload 8 /* target */
            iload 14 /* t */
            baload
            aload 2 /* text */
            iload 13 /* p */
            iinc 13 /* p */ 1
            baload
            if_icmpeq 15
            goto 17
        15: .line 82
      StackMap locals:
      StackMap stack:
            iinc 14 /* t */ 1
        16: .line 80
      StackMap locals:
      StackMap stack:
            iload 14 /* t */
            iload 10 /* targetEnd */
            if_icmplt 14
        17: .line 85
      StackMap locals:
      StackMap stack:
            iload 14 /* t */
            iload 10 /* targetEnd */
            if_icmpne 18
            iload 12 /* s */
            ireturn
        end local 14 // int t
        end local 13 // int p
        18: .line 87
      StackMap locals:
      StackMap stack:
            iload 12 /* s */
            aload 7 /* enc */
            aload 2 /* text */
            iload 12 /* s */
            iload 4 /* textEnd */
            invokevirtual org.jcodings.Encoding.length:([BII)I
            iadd
            istore 12 /* s */
        19: .line 76
      StackMap locals:
      StackMap stack:
            iload 12 /* s */
            iload 11 /* end */
            if_icmplt 10
        20: .line 89
            iconst_m1
            ireturn
        end local 12 // int s
        end local 11 // int end
        end local 10 // int targetEnd
        end local 9 // int targetP
        end local 8 // byte[] target
        end local 7 // org.jcodings.Encoding enc
        end local 6 // org.joni.Regex regex
        end local 5 // int textRange
        end local 4 // int textEnd
        end local 3 // int textP
        end local 2 // byte[] text
        end local 1 // org.joni.Matcher matcher
        end local 0 // org.joni.Search$1 this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   21     0       this  Lorg/joni/Search$1;
            0   21     1    matcher  Lorg/joni/Matcher;
            0   21     2       text  [B
            0   21     3      textP  I
            0   21     4    textEnd  I
            0   21     5  textRange  I
            1   21     6      regex  Lorg/joni/Regex;
            2   21     7        enc  Lorg/jcodings/Encoding;
            3   21     8     target  [B
            4   21     9    targetP  I
            5   21    10  targetEnd  I
            6   21    11        end  I
            9   21    12          s  I
           12   18    13          p  I
           13   18    14          t  I
    MethodParameters:
           Name  Flags
      matcher    
      text       
      textP      
      textEnd    
      textRange  
}
SourceFile: "Search.java"
EnclosingMethod: org.joni.Search
NestHost: org.joni.Search
InnerClasses:
  org.joni.Search$1
  abstract Forward = org.joni.Search$Forward of org.joni.Search