class org.jruby.RubyRegexp$SearchMatchTask implements org.jruby.RubyThread$Task<org.joni.Matcher, java.lang.Integer>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.jruby.RubyRegexp$SearchMatchTask
  super_class: java.lang.Object
{
  final org.jruby.RubyThread thread;
    descriptor: Lorg/jruby/RubyThread;
    flags: (0x0010) ACC_FINAL

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

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

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

  final boolean match;
    descriptor: Z
    flags: (0x0010) ACC_FINAL

  void <init>(org.jruby.RubyThread, int, int, int, boolean);
    descriptor: (Lorg/jruby/RubyThread;IIIZ)V
    flags: (0x0000) 
    Code:
      stack=2, locals=6, args_size=6
        start local 0 // org.jruby.RubyRegexp$SearchMatchTask this
        start local 1 // org.jruby.RubyThread thread
        start local 2 // int start
        start local 3 // int range
        start local 4 // int option
        start local 5 // boolean match
         0: .line 279
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 280
            aload 0 /* this */
            aload 1 /* thread */
            putfield org.jruby.RubyRegexp$SearchMatchTask.thread:Lorg/jruby/RubyThread;
         2: .line 281
            aload 0 /* this */
            iload 2 /* start */
            putfield org.jruby.RubyRegexp$SearchMatchTask.start:I
         3: .line 282
            aload 0 /* this */
            iload 3 /* range */
            putfield org.jruby.RubyRegexp$SearchMatchTask.range:I
         4: .line 283
            aload 0 /* this */
            iload 4 /* option */
            putfield org.jruby.RubyRegexp$SearchMatchTask.option:I
         5: .line 284
            aload 0 /* this */
            iload 5 /* match */
            putfield org.jruby.RubyRegexp$SearchMatchTask.match:Z
         6: .line 285
            return
        end local 5 // boolean match
        end local 4 // int option
        end local 3 // int range
        end local 2 // int start
        end local 1 // org.jruby.RubyThread thread
        end local 0 // org.jruby.RubyRegexp$SearchMatchTask this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/jruby/RubyRegexp$SearchMatchTask;
            0    7     1  thread  Lorg/jruby/RubyThread;
            0    7     2   start  I
            0    7     3   range  I
            0    7     4  option  I
            0    7     5   match  Z
    MethodParameters:
        Name  Flags
      thread  
      start   
      range   
      option  
      match   

  public java.lang.Integer run(org.jruby.runtime.ThreadContext, org.joni.Matcher);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/joni/Matcher;)Ljava/lang/Integer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.jruby.RubyRegexp$SearchMatchTask this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.joni.Matcher matcher
         0: .line 289
            aload 0 /* this */
            getfield org.jruby.RubyRegexp$SearchMatchTask.match:Z
            ifeq 2
         1: .line 290
            aload 2 /* matcher */
            aload 0 /* this */
            getfield org.jruby.RubyRegexp$SearchMatchTask.start:I
            aload 0 /* this */
            getfield org.jruby.RubyRegexp$SearchMatchTask.range:I
            aload 0 /* this */
            getfield org.jruby.RubyRegexp$SearchMatchTask.option:I
            invokevirtual org.joni.Matcher.matchInterruptible:(III)I
            goto 3
         2: .line 291
      StackMap locals:
      StackMap stack:
            aload 2 /* matcher */
            aload 0 /* this */
            getfield org.jruby.RubyRegexp$SearchMatchTask.start:I
            aload 0 /* this */
            getfield org.jruby.RubyRegexp$SearchMatchTask.range:I
            aload 0 /* this */
            getfield org.jruby.RubyRegexp$SearchMatchTask.option:I
            invokevirtual org.joni.Matcher.searchInterruptible:(III)I
         3: .line 289
      StackMap locals:
      StackMap stack: int
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            areturn
        end local 2 // org.joni.Matcher matcher
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyRegexp$SearchMatchTask this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/jruby/RubyRegexp$SearchMatchTask;
            0    4     1  context  Lorg/jruby/runtime/ThreadContext;
            0    4     2  matcher  Lorg/joni/Matcher;
    Exceptions:
      throws java.lang.InterruptedException
    MethodParameters:
         Name  Flags
      context  
      matcher  

  public void wakeup(org.jruby.RubyThread, org.joni.Matcher);
    descriptor: (Lorg/jruby/RubyThread;Lorg/joni/Matcher;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // org.jruby.RubyRegexp$SearchMatchTask this
        start local 1 // org.jruby.RubyThread thread
        start local 2 // org.joni.Matcher matcher
         0: .line 296
            aload 1 /* thread */
            invokevirtual org.jruby.RubyThread.getNativeThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
         1: .line 297
            return
        end local 2 // org.joni.Matcher matcher
        end local 1 // org.jruby.RubyThread thread
        end local 0 // org.jruby.RubyRegexp$SearchMatchTask this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/jruby/RubyRegexp$SearchMatchTask;
            0    2     1   thread  Lorg/jruby/RubyThread;
            0    2     2  matcher  Lorg/joni/Matcher;
    MethodParameters:
         Name  Flags
      thread   
      matcher  

  public java.lang.Object run(org.jruby.runtime.ThreadContext, java.lang.Object);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            checkcast org.joni.Matcher
            invokevirtual org.jruby.RubyRegexp$SearchMatchTask.run:(Lorg/jruby/runtime/ThreadContext;Lorg/joni/Matcher;)Ljava/lang/Integer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.InterruptedException

  public void wakeup(org.jruby.RubyThread, java.lang.Object);
    descriptor: (Lorg/jruby/RubyThread;Ljava/lang/Object;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            checkcast org.joni.Matcher
            invokevirtual org.jruby.RubyRegexp$SearchMatchTask.wakeup:(Lorg/jruby/RubyThread;Lorg/joni/Matcher;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Lorg/jruby/RubyThread$Task<Lorg/joni/Matcher;Ljava/lang/Integer;>;
SourceFile: "RubyRegexp.java"
NestHost: org.jruby.RubyRegexp
InnerClasses:
  private SearchMatchTask = org.jruby.RubyRegexp$SearchMatchTask of org.jruby.RubyRegexp
  public abstract Task = org.jruby.RubyThread$Task of org.jruby.RubyThread