public class org.jruby.RubyStopIteration extends org.jruby.RubyIndexError
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jruby.RubyStopIteration
  super_class: org.jruby.RubyIndexError
{
  private org.jruby.runtime.builtin.IRubyObject result;
    descriptor: Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0002) ACC_PRIVATE

  static org.jruby.RubyClass define(org.jruby.Ruby, org.jruby.RubyClass);
    descriptor: (Lorg/jruby/Ruby;Lorg/jruby/RubyClass;)Lorg/jruby/RubyClass;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.jruby.Ruby runtime
        start local 1 // org.jruby.RubyClass superClass
         0: .line 50
            aload 0 /* runtime */
            ldc "StopIteration"
            aload 1 /* superClass */
            invokedynamic allocate()Lorg/jruby/runtime/ObjectAllocator;
              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:
                  (Lorg/jruby/Ruby;Lorg/jruby/RubyClass;)Lorg/jruby/runtime/builtin/IRubyObject;
                  org/jruby/RubyStopIteration.lambda$0(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;)Lorg/jruby/runtime/builtin/IRubyObject; (6)
                  (Lorg/jruby/Ruby;Lorg/jruby/RubyClass;)Lorg/jruby/runtime/builtin/IRubyObject;
            invokevirtual org.jruby.Ruby.defineClass:(Ljava/lang/String;Lorg/jruby/RubyClass;Lorg/jruby/runtime/ObjectAllocator;)Lorg/jruby/RubyClass;
            astore 2 /* StopIteration */
        start local 2 // org.jruby.RubyClass StopIteration
         1: .line 51
            aload 2 /* StopIteration */
            ldc Lorg/jruby/RubyStopIteration;
            invokevirtual org.jruby.RubyClass.defineAnnotatedMethods:(Ljava/lang/Class;)V
         2: .line 52
            aload 2 /* StopIteration */
            areturn
        end local 2 // org.jruby.RubyClass StopIteration
        end local 1 // org.jruby.RubyClass superClass
        end local 0 // org.jruby.Ruby runtime
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0        runtime  Lorg/jruby/Ruby;
            0    3     1     superClass  Lorg/jruby/RubyClass;
            1    3     2  StopIteration  Lorg/jruby/RubyClass;
    MethodParameters:
            Name  Flags
      runtime     
      superClass  

  public static org.jruby.RubyStopIteration newInstance(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, java.lang.String);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Ljava/lang/String;)Lorg/jruby/RubyStopIteration;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=7, args_size=3
        start local 0 // org.jruby.runtime.ThreadContext context
        start local 1 // org.jruby.runtime.builtin.IRubyObject result
        start local 2 // java.lang.String message
         0: .line 56
            aload 0 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            astore 3 /* runtime */
        start local 3 // org.jruby.Ruby runtime
         1: .line 57
            aload 3 /* runtime */
            invokevirtual org.jruby.Ruby.getStopIteration:()Lorg/jruby/RubyClass;
            astore 4 /* StopIteration */
        start local 4 // org.jruby.RubyClass StopIteration
         2: .line 58
            aload 2 /* message */
            ifnonnull 3
            aload 0 /* context */
            getfield org.jruby.runtime.ThreadContext.nil:Lorg/jruby/runtime/builtin/IRubyObject;
            goto 4
      StackMap locals: org.jruby.Ruby org.jruby.RubyClass
      StackMap stack:
         3: aload 3 /* runtime */
            aload 2 /* message */
            invokevirtual org.jruby.Ruby.newString:(Ljava/lang/String;)Lorg/jruby/RubyString;
      StackMap locals:
      StackMap stack: org.jruby.runtime.builtin.IRubyObject
         4: astore 5 /* msg */
        start local 5 // org.jruby.runtime.builtin.IRubyObject msg
         5: .line 60
            aload 4 /* StopIteration */
            aload 0 /* context */
            aload 5 /* msg */
            getstatic org.jruby.runtime.Block.NULL_BLOCK:Lorg/jruby/runtime/Block;
            invokevirtual org.jruby.RubyClass.newInstance:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
         6: .line 59
            checkcast org.jruby.RubyStopIteration
            astore 6 /* instance */
        start local 6 // org.jruby.RubyStopIteration instance
         7: .line 61
            aload 6 /* instance */
            aload 1 /* result */
            putfield org.jruby.RubyStopIteration.result:Lorg/jruby/runtime/builtin/IRubyObject;
         8: .line 62
            aload 6 /* instance */
            areturn
        end local 6 // org.jruby.RubyStopIteration instance
        end local 5 // org.jruby.runtime.builtin.IRubyObject msg
        end local 4 // org.jruby.RubyClass StopIteration
        end local 3 // org.jruby.Ruby runtime
        end local 2 // java.lang.String message
        end local 1 // org.jruby.runtime.builtin.IRubyObject result
        end local 0 // org.jruby.runtime.ThreadContext context
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    9     0        context  Lorg/jruby/runtime/ThreadContext;
            0    9     1         result  Lorg/jruby/runtime/builtin/IRubyObject;
            0    9     2        message  Ljava/lang/String;
            1    9     3        runtime  Lorg/jruby/Ruby;
            2    9     4  StopIteration  Lorg/jruby/RubyClass;
            5    9     5            msg  Lorg/jruby/runtime/builtin/IRubyObject;
            7    9     6       instance  Lorg/jruby/RubyStopIteration;
    MethodParameters:
         Name  Flags
      context  
      result   
      message  

  protected void <init>(org.jruby.Ruby, org.jruby.RubyClass);
    descriptor: (Lorg/jruby/Ruby;Lorg/jruby/RubyClass;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.jruby.RubyStopIteration this
        start local 1 // org.jruby.Ruby runtime
        start local 2 // org.jruby.RubyClass exceptionClass
         0: .line 68
            aload 0 /* this */
            aload 1 /* runtime */
            aload 2 /* exceptionClass */
            invokespecial org.jruby.RubyIndexError.<init>:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;)V
         1: .line 69
            return
        end local 2 // org.jruby.RubyClass exceptionClass
        end local 1 // org.jruby.Ruby runtime
        end local 0 // org.jruby.RubyStopIteration this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/jruby/RubyStopIteration;
            0    2     1         runtime  Lorg/jruby/Ruby;
            0    2     2  exceptionClass  Lorg/jruby/RubyClass;
    MethodParameters:
                Name  Flags
      runtime         
      exceptionClass  

  protected org.jruby.exceptions.RaiseException constructThrowable(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/jruby/exceptions/RaiseException;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.jruby.RubyStopIteration this
        start local 1 // java.lang.String message
         0: .line 73
            new org.jruby.exceptions.StopIteration
            dup
            aload 1 /* message */
            aload 0 /* this */
            invokespecial org.jruby.exceptions.StopIteration.<init>:(Ljava/lang/String;Lorg/jruby/RubyStopIteration;)V
            areturn
        end local 1 // java.lang.String message
        end local 0 // org.jruby.RubyStopIteration this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/RubyStopIteration;
            0    1     1  message  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      message  

  public org.jruby.runtime.builtin.IRubyObject result();
    descriptor: ()Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.RubyStopIteration this
         0: .line 78
            aload 0 /* this */
            getfield org.jruby.RubyStopIteration.result:Lorg/jruby/runtime/builtin/IRubyObject;
            ifnonnull 1
            aload 0 /* this */
            invokevirtual org.jruby.RubyStopIteration.getRuntime:()Lorg/jruby/Ruby;
            invokevirtual org.jruby.Ruby.getNil:()Lorg/jruby/runtime/builtin/IRubyObject;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.jruby.RubyStopIteration.result:Lorg/jruby/runtime/builtin/IRubyObject;
      StackMap locals:
      StackMap stack: org.jruby.runtime.builtin.IRubyObject
         2: areturn
        end local 0 // org.jruby.RubyStopIteration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/jruby/RubyStopIteration;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod()

  public org.jruby.runtime.builtin.IRubyObject __set_result__(org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.jruby.RubyStopIteration this
        start local 1 // org.jruby.runtime.builtin.IRubyObject result
         0: .line 83
            aload 0 /* this */
            aload 1 /* result */
            dup_x1
            putfield org.jruby.RubyStopIteration.result:Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 1 // org.jruby.runtime.builtin.IRubyObject result
        end local 0 // org.jruby.RubyStopIteration this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/jruby/RubyStopIteration;
            0    1     1  result  Lorg/jruby/runtime/builtin/IRubyObject;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod(name = {"__set_result__"}, visibility = org.jruby.runtime.Visibility.PRIVATE:Lorg/jruby/runtime/Visibility;)
    MethodParameters:
        Name  Flags
      result  

  public void setResult(org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.RubyStopIteration this
        start local 1 // org.jruby.runtime.builtin.IRubyObject result
         0: .line 87
            aload 0 /* this */
            aload 1 /* result */
            putfield org.jruby.RubyStopIteration.result:Lorg/jruby/runtime/builtin/IRubyObject;
         1: .line 88
            return
        end local 1 // org.jruby.runtime.builtin.IRubyObject result
        end local 0 // org.jruby.RubyStopIteration this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/jruby/RubyStopIteration;
            0    2     1  result  Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
        Name  Flags
      result  

  private static org.jruby.runtime.builtin.IRubyObject lambda$0(org.jruby.Ruby, org.jruby.RubyClass);
    descriptor: (Lorg/jruby/Ruby;Lorg/jruby/RubyClass;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.jruby.Ruby runtime1
        start local 1 // org.jruby.RubyClass klass
         0: .line 50
            new org.jruby.RubyStopIteration
            dup
            aload 0 /* runtime1 */
            aload 1 /* klass */
            invokespecial org.jruby.RubyStopIteration.<init>:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;)V
            areturn
        end local 1 // org.jruby.RubyClass klass
        end local 0 // org.jruby.Ruby runtime1
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  runtime1  Lorg/jruby/Ruby;
            0    1     1     klass  Lorg/jruby/RubyClass;
}
SourceFile: "RubyStopIteration.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyClass(name = {"StopIteration"}, parent = "IndexError")