public class org.jruby.RubyEnumerator extends org.jruby.RubyObject implements java.util.Iterator<java.lang.Object>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jruby.RubyEnumerator
  super_class: org.jruby.RubyObject
{
  public static final java.lang.String GENERATOR;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "@__generator__"

  public static final java.lang.String LOOKAHEAD;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "@__lookahead__"

  public static final java.lang.String FEEDVALUE;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "@__feedvalue__"

  public static final java.lang.String OBJECT;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "@__object__"

  public static final java.lang.String METHOD;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "@__method__"

  public static final java.lang.String ARGS;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "@__args__"

  private org.jruby.runtime.builtin.IRubyObject object;
    descriptor: Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String method;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private org.jruby.runtime.builtin.IRubyObject[] methodArgs;
    descriptor: [Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0002) ACC_PRIVATE

  private org.jruby.runtime.builtin.IRubyObject size;
    descriptor: Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0002) ACC_PRIVATE

  private org.jruby.RubyEnumerator$SizeFn sizeFn;
    descriptor: Lorg/jruby/RubyEnumerator$SizeFn;
    flags: (0x0002) ACC_PRIVATE

  private org.jruby.RubyEnumerator$FeedValue feedValue;
    descriptor: Lorg/jruby/RubyEnumerator$FeedValue;
    flags: (0x0002) ACC_PRIVATE

  private static final org.jruby.runtime.ObjectAllocator ALLOCATOR;
    descriptor: Lorg/jruby/runtime/ObjectAllocator;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 98
            new org.jruby.RubyEnumerator$1
            dup
            invokespecial org.jruby.RubyEnumerator$1.<init>:()V
            putstatic org.jruby.RubyEnumerator.ALLOCATOR:Lorg/jruby/runtime/ObjectAllocator;
         1: .line 103
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static void defineEnumerator(org.jruby.Ruby);
    descriptor: (Lorg/jruby/Ruby;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // org.jruby.Ruby runtime
         0: .line 80
            aload 0 /* runtime */
            ldc "Enumerable"
            invokevirtual org.jruby.Ruby.getModule:(Ljava/lang/String;)Lorg/jruby/RubyModule;
            astore 1 /* Enumerable */
        start local 1 // org.jruby.RubyModule Enumerable
         1: .line 83
            aload 0 /* runtime */
            ldc "Enumerator"
            aload 0 /* runtime */
            invokevirtual org.jruby.Ruby.getObject:()Lorg/jruby/RubyClass;
            getstatic org.jruby.RubyEnumerator.ALLOCATOR:Lorg/jruby/runtime/ObjectAllocator;
            invokevirtual org.jruby.Ruby.defineClass:(Ljava/lang/String;Lorg/jruby/RubyClass;Lorg/jruby/runtime/ObjectAllocator;)Lorg/jruby/RubyClass;
            astore 2 /* Enumerator */
        start local 2 // org.jruby.RubyClass Enumerator
         2: .line 85
            aload 2 /* Enumerator */
            aload 1 /* Enumerable */
            invokevirtual org.jruby.RubyClass.includeModule:(Lorg/jruby/runtime/builtin/IRubyObject;)V
         3: .line 86
            aload 2 /* Enumerator */
            ldc Lorg/jruby/RubyEnumerator;
            invokevirtual org.jruby.RubyClass.defineAnnotatedMethods:(Ljava/lang/Class;)V
         4: .line 87
            aload 0 /* runtime */
            aload 2 /* Enumerator */
            invokevirtual org.jruby.Ruby.setEnumerator:(Lorg/jruby/RubyClass;)V
         5: .line 89
            aload 0 /* runtime */
            invokestatic org.jruby.RubyGenerator.createGeneratorClass:(Lorg/jruby/Ruby;)V
         6: .line 90
            aload 0 /* runtime */
            invokestatic org.jruby.RubyYielder.createYielderClass:(Lorg/jruby/Ruby;)Lorg/jruby/RubyClass;
            pop
         7: .line 93
            aload 0 /* runtime */
            ldc "FeedValue"
            aload 0 /* runtime */
            invokevirtual org.jruby.Ruby.getObject:()Lorg/jruby/RubyClass;
            getstatic org.jruby.runtime.ObjectAllocator.NOT_ALLOCATABLE_ALLOCATOR:Lorg/jruby/runtime/ObjectAllocator;
            aload 2 /* Enumerator */
            invokevirtual org.jruby.Ruby.defineClassUnder:(Ljava/lang/String;Lorg/jruby/RubyClass;Lorg/jruby/runtime/ObjectAllocator;Lorg/jruby/RubyModule;)Lorg/jruby/RubyClass;
            astore 3 /* FeedValue */
        start local 3 // org.jruby.RubyClass FeedValue
         8: .line 94
            aload 3 /* FeedValue */
            ldc Lorg/jruby/RubyEnumerator$FeedValue;
            invokevirtual org.jruby.RubyClass.defineAnnotatedMethods:(Ljava/lang/Class;)V
         9: .line 95
            aload 2 /* Enumerator */
            aload 0 /* runtime */
            ldc "FeedValue"
            iconst_1
            invokevirtual org.jruby.RubyClass.setConstantVisibility:(Lorg/jruby/Ruby;Ljava/lang/String;Z)V
        10: .line 96
            return
        end local 3 // org.jruby.RubyClass FeedValue
        end local 2 // org.jruby.RubyClass Enumerator
        end local 1 // org.jruby.RubyModule Enumerable
        end local 0 // org.jruby.Ruby runtime
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   11     0     runtime  Lorg/jruby/Ruby;
            1   11     1  Enumerable  Lorg/jruby/RubyModule;
            2   11     2  Enumerator  Lorg/jruby/RubyClass;
            8   11     3   FeedValue  Lorg/jruby/RubyClass;
    MethodParameters:
         Name  Flags
      runtime  

  private void <init>(org.jruby.Ruby, org.jruby.RubyClass);
    descriptor: (Lorg/jruby/Ruby;Lorg/jruby/RubyClass;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.Ruby runtime
        start local 2 // org.jruby.RubyClass type
         0: .line 140
            aload 0 /* this */
            aload 1 /* runtime */
            aload 2 /* type */
            invokespecial org.jruby.RubyObject.<init>:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;)V
         1: .line 141
            aload 0 /* this */
            aload 1 /* runtime */
            aload 1 /* runtime */
            invokevirtual org.jruby.Ruby.getNil:()Lorg/jruby/runtime/builtin/IRubyObject;
            aload 1 /* runtime */
            invokestatic org.jruby.RubyString.newEmptyString:(Lorg/jruby/Ruby;)Lorg/jruby/RubyString;
            getstatic org.jruby.runtime.builtin.IRubyObject.NULL_ARRAY:[Lorg/jruby/runtime/builtin/IRubyObject;
            invokevirtual org.jruby.RubyEnumerator.initialize:(Lorg/jruby/Ruby;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            pop
         2: .line 142
            return
        end local 2 // org.jruby.RubyClass type
        end local 1 // org.jruby.Ruby runtime
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/jruby/RubyEnumerator;
            0    3     1  runtime  Lorg/jruby/Ruby;
            0    3     2     type  Lorg/jruby/RubyClass;
    MethodParameters:
         Name  Flags
      runtime  
      type     

  private void <init>(org.jruby.Ruby, org.jruby.RubyClass, org.jruby.runtime.builtin.IRubyObject, org.jruby.RubySymbol, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyEnumerator$SizeFn);
    descriptor: (Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubySymbol;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyEnumerator$SizeFn;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=8, args_size=8
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.Ruby runtime
        start local 2 // org.jruby.RubyClass type
        start local 3 // org.jruby.runtime.builtin.IRubyObject object
        start local 4 // org.jruby.RubySymbol method
        start local 5 // org.jruby.runtime.builtin.IRubyObject[] args
        start local 6 // org.jruby.runtime.builtin.IRubyObject size
        start local 7 // org.jruby.RubyEnumerator$SizeFn sizeFn
         0: .line 146
            aload 0 /* this */
            aload 1 /* runtime */
            aload 2 /* type */
            invokespecial org.jruby.RubyObject.<init>:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;)V
         1: .line 147
            aload 0 /* this */
            aload 1 /* runtime */
            aload 3 /* object */
            aload 4 /* method */
            aload 5 /* args */
            aload 6 /* size */
            aload 7 /* sizeFn */
            invokevirtual org.jruby.RubyEnumerator.initialize:(Lorg/jruby/Ruby;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyEnumerator$SizeFn;)Lorg/jruby/runtime/builtin/IRubyObject;
            pop
         2: .line 148
            return
        end local 7 // org.jruby.RubyEnumerator$SizeFn sizeFn
        end local 6 // org.jruby.runtime.builtin.IRubyObject size
        end local 5 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 4 // org.jruby.RubySymbol method
        end local 3 // org.jruby.runtime.builtin.IRubyObject object
        end local 2 // org.jruby.RubyClass type
        end local 1 // org.jruby.Ruby runtime
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/jruby/RubyEnumerator;
            0    3     1  runtime  Lorg/jruby/Ruby;
            0    3     2     type  Lorg/jruby/RubyClass;
            0    3     3   object  Lorg/jruby/runtime/builtin/IRubyObject;
            0    3     4   method  Lorg/jruby/RubySymbol;
            0    3     5     args  [Lorg/jruby/runtime/builtin/IRubyObject;
            0    3     6     size  Lorg/jruby/runtime/builtin/IRubyObject;
            0    3     7   sizeFn  Lorg/jruby/RubyEnumerator$SizeFn;
    MethodParameters:
         Name  Flags
      runtime  
      type     
      object   
      method   
      args     
      size     
      sizeFn   

  private void <init>(org.jruby.Ruby, org.jruby.RubyClass, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[]);
    descriptor: (Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=6
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.Ruby runtime
        start local 2 // org.jruby.RubyClass type
        start local 3 // org.jruby.runtime.builtin.IRubyObject object
        start local 4 // org.jruby.runtime.builtin.IRubyObject method
        start local 5 // org.jruby.runtime.builtin.IRubyObject[] args
         0: .line 151
            aload 0 /* this */
            aload 1 /* runtime */
            aload 2 /* type */
            invokespecial org.jruby.RubyObject.<init>:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;)V
         1: .line 152
            aload 0 /* this */
            aload 1 /* runtime */
            aload 3 /* object */
            aload 4 /* method */
            aload 5 /* args */
            invokevirtual org.jruby.RubyEnumerator.initialize:(Lorg/jruby/Ruby;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            pop
         2: .line 153
            return
        end local 5 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 4 // org.jruby.runtime.builtin.IRubyObject method
        end local 3 // org.jruby.runtime.builtin.IRubyObject object
        end local 2 // org.jruby.RubyClass type
        end local 1 // org.jruby.Ruby runtime
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/jruby/RubyEnumerator;
            0    3     1  runtime  Lorg/jruby/Ruby;
            0    3     2     type  Lorg/jruby/RubyClass;
            0    3     3   object  Lorg/jruby/runtime/builtin/IRubyObject;
            0    3     4   method  Lorg/jruby/runtime/builtin/IRubyObject;
            0    3     5     args  [Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
         Name  Flags
      runtime  
      type     
      object   
      method   
      args     

  public static org.jruby.runtime.builtin.IRubyObject enumeratorizeWithSize(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, java.lang.String, org.jruby.runtime.builtin.IRubyObject[], org.jruby.RubyEnumerator$SizeFn);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Ljava/lang/String;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyEnumerator$SizeFn;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=9, locals=6, args_size=5
        start local 0 // org.jruby.runtime.ThreadContext context
        start local 1 // org.jruby.runtime.builtin.IRubyObject object
        start local 2 // java.lang.String method
        start local 3 // org.jruby.runtime.builtin.IRubyObject[] args
        start local 4 // org.jruby.RubyEnumerator$SizeFn sizeFn
         0: .line 159
            aload 0 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            astore 5 /* runtime */
        start local 5 // org.jruby.Ruby runtime
         1: .line 160
            new org.jruby.RubyEnumerator
            dup
            aload 5 /* runtime */
            aload 5 /* runtime */
            invokevirtual org.jruby.Ruby.getEnumerator:()Lorg/jruby/RubyClass;
            aload 1 /* object */
            aload 5 /* runtime */
            aload 2 /* method */
            invokevirtual org.jruby.Ruby.fastNewSymbol:(Ljava/lang/String;)Lorg/jruby/RubySymbol;
            aload 3 /* args */
            aconst_null
            aload 4 /* sizeFn */
            invokespecial org.jruby.RubyEnumerator.<init>:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubySymbol;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyEnumerator$SizeFn;)V
            areturn
        end local 5 // org.jruby.Ruby runtime
        end local 4 // org.jruby.RubyEnumerator$SizeFn sizeFn
        end local 3 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 2 // java.lang.String method
        end local 1 // org.jruby.runtime.builtin.IRubyObject object
        end local 0 // org.jruby.runtime.ThreadContext context
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0  context  Lorg/jruby/runtime/ThreadContext;
            0    2     1   object  Lorg/jruby/runtime/builtin/IRubyObject;
            0    2     2   method  Ljava/lang/String;
            0    2     3     args  [Lorg/jruby/runtime/builtin/IRubyObject;
            0    2     4   sizeFn  Lorg/jruby/RubyEnumerator$SizeFn;
            1    2     5  runtime  Lorg/jruby/Ruby;
    MethodParameters:
         Name  Flags
      context  
      object   final
      method   
      args     
      sizeFn   

  public static org.jruby.runtime.builtin.IRubyObject enumeratorizeWithSize(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, java.lang.String, org.jruby.RubyEnumerator$SizeFn);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Ljava/lang/String;Lorg/jruby/RubyEnumerator$SizeFn;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.jruby.runtime.ThreadContext context
        start local 1 // org.jruby.runtime.builtin.IRubyObject object
        start local 2 // java.lang.String method
        start local 3 // org.jruby.RubyEnumerator$SizeFn sizeFn
         0: .line 164
            aload 0 /* context */
            aload 1 /* object */
            aload 2 /* method */
            getstatic org.jruby.RubyEnumerator.NULL_ARRAY:[Lorg/jruby/runtime/builtin/IRubyObject;
            aload 3 /* sizeFn */
            invokestatic org.jruby.RubyEnumerator.enumeratorizeWithSize:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Ljava/lang/String;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyEnumerator$SizeFn;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 3 // org.jruby.RubyEnumerator$SizeFn sizeFn
        end local 2 // java.lang.String method
        end local 1 // org.jruby.runtime.builtin.IRubyObject object
        end local 0 // org.jruby.runtime.ThreadContext context
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  context  Lorg/jruby/runtime/ThreadContext;
            0    1     1   object  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     2   method  Ljava/lang/String;
            0    1     3   sizeFn  Lorg/jruby/RubyEnumerator$SizeFn;
    MethodParameters:
         Name  Flags
      context  
      object   
      method   
      sizeFn   

  public static org.jruby.runtime.builtin.IRubyObject enumeratorizeWithSize(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, java.lang.String, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=10, locals=6, args_size=5
        start local 0 // org.jruby.runtime.ThreadContext context
        start local 1 // org.jruby.runtime.builtin.IRubyObject object
        start local 2 // java.lang.String method
        start local 3 // org.jruby.runtime.builtin.IRubyObject arg
        start local 4 // org.jruby.runtime.builtin.IRubyObject size
         0: .line 168
            aload 0 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            astore 5 /* runtime */
        start local 5 // org.jruby.Ruby runtime
         1: .line 169
            new org.jruby.RubyEnumerator
            dup
            aload 5 /* runtime */
            aload 5 /* runtime */
            invokevirtual org.jruby.Ruby.getEnumerator:()Lorg/jruby/RubyClass;
            aload 1 /* object */
            aload 5 /* runtime */
            aload 2 /* method */
            invokevirtual org.jruby.Ruby.fastNewSymbol:(Ljava/lang/String;)Lorg/jruby/RubySymbol;
            iconst_1
            anewarray org.jruby.runtime.builtin.IRubyObject
            dup
            iconst_0
            aload 3 /* arg */
            aastore
            aload 4 /* size */
            aconst_null
            invokespecial org.jruby.RubyEnumerator.<init>:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubySymbol;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyEnumerator$SizeFn;)V
            areturn
        end local 5 // org.jruby.Ruby runtime
        end local 4 // org.jruby.runtime.builtin.IRubyObject size
        end local 3 // org.jruby.runtime.builtin.IRubyObject arg
        end local 2 // java.lang.String method
        end local 1 // org.jruby.runtime.builtin.IRubyObject object
        end local 0 // org.jruby.runtime.ThreadContext context
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0  context  Lorg/jruby/runtime/ThreadContext;
            0    2     1   object  Lorg/jruby/runtime/builtin/IRubyObject;
            0    2     2   method  Ljava/lang/String;
            0    2     3      arg  Lorg/jruby/runtime/builtin/IRubyObject;
            0    2     4     size  Lorg/jruby/runtime/builtin/IRubyObject;
            1    2     5  runtime  Lorg/jruby/Ruby;
    MethodParameters:
         Name  Flags
      context  
      object   
      method   
      arg      
      size     

  public static org.jruby.runtime.builtin.IRubyObject enumeratorize(org.jruby.Ruby, org.jruby.runtime.builtin.IRubyObject, java.lang.String);
    descriptor: (Lorg/jruby/Ruby;Lorg/jruby/runtime/builtin/IRubyObject;Ljava/lang/String;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=7, locals=3, args_size=3
        start local 0 // org.jruby.Ruby runtime
        start local 1 // org.jruby.runtime.builtin.IRubyObject object
        start local 2 // java.lang.String method
         0: .line 173
            new org.jruby.RubyEnumerator
            dup
            aload 0 /* runtime */
            aload 0 /* runtime */
            invokevirtual org.jruby.Ruby.getEnumerator:()Lorg/jruby/RubyClass;
            aload 1 /* object */
            aload 0 /* runtime */
            aload 2 /* method */
            invokevirtual org.jruby.Ruby.fastNewSymbol:(Ljava/lang/String;)Lorg/jruby/RubySymbol;
            getstatic org.jruby.runtime.builtin.IRubyObject.NULL_ARRAY:[Lorg/jruby/runtime/builtin/IRubyObject;
            invokespecial org.jruby.RubyEnumerator.<init>:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;)V
            areturn
        end local 2 // java.lang.String method
        end local 1 // org.jruby.runtime.builtin.IRubyObject object
        end local 0 // org.jruby.Ruby runtime
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  runtime  Lorg/jruby/Ruby;
            0    1     1   object  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     2   method  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      runtime  
      object   
      method   

  public static org.jruby.runtime.builtin.IRubyObject enumeratorize(org.jruby.Ruby, org.jruby.runtime.builtin.IRubyObject, java.lang.String, org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/Ruby;Lorg/jruby/runtime/builtin/IRubyObject;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=10, locals=4, args_size=4
        start local 0 // org.jruby.Ruby runtime
        start local 1 // org.jruby.runtime.builtin.IRubyObject object
        start local 2 // java.lang.String method
        start local 3 // org.jruby.runtime.builtin.IRubyObject arg
         0: .line 177
            new org.jruby.RubyEnumerator
            dup
            aload 0 /* runtime */
            aload 0 /* runtime */
            invokevirtual org.jruby.Ruby.getEnumerator:()Lorg/jruby/RubyClass;
            aload 1 /* object */
            aload 0 /* runtime */
            aload 2 /* method */
            invokevirtual org.jruby.Ruby.fastNewSymbol:(Ljava/lang/String;)Lorg/jruby/RubySymbol;
            iconst_1
            anewarray org.jruby.runtime.builtin.IRubyObject
            dup
            iconst_0
            aload 3 /* arg */
            aastore
            invokespecial org.jruby.RubyEnumerator.<init>:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;)V
            areturn
        end local 3 // org.jruby.runtime.builtin.IRubyObject arg
        end local 2 // java.lang.String method
        end local 1 // org.jruby.runtime.builtin.IRubyObject object
        end local 0 // org.jruby.Ruby runtime
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  runtime  Lorg/jruby/Ruby;
            0    1     1   object  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     2   method  Ljava/lang/String;
            0    1     3      arg  Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
         Name  Flags
      runtime  
      object   
      method   
      arg      

  public static org.jruby.runtime.builtin.IRubyObject enumeratorize(org.jruby.Ruby, org.jruby.runtime.builtin.IRubyObject, java.lang.String, org.jruby.runtime.builtin.IRubyObject[]);
    descriptor: (Lorg/jruby/Ruby;Lorg/jruby/runtime/builtin/IRubyObject;Ljava/lang/String;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=7, locals=4, args_size=4
        start local 0 // org.jruby.Ruby runtime
        start local 1 // org.jruby.runtime.builtin.IRubyObject object
        start local 2 // java.lang.String method
        start local 3 // org.jruby.runtime.builtin.IRubyObject[] args
         0: .line 181
            new org.jruby.RubyEnumerator
            dup
            aload 0 /* runtime */
            aload 0 /* runtime */
            invokevirtual org.jruby.Ruby.getEnumerator:()Lorg/jruby/RubyClass;
            aload 1 /* object */
            aload 0 /* runtime */
            aload 2 /* method */
            invokevirtual org.jruby.Ruby.fastNewSymbol:(Ljava/lang/String;)Lorg/jruby/RubySymbol;
            aload 3 /* args */
            invokespecial org.jruby.RubyEnumerator.<init>:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;)V
            areturn
        end local 3 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 2 // java.lang.String method
        end local 1 // org.jruby.runtime.builtin.IRubyObject object
        end local 0 // org.jruby.Ruby runtime
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  runtime  Lorg/jruby/Ruby;
            0    1     1   object  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     2   method  Ljava/lang/String;
            0    1     3     args  [Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
         Name  Flags
      runtime  
      object   
      method   
      args     

  public static org.jruby.runtime.builtin.IRubyObject enumeratorize(org.jruby.Ruby, org.jruby.RubyClass, org.jruby.runtime.builtin.IRubyObject, java.lang.String);
    descriptor: (Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Lorg/jruby/runtime/builtin/IRubyObject;Ljava/lang/String;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=7, locals=4, args_size=4
        start local 0 // org.jruby.Ruby runtime
        start local 1 // org.jruby.RubyClass type
        start local 2 // org.jruby.runtime.builtin.IRubyObject object
        start local 3 // java.lang.String method
         0: .line 185
            new org.jruby.RubyEnumerator
            dup
            aload 0 /* runtime */
            aload 1 /* type */
            aload 2 /* object */
            aload 0 /* runtime */
            aload 3 /* method */
            invokevirtual org.jruby.Ruby.fastNewSymbol:(Ljava/lang/String;)Lorg/jruby/RubySymbol;
            getstatic org.jruby.runtime.builtin.IRubyObject.NULL_ARRAY:[Lorg/jruby/runtime/builtin/IRubyObject;
            invokespecial org.jruby.RubyEnumerator.<init>:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;)V
            areturn
        end local 3 // java.lang.String method
        end local 2 // org.jruby.runtime.builtin.IRubyObject object
        end local 1 // org.jruby.RubyClass type
        end local 0 // org.jruby.Ruby runtime
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  runtime  Lorg/jruby/Ruby;
            0    1     1     type  Lorg/jruby/RubyClass;
            0    1     2   object  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     3   method  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      runtime  
      type     
      object   
      method   

  public static org.jruby.runtime.builtin.IRubyObject enumeratorize(org.jruby.Ruby, org.jruby.RubyClass, org.jruby.runtime.builtin.IRubyObject, java.lang.String, org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Lorg/jruby/runtime/builtin/IRubyObject;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=10, locals=5, args_size=5
        start local 0 // org.jruby.Ruby runtime
        start local 1 // org.jruby.RubyClass type
        start local 2 // org.jruby.runtime.builtin.IRubyObject object
        start local 3 // java.lang.String method
        start local 4 // org.jruby.runtime.builtin.IRubyObject arg
         0: .line 189
            new org.jruby.RubyEnumerator
            dup
            aload 0 /* runtime */
            aload 1 /* type */
            aload 2 /* object */
            aload 0 /* runtime */
            aload 3 /* method */
            invokevirtual org.jruby.Ruby.fastNewSymbol:(Ljava/lang/String;)Lorg/jruby/RubySymbol;
            iconst_1
            anewarray org.jruby.runtime.builtin.IRubyObject
            dup
            iconst_0
            aload 4 /* arg */
            aastore
            invokespecial org.jruby.RubyEnumerator.<init>:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;)V
            areturn
        end local 4 // org.jruby.runtime.builtin.IRubyObject arg
        end local 3 // java.lang.String method
        end local 2 // org.jruby.runtime.builtin.IRubyObject object
        end local 1 // org.jruby.RubyClass type
        end local 0 // org.jruby.Ruby runtime
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  runtime  Lorg/jruby/Ruby;
            0    1     1     type  Lorg/jruby/RubyClass;
            0    1     2   object  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     3   method  Ljava/lang/String;
            0    1     4      arg  Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
         Name  Flags
      runtime  
      type     
      object   
      method   
      arg      

  public static org.jruby.runtime.builtin.IRubyObject enumeratorize(org.jruby.Ruby, org.jruby.RubyClass, org.jruby.runtime.builtin.IRubyObject, java.lang.String, org.jruby.runtime.builtin.IRubyObject[]);
    descriptor: (Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Lorg/jruby/runtime/builtin/IRubyObject;Ljava/lang/String;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=7, locals=5, args_size=5
        start local 0 // org.jruby.Ruby runtime
        start local 1 // org.jruby.RubyClass type
        start local 2 // org.jruby.runtime.builtin.IRubyObject object
        start local 3 // java.lang.String method
        start local 4 // org.jruby.runtime.builtin.IRubyObject[] args
         0: .line 193
            new org.jruby.RubyEnumerator
            dup
            aload 0 /* runtime */
            aload 1 /* type */
            aload 2 /* object */
            aload 0 /* runtime */
            aload 3 /* method */
            invokevirtual org.jruby.Ruby.fastNewSymbol:(Ljava/lang/String;)Lorg/jruby/RubySymbol;
            aload 4 /* args */
            invokespecial org.jruby.RubyEnumerator.<init>:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;)V
            areturn
        end local 4 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 3 // java.lang.String method
        end local 2 // org.jruby.runtime.builtin.IRubyObject object
        end local 1 // org.jruby.RubyClass type
        end local 0 // org.jruby.Ruby runtime
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  runtime  Lorg/jruby/Ruby;
            0    1     1     type  Lorg/jruby/RubyClass;
            0    1     2   object  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     3   method  Ljava/lang/String;
            0    1     4     args  [Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
         Name  Flags
      runtime  
      type     
      object   
      method   
      args     

  public static org.jruby.runtime.builtin.IRubyObject __from(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[]);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=7, locals=9, args_size=3
        start local 0 // org.jruby.runtime.ThreadContext context
        start local 1 // org.jruby.runtime.builtin.IRubyObject klass
        start local 2 // org.jruby.runtime.builtin.IRubyObject[] args
         0: .line 200
            aload 2 /* args */
            iconst_0
            aaload
            astore 3 /* object */
        start local 3 // org.jruby.runtime.builtin.IRubyObject object
         1: .line 201
            aload 2 /* args */
            iconst_1
            aaload
            astore 4 /* method */
        start local 4 // org.jruby.runtime.builtin.IRubyObject method
         2: .line 203
            aconst_null
            astore 6 /* size */
        start local 6 // org.jruby.runtime.builtin.IRubyObject size
         3: aconst_null
            astore 7 /* sizeFn */
        start local 7 // org.jruby.RubyEnumerator$SizeFn sizeFn
         4: .line 204
            aload 2 /* args */
            arraylength
            iconst_2
            if_icmple 8
         5: .line 205
            aload 2 /* args */
            iconst_2
            aaload
            checkcast org.jruby.RubyArray
            invokevirtual org.jruby.RubyArray.toJavaArrayMaybeUnsafe:()[Lorg/jruby/runtime/builtin/IRubyObject;
            astore 5 /* methodArgs */
        start local 5 // org.jruby.runtime.builtin.IRubyObject[] methodArgs
         6: .line 206
            aload 2 /* args */
            arraylength
            iconst_3
            if_icmple 9
            aload 2 /* args */
            iconst_3
            aaload
            astore 6 /* size */
         7: .line 207
            goto 9
        end local 5 // org.jruby.runtime.builtin.IRubyObject[] methodArgs
         8: .line 208
      StackMap locals: org.jruby.runtime.ThreadContext org.jruby.runtime.builtin.IRubyObject org.jruby.runtime.builtin.IRubyObject[] org.jruby.runtime.builtin.IRubyObject org.jruby.runtime.builtin.IRubyObject top org.jruby.runtime.builtin.IRubyObject org.jruby.RubyEnumerator$SizeFn
      StackMap stack:
            getstatic org.jruby.runtime.builtin.IRubyObject.NULL_ARRAY:[Lorg/jruby/runtime/builtin/IRubyObject;
            astore 5 /* methodArgs */
        start local 5 // org.jruby.runtime.builtin.IRubyObject[] methodArgs
         9: .line 211
      StackMap locals: org.jruby.runtime.ThreadContext org.jruby.runtime.builtin.IRubyObject org.jruby.runtime.builtin.IRubyObject[] org.jruby.runtime.builtin.IRubyObject org.jruby.runtime.builtin.IRubyObject org.jruby.runtime.builtin.IRubyObject[] org.jruby.runtime.builtin.IRubyObject org.jruby.RubyEnumerator$SizeFn
      StackMap stack:
            aload 1 /* klass */
            checkcast org.jruby.RubyClass
            invokevirtual org.jruby.RubyClass.allocate:()Lorg/jruby/runtime/builtin/IRubyObject;
            checkcast org.jruby.RubyEnumerator
            astore 8 /* instance */
        start local 8 // org.jruby.RubyEnumerator instance
        10: .line 213
            aload 6 /* size */
            ifnonnull 17
        11: .line 214
            aload 3 /* object */
            instanceof org.jruby.RubyEnumerator
            ifeq 16
        12: .line 215
            aload 3 /* object */
            checkcast org.jruby.RubyEnumerator
            getfield org.jruby.RubyEnumerator.size:Lorg/jruby/runtime/builtin/IRubyObject;
            astore 6 /* size */
        13: .line 216
            aload 6 /* size */
            ifnull 14
            aload 6 /* size */
            ldc "call"
            invokeinterface org.jruby.runtime.builtin.IRubyObject.respondsTo:(Ljava/lang/String;)Z
            ifne 14
            aconst_null
            astore 6 /* size */
        14: .line 217
      StackMap locals: org.jruby.RubyEnumerator
      StackMap stack:
            aload 3 /* object */
            checkcast org.jruby.RubyEnumerator
            getfield org.jruby.RubyEnumerator.sizeFn:Lorg/jruby/RubyEnumerator$SizeFn;
            astore 7 /* sizeFn */
        15: .line 218
            goto 17
        16: .line 219
      StackMap locals:
      StackMap stack:
            aload 0 /* context */
            aload 3 /* object */
            invokestatic org.jruby.RubyEnumerable.enumSizeFn:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/RubyEnumerator$SizeFn;
            astore 7 /* sizeFn */
        17: .line 223
      StackMap locals:
      StackMap stack:
            aload 8 /* instance */
            aload 0 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            aload 3 /* object */
            aload 4 /* method */
            aload 5 /* methodArgs */
            aload 6 /* size */
            aload 7 /* sizeFn */
            invokevirtual org.jruby.RubyEnumerator.initialize:(Lorg/jruby/Ruby;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyEnumerator$SizeFn;)Lorg/jruby/runtime/builtin/IRubyObject;
            pop
        18: .line 226
            aload 8 /* instance */
            ldc "@receiver"
            aload 3 /* object */
            invokevirtual org.jruby.RubyEnumerator.setInstanceVariable:(Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            pop
        19: .line 227
            aload 8 /* instance */
            ldc "@method"
            aload 4 /* method */
            invokevirtual org.jruby.RubyEnumerator.setInstanceVariable:(Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            pop
        20: .line 228
            aload 8 /* instance */
            ldc "@args"
            aload 0 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            aload 5 /* methodArgs */
            invokestatic org.jruby.RubyArray.newArrayNoCopyLight:(Lorg/jruby/Ruby;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/RubyArray;
            invokevirtual org.jruby.RubyEnumerator.setInstanceVariable:(Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            pop
        21: .line 230
            aload 8 /* instance */
            areturn
        end local 8 // org.jruby.RubyEnumerator instance
        end local 7 // org.jruby.RubyEnumerator$SizeFn sizeFn
        end local 6 // org.jruby.runtime.builtin.IRubyObject size
        end local 5 // org.jruby.runtime.builtin.IRubyObject[] methodArgs
        end local 4 // org.jruby.runtime.builtin.IRubyObject method
        end local 3 // org.jruby.runtime.builtin.IRubyObject object
        end local 2 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 1 // org.jruby.runtime.builtin.IRubyObject klass
        end local 0 // org.jruby.runtime.ThreadContext context
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   22     0     context  Lorg/jruby/runtime/ThreadContext;
            0   22     1       klass  Lorg/jruby/runtime/builtin/IRubyObject;
            0   22     2        args  [Lorg/jruby/runtime/builtin/IRubyObject;
            1   22     3      object  Lorg/jruby/runtime/builtin/IRubyObject;
            2   22     4      method  Lorg/jruby/runtime/builtin/IRubyObject;
            6    8     5  methodArgs  [Lorg/jruby/runtime/builtin/IRubyObject;
            9   22     5  methodArgs  [Lorg/jruby/runtime/builtin/IRubyObject;
            3   22     6        size  Lorg/jruby/runtime/builtin/IRubyObject;
            4   22     7      sizeFn  Lorg/jruby/RubyEnumerator$SizeFn;
           10   22     8    instance  Lorg/jruby/RubyEnumerator;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod(name = {"__from"}, meta = true, required = 2, optional = 2, visibility = org.jruby.runtime.Visibility.PRIVATE:Lorg/jruby/runtime/Visibility;)
    MethodParameters:
         Name  Flags
      context  
      klass    
      args     

  public org.jruby.runtime.builtin.IRubyObject initialize(org.jruby.runtime.ThreadContext);
    descriptor: (Lorg/jruby/runtime/ThreadContext;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
         0: .line 235
            aload 0 /* this */
            aload 1 /* context */
            getstatic org.jruby.runtime.Block.NULL_BLOCK:Lorg/jruby/runtime/Block;
            invokevirtual org.jruby.RubyEnumerator.initialize:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/RubyEnumerator;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
    MethodParameters:
         Name  Flags
      context  

  public org.jruby.runtime.builtin.IRubyObject initialize(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.Block block
         0: .line 240
            aload 0 /* this */
            aload 1 /* context */
            getstatic org.jruby.RubyEnumerator.NULL_ARRAY:[Lorg/jruby/runtime/builtin/IRubyObject;
            aload 2 /* block */
            invokevirtual org.jruby.RubyEnumerator.initialize:(Lorg/jruby/runtime/ThreadContext;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 2 // org.jruby.runtime.Block block
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/RubyEnumerator;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2    block  Lorg/jruby/runtime/Block;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod(name = {"initialize"}, visibility = org.jruby.runtime.Visibility.PRIVATE:Lorg/jruby/runtime/Visibility;)
    MethodParameters:
         Name  Flags
      context  
      block    

  public org.jruby.runtime.builtin.IRubyObject initialize(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject object
        start local 3 // org.jruby.runtime.Block block
         0: .line 245
            aload 0 /* this */
            aload 1 /* context */
            iconst_1
            anewarray org.jruby.runtime.builtin.IRubyObject
            dup
            iconst_0
            aload 2 /* object */
            aastore
            aload 3 /* block */
            invokevirtual org.jruby.RubyEnumerator.initialize:(Lorg/jruby/runtime/ThreadContext;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 3 // org.jruby.runtime.Block block
        end local 2 // org.jruby.runtime.builtin.IRubyObject object
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/RubyEnumerator;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2   object  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     3    block  Lorg/jruby/runtime/Block;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod(name = {"initialize"}, visibility = org.jruby.runtime.Visibility.PRIVATE:Lorg/jruby/runtime/Visibility;)
    MethodParameters:
         Name  Flags
      context  
      object   
      block    

  public org.jruby.runtime.builtin.IRubyObject initialize(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=8, args_size=4
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject[] args
        start local 3 // org.jruby.runtime.Block block
         0: .line 250
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            astore 4 /* runtime */
        start local 4 // org.jruby.Ruby runtime
         1: .line 252
            aload 4 /* runtime */
            ldc "each"
            invokevirtual org.jruby.Ruby.newSymbol:(Ljava/lang/String;)Lorg/jruby/RubySymbol;
            astore 6 /* method */
        start local 6 // org.jruby.runtime.builtin.IRubyObject method
         2: .line 253
            aconst_null
            astore 7 /* size */
        start local 7 // org.jruby.runtime.builtin.IRubyObject size
         3: .line 255
            aload 3 /* block */
            invokevirtual org.jruby.runtime.Block.isGiven:()Z
            ifeq 14
         4: .line 256
            aload 4 /* runtime */
            aload 2 /* args */
            iconst_0
            iconst_1
            invokestatic org.jruby.runtime.Arity.checkArgumentCount:(Lorg/jruby/Ruby;[Lorg/jruby/runtime/builtin/IRubyObject;II)I
            pop
         5: .line 257
            aload 2 /* args */
            arraylength
            ifle 12
         6: .line 258
            aload 2 /* args */
            iconst_0
            aaload
            astore 7 /* size */
         7: .line 259
            aload 2 /* args */
            iconst_1
            aload 2 /* args */
            arraylength
            iconst_1
            isub
            invokestatic org.jruby.util.ArraySupport.newCopy:([Lorg/jruby/runtime/builtin/IRubyObject;II)[Lorg/jruby/runtime/builtin/IRubyObject;
            astore 2 /* args */
         8: .line 261
            aload 7 /* size */
            invokeinterface org.jruby.runtime.builtin.IRubyObject.isNil:()Z
            ifne 12
            aload 7 /* size */
            ldc "call"
            invokeinterface org.jruby.runtime.builtin.IRubyObject.respondsTo:(Ljava/lang/String;)Z
            ifne 12
         9: .line 262
            aload 7 /* size */
            instanceof org.jruby.RubyFloat
            ifeq 10
            aload 7 /* size */
            checkcast org.jruby.RubyFloat
            getfield org.jruby.RubyFloat.value:D
            ldc Infinity
            dcmpl
            ifeq 12
        10: .line 263
      StackMap locals: org.jruby.RubyEnumerator org.jruby.runtime.ThreadContext org.jruby.runtime.builtin.IRubyObject[] org.jruby.runtime.Block org.jruby.Ruby top org.jruby.runtime.builtin.IRubyObject org.jruby.runtime.builtin.IRubyObject
      StackMap stack:
            aload 7 /* size */
            instanceof org.jruby.RubyInteger
            ifne 12
        11: .line 264
            aload 4 /* runtime */
            aload 7 /* size */
            aload 4 /* runtime */
            invokevirtual org.jruby.Ruby.getInteger:()Lorg/jruby/RubyClass;
            invokevirtual org.jruby.Ruby.newTypeError:(Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;)Lorg/jruby/exceptions/RaiseException;
            athrow
        12: .line 267
      StackMap locals:
      StackMap stack:
            aload 4 /* runtime */
            invokevirtual org.jruby.Ruby.getGenerator:()Lorg/jruby/RubyClass;
            aload 1 /* context */
            getstatic org.jruby.runtime.builtin.IRubyObject.NULL_ARRAY:[Lorg/jruby/runtime/builtin/IRubyObject;
            aload 3 /* block */
            invokevirtual org.jruby.RubyClass.newInstance:(Lorg/jruby/runtime/ThreadContext;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            astore 5 /* object */
        start local 5 // org.jruby.runtime.builtin.IRubyObject object
        13: .line 269
            goto 21
        end local 5 // org.jruby.runtime.builtin.IRubyObject object
        14: .line 270
      StackMap locals:
      StackMap stack:
            aload 4 /* runtime */
            aload 2 /* args */
            iconst_1
            iconst_m1
            invokestatic org.jruby.runtime.Arity.checkArgumentCount:(Lorg/jruby/Ruby;[Lorg/jruby/runtime/builtin/IRubyObject;II)I
            pop
        15: .line 271
            aload 4 /* runtime */
            invokevirtual org.jruby.Ruby.getWarnings:()Lorg/jruby/common/RubyWarnings;
            ldc "Enumerator.new without a block is deprecated; use Object#to_enum"
            invokevirtual org.jruby.common.RubyWarnings.warn:(Ljava/lang/String;)V
        16: .line 272
            aload 2 /* args */
            iconst_0
            aaload
            astore 5 /* object */
        start local 5 // org.jruby.runtime.builtin.IRubyObject object
        17: .line 273
            aload 2 /* args */
            iconst_1
            aload 2 /* args */
            arraylength
            iconst_1
            isub
            invokestatic org.jruby.util.ArraySupport.newCopy:([Lorg/jruby/runtime/builtin/IRubyObject;II)[Lorg/jruby/runtime/builtin/IRubyObject;
            astore 2 /* args */
        18: .line 274
            aload 2 /* args */
            arraylength
            ifle 21
        19: .line 275
            aload 2 /* args */
            iconst_0
            aaload
            astore 6 /* method */
        20: .line 276
            aload 2 /* args */
            iconst_1
            aload 2 /* args */
            arraylength
            iconst_1
            isub
            invokestatic org.jruby.util.ArraySupport.newCopy:([Lorg/jruby/runtime/builtin/IRubyObject;II)[Lorg/jruby/runtime/builtin/IRubyObject;
            astore 2 /* args */
        21: .line 280
      StackMap locals: org.jruby.RubyEnumerator org.jruby.runtime.ThreadContext org.jruby.runtime.builtin.IRubyObject[] org.jruby.runtime.Block org.jruby.Ruby org.jruby.runtime.builtin.IRubyObject org.jruby.runtime.builtin.IRubyObject org.jruby.runtime.builtin.IRubyObject
      StackMap stack:
            aload 0 /* this */
            aload 4 /* runtime */
            aload 5 /* object */
            aload 6 /* method */
            aload 2 /* args */
            aload 7 /* size */
            aconst_null
            invokevirtual org.jruby.RubyEnumerator.initialize:(Lorg/jruby/Ruby;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyEnumerator$SizeFn;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 7 // org.jruby.runtime.builtin.IRubyObject size
        end local 6 // org.jruby.runtime.builtin.IRubyObject method
        end local 5 // org.jruby.runtime.builtin.IRubyObject object
        end local 4 // org.jruby.Ruby runtime
        end local 3 // org.jruby.runtime.Block block
        end local 2 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   22     0     this  Lorg/jruby/RubyEnumerator;
            0   22     1  context  Lorg/jruby/runtime/ThreadContext;
            0   22     2     args  [Lorg/jruby/runtime/builtin/IRubyObject;
            0   22     3    block  Lorg/jruby/runtime/Block;
            1   22     4  runtime  Lorg/jruby/Ruby;
           13   14     5   object  Lorg/jruby/runtime/builtin/IRubyObject;
           17   22     5   object  Lorg/jruby/runtime/builtin/IRubyObject;
            2   22     6   method  Lorg/jruby/runtime/builtin/IRubyObject;
            3   22     7     size  Lorg/jruby/runtime/builtin/IRubyObject;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod(name = {"initialize"}, visibility = org.jruby.runtime.Visibility.PRIVATE:Lorg/jruby/runtime/Visibility;, rest = true)
    MethodParameters:
         Name  Flags
      context  
      args     
      block    

  public org.jruby.runtime.builtin.IRubyObject initialize(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject object
        start local 3 // org.jruby.runtime.builtin.IRubyObject method
        start local 4 // org.jruby.runtime.Block block
         0: .line 285
            aload 4 /* block */
            invokevirtual org.jruby.runtime.Block.isGiven:()Z
            ifeq 2
         1: .line 286
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            iconst_2
            iconst_1
            invokevirtual org.jruby.Ruby.newArgumentError:(II)Lorg/jruby/exceptions/RaiseException;
            athrow
         2: .line 288
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            aload 2 /* object */
            aload 3 /* method */
            getstatic org.jruby.RubyEnumerator.NULL_ARRAY:[Lorg/jruby/runtime/builtin/IRubyObject;
            invokevirtual org.jruby.RubyEnumerator.initialize:(Lorg/jruby/Ruby;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 4 // org.jruby.runtime.Block block
        end local 3 // org.jruby.runtime.builtin.IRubyObject method
        end local 2 // org.jruby.runtime.builtin.IRubyObject object
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/jruby/RubyEnumerator;
            0    3     1  context  Lorg/jruby/runtime/ThreadContext;
            0    3     2   object  Lorg/jruby/runtime/builtin/IRubyObject;
            0    3     3   method  Lorg/jruby/runtime/builtin/IRubyObject;
            0    3     4    block  Lorg/jruby/runtime/Block;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod(name = {"initialize"}, visibility = org.jruby.runtime.Visibility.PRIVATE:Lorg/jruby/runtime/Visibility;)
    MethodParameters:
         Name  Flags
      context  
      object   
      method   
      block    

  public org.jruby.runtime.builtin.IRubyObject initialize(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=6, args_size=6
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject object
        start local 3 // org.jruby.runtime.builtin.IRubyObject method
        start local 4 // org.jruby.runtime.builtin.IRubyObject methodArg
        start local 5 // org.jruby.runtime.Block block
         0: .line 293
            aload 5 /* block */
            invokevirtual org.jruby.runtime.Block.isGiven:()Z
            ifeq 2
         1: .line 294
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            iconst_3
            iconst_1
            invokevirtual org.jruby.Ruby.newArgumentError:(II)Lorg/jruby/exceptions/RaiseException;
            athrow
         2: .line 296
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            aload 2 /* object */
            aload 3 /* method */
            iconst_1
            anewarray org.jruby.runtime.builtin.IRubyObject
            dup
            iconst_0
            aload 4 /* methodArg */
            aastore
            invokevirtual org.jruby.RubyEnumerator.initialize:(Lorg/jruby/Ruby;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 5 // org.jruby.runtime.Block block
        end local 4 // org.jruby.runtime.builtin.IRubyObject methodArg
        end local 3 // org.jruby.runtime.builtin.IRubyObject method
        end local 2 // org.jruby.runtime.builtin.IRubyObject object
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/jruby/RubyEnumerator;
            0    3     1    context  Lorg/jruby/runtime/ThreadContext;
            0    3     2     object  Lorg/jruby/runtime/builtin/IRubyObject;
            0    3     3     method  Lorg/jruby/runtime/builtin/IRubyObject;
            0    3     4  methodArg  Lorg/jruby/runtime/builtin/IRubyObject;
            0    3     5      block  Lorg/jruby/runtime/Block;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod(name = {"initialize"}, visibility = org.jruby.runtime.Visibility.PRIVATE:Lorg/jruby/runtime/Visibility;)
    MethodParameters:
           Name  Flags
      context    
      object     
      method     
      methodArg  
      block      

  public org.jruby.runtime.builtin.IRubyObject initialize(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject object
        start local 3 // org.jruby.runtime.builtin.IRubyObject method
        start local 4 // org.jruby.runtime.builtin.IRubyObject methodArg
         0: .line 300
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* object */
            aload 3 /* method */
            aload 4 /* methodArg */
            getstatic org.jruby.runtime.Block.NULL_BLOCK:Lorg/jruby/runtime/Block;
            invokevirtual org.jruby.RubyEnumerator.initialize:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 4 // org.jruby.runtime.builtin.IRubyObject methodArg
        end local 3 // org.jruby.runtime.builtin.IRubyObject method
        end local 2 // org.jruby.runtime.builtin.IRubyObject object
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/jruby/RubyEnumerator;
            0    1     1    context  Lorg/jruby/runtime/ThreadContext;
            0    1     2     object  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     3     method  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     4  methodArg  Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
           Name  Flags
      context    
      object     
      method     
      methodArg  

  public org.jruby.runtime.builtin.IRubyObject initialize(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[]);
    descriptor: (Lorg/jruby/runtime/ThreadContext;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject[] args
         0: .line 304
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* args */
            getstatic org.jruby.runtime.Block.NULL_BLOCK:Lorg/jruby/runtime/Block;
            invokevirtual org.jruby.RubyEnumerator.initialize:(Lorg/jruby/runtime/ThreadContext;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 2 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/RubyEnumerator;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2     args  [Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
         Name  Flags
      context  
      args     

  public org.jruby.runtime.builtin.IRubyObject initialize(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject object
        start local 3 // org.jruby.runtime.builtin.IRubyObject method
         0: .line 308
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* object */
            aload 3 /* method */
            getstatic org.jruby.runtime.Block.NULL_BLOCK:Lorg/jruby/runtime/Block;
            invokevirtual org.jruby.RubyEnumerator.initialize:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 3 // org.jruby.runtime.builtin.IRubyObject method
        end local 2 // org.jruby.runtime.builtin.IRubyObject object
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/RubyEnumerator;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2   object  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     3   method  Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
         Name  Flags
      context  
      object   
      method   

  public org.jruby.runtime.builtin.IRubyObject initialize19(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.Block block
         0: .line 313
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* block */
            invokevirtual org.jruby.RubyEnumerator.initialize:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 2 // org.jruby.runtime.Block block
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/RubyEnumerator;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2    block  Lorg/jruby/runtime/Block;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
         Name  Flags
      context  
      block    

  public org.jruby.runtime.builtin.IRubyObject initialize20(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.Block block
         0: .line 318
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* block */
            invokevirtual org.jruby.RubyEnumerator.initialize:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 2 // org.jruby.runtime.Block block
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/RubyEnumerator;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2    block  Lorg/jruby/runtime/Block;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
         Name  Flags
      context  
      block    

  public org.jruby.runtime.builtin.IRubyObject initialize20(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject object
        start local 3 // org.jruby.runtime.Block block
         0: .line 323
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* object */
            aload 3 /* block */
            invokevirtual org.jruby.RubyEnumerator.initialize:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 3 // org.jruby.runtime.Block block
        end local 2 // org.jruby.runtime.builtin.IRubyObject object
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/RubyEnumerator;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2   object  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     3    block  Lorg/jruby/runtime/Block;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
         Name  Flags
      context  
      object   
      block    

  public org.jruby.runtime.builtin.IRubyObject initialize20(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject[] args
        start local 3 // org.jruby.runtime.Block block
         0: .line 328
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* args */
            aload 3 /* block */
            invokevirtual org.jruby.RubyEnumerator.initialize:(Lorg/jruby/runtime/ThreadContext;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 3 // org.jruby.runtime.Block block
        end local 2 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/RubyEnumerator;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2     args  [Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     3    block  Lorg/jruby/runtime/Block;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
         Name  Flags
      context  
      args     
      block    

  public org.jruby.runtime.builtin.IRubyObject initialize19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject object
        start local 3 // org.jruby.runtime.builtin.IRubyObject method
        start local 4 // org.jruby.runtime.Block block
         0: .line 333
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* object */
            aload 3 /* method */
            aload 4 /* block */
            invokevirtual org.jruby.RubyEnumerator.initialize:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 4 // org.jruby.runtime.Block block
        end local 3 // org.jruby.runtime.builtin.IRubyObject method
        end local 2 // org.jruby.runtime.builtin.IRubyObject object
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/RubyEnumerator;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2   object  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     3   method  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     4    block  Lorg/jruby/runtime/Block;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
         Name  Flags
      context  
      object   
      method   
      block    

  public org.jruby.runtime.builtin.IRubyObject initialize19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=6
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject object
        start local 3 // org.jruby.runtime.builtin.IRubyObject method
        start local 4 // org.jruby.runtime.builtin.IRubyObject methodArg
        start local 5 // org.jruby.runtime.Block block
         0: .line 338
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* object */
            aload 3 /* method */
            aload 4 /* methodArg */
            getstatic org.jruby.runtime.Block.NULL_BLOCK:Lorg/jruby/runtime/Block;
            invokevirtual org.jruby.RubyEnumerator.initialize:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 5 // org.jruby.runtime.Block block
        end local 4 // org.jruby.runtime.builtin.IRubyObject methodArg
        end local 3 // org.jruby.runtime.builtin.IRubyObject method
        end local 2 // org.jruby.runtime.builtin.IRubyObject object
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/jruby/RubyEnumerator;
            0    1     1    context  Lorg/jruby/runtime/ThreadContext;
            0    1     2     object  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     3     method  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     4  methodArg  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     5      block  Lorg/jruby/runtime/Block;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
           Name  Flags
      context    
      object     
      method     
      methodArg  
      block      

  public org.jruby.runtime.builtin.IRubyObject initialize20(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject object
        start local 3 // org.jruby.runtime.builtin.IRubyObject method
        start local 4 // org.jruby.runtime.Block block
         0: .line 343
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* object */
            aload 3 /* method */
            aload 4 /* block */
            invokevirtual org.jruby.RubyEnumerator.initialize:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 4 // org.jruby.runtime.Block block
        end local 3 // org.jruby.runtime.builtin.IRubyObject method
        end local 2 // org.jruby.runtime.builtin.IRubyObject object
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/RubyEnumerator;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2   object  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     3   method  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     4    block  Lorg/jruby/runtime/Block;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
         Name  Flags
      context  
      object   
      method   
      block    

  public org.jruby.runtime.builtin.IRubyObject initialize20(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=6
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject object
        start local 3 // org.jruby.runtime.builtin.IRubyObject method
        start local 4 // org.jruby.runtime.builtin.IRubyObject methodArg
        start local 5 // org.jruby.runtime.Block block
         0: .line 348
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* object */
            aload 3 /* method */
            aload 4 /* methodArg */
            aload 5 /* block */
            invokevirtual org.jruby.RubyEnumerator.initialize:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 5 // org.jruby.runtime.Block block
        end local 4 // org.jruby.runtime.builtin.IRubyObject methodArg
        end local 3 // org.jruby.runtime.builtin.IRubyObject method
        end local 2 // org.jruby.runtime.builtin.IRubyObject object
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/jruby/RubyEnumerator;
            0    1     1    context  Lorg/jruby/runtime/ThreadContext;
            0    1     2     object  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     3     method  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     4  methodArg  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     5      block  Lorg/jruby/runtime/Block;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
           Name  Flags
      context    
      object     
      method     
      methodArg  
      block      

  public org.jruby.runtime.builtin.IRubyObject initialize19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject[] args
        start local 3 // org.jruby.runtime.Block block
         0: .line 353
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* args */
            aload 3 /* block */
            invokevirtual org.jruby.RubyEnumerator.initialize:(Lorg/jruby/runtime/ThreadContext;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 3 // org.jruby.runtime.Block block
        end local 2 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/RubyEnumerator;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2     args  [Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     3    block  Lorg/jruby/runtime/Block;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
         Name  Flags
      context  
      args     
      block    

  private org.jruby.runtime.builtin.IRubyObject initialize(org.jruby.Ruby, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[]);
    descriptor: (Lorg/jruby/Ruby;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=5, args_size=5
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.Ruby runtime
        start local 2 // org.jruby.runtime.builtin.IRubyObject object
        start local 3 // org.jruby.runtime.builtin.IRubyObject method
        start local 4 // org.jruby.runtime.builtin.IRubyObject[] methodArgs
         0: .line 357
            aload 0 /* this */
            aload 1 /* runtime */
            aload 2 /* object */
            aload 3 /* method */
            aload 4 /* methodArgs */
            aconst_null
            aconst_null
            invokevirtual org.jruby.RubyEnumerator.initialize:(Lorg/jruby/Ruby;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyEnumerator$SizeFn;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 4 // org.jruby.runtime.builtin.IRubyObject[] methodArgs
        end local 3 // org.jruby.runtime.builtin.IRubyObject method
        end local 2 // org.jruby.runtime.builtin.IRubyObject object
        end local 1 // org.jruby.Ruby runtime
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/jruby/RubyEnumerator;
            0    1     1     runtime  Lorg/jruby/Ruby;
            0    1     2      object  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     3      method  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     4  methodArgs  [Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
            Name  Flags
      runtime     
      object      
      method      
      methodArgs  

  private org.jruby.runtime.builtin.IRubyObject initialize(org.jruby.Ruby, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyEnumerator$SizeFn);
    descriptor: (Lorg/jruby/Ruby;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyEnumerator$SizeFn;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=7, args_size=7
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.Ruby runtime
        start local 2 // org.jruby.runtime.builtin.IRubyObject object
        start local 3 // org.jruby.runtime.builtin.IRubyObject method
        start local 4 // org.jruby.runtime.builtin.IRubyObject[] methodArgs
        start local 5 // org.jruby.runtime.builtin.IRubyObject size
        start local 6 // org.jruby.RubyEnumerator$SizeFn sizeFn
         0: .line 362
            aload 0 /* this */
            aload 2 /* object */
            putfield org.jruby.RubyEnumerator.object:Lorg/jruby/runtime/builtin/IRubyObject;
         1: .line 363
            aload 0 /* this */
            aload 3 /* method */
            invokeinterface org.jruby.runtime.builtin.IRubyObject.asJavaString:()Ljava/lang/String;
            putfield org.jruby.RubyEnumerator.method:Ljava/lang/String;
         2: .line 364
            aload 0 /* this */
            aload 4 /* methodArgs */
            putfield org.jruby.RubyEnumerator.methodArgs:[Lorg/jruby/runtime/builtin/IRubyObject;
         3: .line 365
            aload 0 /* this */
            aload 5 /* size */
            putfield org.jruby.RubyEnumerator.size:Lorg/jruby/runtime/builtin/IRubyObject;
         4: .line 366
            aload 0 /* this */
            aload 6 /* sizeFn */
            putfield org.jruby.RubyEnumerator.sizeFn:Lorg/jruby/RubyEnumerator$SizeFn;
         5: .line 368
            aload 0 /* this */
            ldc "@__object__"
            aload 2 /* object */
            invokevirtual org.jruby.RubyEnumerator.setInstanceVariable:(Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            pop
         6: .line 369
            aload 0 /* this */
            ldc "@__method__"
            aload 3 /* method */
            invokevirtual org.jruby.RubyEnumerator.setInstanceVariable:(Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            pop
         7: .line 370
            aload 0 /* this */
            ldc "@__args__"
            aload 1 /* runtime */
            aload 4 /* methodArgs */
            invokestatic org.jruby.RubyArray.newArrayMayCopy:(Lorg/jruby/Ruby;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/RubyArray;
            invokevirtual org.jruby.RubyEnumerator.setInstanceVariable:(Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            pop
         8: .line 371
            aload 0 /* this */
            ldc "@__generator__"
            aload 1 /* runtime */
            invokevirtual org.jruby.Ruby.getNil:()Lorg/jruby/runtime/builtin/IRubyObject;
            invokevirtual org.jruby.RubyEnumerator.setInstanceVariable:(Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            pop
         9: .line 372
            aload 0 /* this */
            ldc "@__lookahead__"
            aload 1 /* runtime */
            iconst_4
            invokestatic org.jruby.RubyArray.newArray:(Lorg/jruby/Ruby;I)Lorg/jruby/RubyArray;
            invokevirtual org.jruby.RubyEnumerator.setInstanceVariable:(Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            pop
        10: .line 373
            aload 0 /* this */
            ldc "@__feedvalue__"
            aload 0 /* this */
            new org.jruby.RubyEnumerator$FeedValue
            dup
            aload 1 /* runtime */
            invokespecial org.jruby.RubyEnumerator$FeedValue.<init>:(Lorg/jruby/Ruby;)V
            dup_x1
            putfield org.jruby.RubyEnumerator.feedValue:Lorg/jruby/RubyEnumerator$FeedValue;
            invokevirtual org.jruby.RubyEnumerator.setInstanceVariable:(Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            pop
        11: .line 375
            aload 0 /* this */
            areturn
        end local 6 // org.jruby.RubyEnumerator$SizeFn sizeFn
        end local 5 // org.jruby.runtime.builtin.IRubyObject size
        end local 4 // org.jruby.runtime.builtin.IRubyObject[] methodArgs
        end local 3 // org.jruby.runtime.builtin.IRubyObject method
        end local 2 // org.jruby.runtime.builtin.IRubyObject object
        end local 1 // org.jruby.Ruby runtime
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   12     0        this  Lorg/jruby/RubyEnumerator;
            0   12     1     runtime  Lorg/jruby/Ruby;
            0   12     2      object  Lorg/jruby/runtime/builtin/IRubyObject;
            0   12     3      method  Lorg/jruby/runtime/builtin/IRubyObject;
            0   12     4  methodArgs  [Lorg/jruby/runtime/builtin/IRubyObject;
            0   12     5        size  Lorg/jruby/runtime/builtin/IRubyObject;
            0   12     6      sizeFn  Lorg/jruby/RubyEnumerator$SizeFn;
    MethodParameters:
            Name  Flags
      runtime     
      object      
      method      
      methodArgs  
      size        
      sizeFn      

  public org.jruby.runtime.builtin.IRubyObject dup();
    descriptor: ()Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.jruby.RubyEnumerator this
         0: .line 382
            aload 0 /* this */
            invokespecial org.jruby.RubyObject.dup:()Lorg/jruby/runtime/builtin/IRubyObject;
            checkcast org.jruby.RubyEnumerator
            astore 1 /* copy */
        start local 1 // org.jruby.RubyEnumerator copy
         1: .line 383
            aload 1 /* copy */
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.object:Lorg/jruby/runtime/builtin/IRubyObject;
            putfield org.jruby.RubyEnumerator.object:Lorg/jruby/runtime/builtin/IRubyObject;
         2: .line 384
            aload 1 /* copy */
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.method:Ljava/lang/String;
            putfield org.jruby.RubyEnumerator.method:Ljava/lang/String;
         3: .line 385
            aload 1 /* copy */
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.methodArgs:[Lorg/jruby/runtime/builtin/IRubyObject;
            putfield org.jruby.RubyEnumerator.methodArgs:[Lorg/jruby/runtime/builtin/IRubyObject;
         4: .line 386
            aload 1 /* copy */
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.size:Lorg/jruby/runtime/builtin/IRubyObject;
            putfield org.jruby.RubyEnumerator.size:Lorg/jruby/runtime/builtin/IRubyObject;
         5: .line 387
            aload 1 /* copy */
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.sizeFn:Lorg/jruby/RubyEnumerator$SizeFn;
            putfield org.jruby.RubyEnumerator.sizeFn:Lorg/jruby/RubyEnumerator$SizeFn;
         6: .line 388
            aload 1 /* copy */
            new org.jruby.RubyEnumerator$FeedValue
            dup
            aload 0 /* this */
            invokevirtual org.jruby.RubyEnumerator.getRuntime:()Lorg/jruby/Ruby;
            invokespecial org.jruby.RubyEnumerator$FeedValue.<init>:(Lorg/jruby/Ruby;)V
            putfield org.jruby.RubyEnumerator.feedValue:Lorg/jruby/RubyEnumerator$FeedValue;
         7: .line 390
            aload 1 /* copy */
            areturn
        end local 1 // org.jruby.RubyEnumerator copy
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/jruby/RubyEnumerator;
            1    8     1  copy  Lorg/jruby/RubyEnumerator;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod(name = {"dup"})

  public org.jruby.runtime.builtin.IRubyObject each(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.Block block
         0: .line 400
            aload 2 /* block */
            invokevirtual org.jruby.runtime.Block.isGiven:()Z
            ifne 1
            aload 0 /* this */
            areturn
         1: .line 401
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* block */
            invokevirtual org.jruby.RubyEnumerator.__each__:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 2 // org.jruby.runtime.Block block
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/jruby/RubyEnumerator;
            0    2     1  context  Lorg/jruby/runtime/ThreadContext;
            0    2     2    block  Lorg/jruby/runtime/Block;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod()
    MethodParameters:
         Name  Flags
      context  
      block    

  private org.jruby.runtime.builtin.IRubyObject __each__(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=11, locals=3, args_size=3
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.Block block
         0: .line 405
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.object:Lorg/jruby/runtime/builtin/IRubyObject;
            aload 1 /* context */
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.method:Ljava/lang/String;
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.methodArgs:[Lorg/jruby/runtime/builtin/IRubyObject;
         1: .line 406
            aload 1 /* context */
            aload 0 /* this */
            getstatic org.jruby.runtime.Signature.OPTIONAL:Lorg/jruby/runtime/Signature;
            new org.jruby.RubyEnumerator$2
            dup
            aload 0 /* this */
            aload 2 /* block */
            invokespecial org.jruby.RubyEnumerator$2.<init>:(Lorg/jruby/RubyEnumerator;Lorg/jruby/runtime/Block;)V
            invokestatic org.jruby.runtime.CallBlock.newCallClosure:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Signature;Lorg/jruby/runtime/BlockCallback;)Lorg/jruby/runtime/Block;
         2: .line 405
            invokeinterface org.jruby.runtime.builtin.IRubyObject.callMethod:(Lorg/jruby/runtime/ThreadContext;Ljava/lang/String;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 2 // org.jruby.runtime.Block block
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/jruby/RubyEnumerator;
            0    3     1  context  Lorg/jruby/runtime/ThreadContext;
            0    3     2    block  Lorg/jruby/runtime/Block;
    MethodParameters:
         Name  Flags
      context  
      block    final

  public org.jruby.runtime.builtin.IRubyObject each(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=7, args_size=4
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject[] args
        start local 3 // org.jruby.runtime.Block block
         0: .line 419
            aload 2 /* args */
            arraylength
            ifne 1
            aload 0 /* this */
            aload 1 /* context */
            aload 3 /* block */
            invokevirtual org.jruby.RubyEnumerator.each:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
         1: .line 421
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.methodArgs:[Lorg/jruby/runtime/builtin/IRubyObject;
            arraylength
            istore 4 /* mlen */
        start local 4 // int mlen
         2: .line 422
            iload 4 /* mlen */
            aload 2 /* args */
            arraylength
            iadd
            anewarray org.jruby.runtime.builtin.IRubyObject
            astore 5 /* newArgs */
        start local 5 // org.jruby.runtime.builtin.IRubyObject[] newArgs
         3: .line 423
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.methodArgs:[Lorg/jruby/runtime/builtin/IRubyObject;
            aload 5 /* newArgs */
            iconst_0
            iload 4 /* mlen */
            invokestatic org.jruby.util.ArraySupport.copy:([Ljava/lang/Object;[Ljava/lang/Object;II)V
         4: .line 424
            aload 2 /* args */
            aload 5 /* newArgs */
            iload 4 /* mlen */
            aload 2 /* args */
            arraylength
            invokestatic org.jruby.util.ArraySupport.copy:([Ljava/lang/Object;[Ljava/lang/Object;II)V
         5: .line 426
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            astore 6 /* runtime */
        start local 6 // org.jruby.Ruby runtime
         6: .line 427
            new org.jruby.RubyEnumerator
            dup
            aload 6 /* runtime */
            aload 0 /* this */
            invokevirtual org.jruby.RubyEnumerator.getType:()Lorg/jruby/RubyClass;
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.object:Lorg/jruby/runtime/builtin/IRubyObject;
            aload 6 /* runtime */
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.method:Ljava/lang/String;
            invokevirtual org.jruby.Ruby.newSymbol:(Ljava/lang/String;)Lorg/jruby/RubySymbol;
            aload 5 /* newArgs */
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.size:Lorg/jruby/runtime/builtin/IRubyObject;
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.sizeFn:Lorg/jruby/RubyEnumerator$SizeFn;
            invokespecial org.jruby.RubyEnumerator.<init>:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubySymbol;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyEnumerator$SizeFn;)V
            aload 1 /* context */
            aload 3 /* block */
            invokevirtual org.jruby.RubyEnumerator.each:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 6 // org.jruby.Ruby runtime
        end local 5 // org.jruby.runtime.builtin.IRubyObject[] newArgs
        end local 4 // int mlen
        end local 3 // org.jruby.runtime.Block block
        end local 2 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lorg/jruby/RubyEnumerator;
            0    7     1  context  Lorg/jruby/runtime/ThreadContext;
            0    7     2     args  [Lorg/jruby/runtime/builtin/IRubyObject;
            0    7     3    block  Lorg/jruby/runtime/Block;
            2    7     4     mlen  I
            3    7     5  newArgs  [Lorg/jruby/runtime/builtin/IRubyObject;
            6    7     6  runtime  Lorg/jruby/Ruby;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod(rest = true)
    MethodParameters:
         Name  Flags
      context  
      args     
      block    

  public org.jruby.runtime.builtin.IRubyObject inspect19(org.jruby.runtime.ThreadContext);
    descriptor: (Lorg/jruby/runtime/ThreadContext;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
         0: .line 432
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            astore 2 /* runtime */
        start local 2 // org.jruby.Ruby runtime
         1: .line 433
            aload 2 /* runtime */
            aload 0 /* this */
            invokevirtual org.jruby.Ruby.isInspecting:(Ljava/lang/Object;)Z
            ifeq 2
            aload 0 /* this */
            aload 1 /* context */
            iconst_1
            invokevirtual org.jruby.RubyEnumerator.inspect:(Lorg/jruby/runtime/ThreadContext;Z)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
         2: .line 436
      StackMap locals: org.jruby.Ruby
      StackMap stack:
            aload 2 /* runtime */
            aload 0 /* this */
            invokevirtual org.jruby.Ruby.registerInspecting:(Ljava/lang/Object;)V
         3: .line 437
            aload 0 /* this */
            aload 1 /* context */
            iconst_0
            invokevirtual org.jruby.RubyEnumerator.inspect:(Lorg/jruby/runtime/ThreadContext;Z)Lorg/jruby/runtime/builtin/IRubyObject;
            astore 4
         4: .line 439
            aload 2 /* runtime */
            aload 0 /* this */
            invokevirtual org.jruby.Ruby.unregisterInspecting:(Ljava/lang/Object;)V
         5: .line 437
            aload 4
            areturn
         6: .line 438
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 3
         7: .line 439
            aload 2 /* runtime */
            aload 0 /* this */
            invokevirtual org.jruby.Ruby.unregisterInspecting:(Ljava/lang/Object;)V
         8: .line 440
            aload 3
            athrow
        end local 2 // org.jruby.Ruby runtime
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lorg/jruby/RubyEnumerator;
            0    9     1  context  Lorg/jruby/runtime/ThreadContext;
            1    9     2  runtime  Lorg/jruby/Ruby;
      Exception table:
        from    to  target  type
           2     4       6  any
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod(name = {"inspect"})
    MethodParameters:
         Name  Flags
      context  

  private org.jruby.runtime.builtin.IRubyObject inspect(org.jruby.runtime.ThreadContext, boolean);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Z)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=7, args_size=3
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // boolean recurse
         0: .line 444
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            astore 3 /* runtime */
        start local 3 // org.jruby.Ruby runtime
         1: .line 445
            new org.jruby.util.ByteList
            dup
            invokespecial org.jruby.util.ByteList.<init>:()V
            astore 4 /* bytes */
        start local 4 // org.jruby.util.ByteList bytes
         2: .line 446
            aload 4 /* bytes */
            bipush 35
            invokevirtual org.jruby.util.ByteList.append:(B)Lorg/jruby/util/ByteList;
            bipush 60
            invokevirtual org.jruby.util.ByteList.append:(B)Lorg/jruby/util/ByteList;
            pop
         3: .line 447
            aload 4 /* bytes */
            aload 0 /* this */
            invokevirtual org.jruby.RubyEnumerator.getMetaClass:()Lorg/jruby/RubyClass;
            invokevirtual org.jruby.RubyClass.getName:()Ljava/lang/String;
            invokevirtual java.lang.String.getBytes:()[B
            invokevirtual org.jruby.util.ByteList.append:([B)V
         4: .line 448
            aload 4 /* bytes */
            bipush 58
            invokevirtual org.jruby.util.ByteList.append:(B)Lorg/jruby/util/ByteList;
            bipush 32
            invokevirtual org.jruby.util.ByteList.append:(B)Lorg/jruby/util/ByteList;
            pop
         5: .line 450
            iload 2 /* recurse */
            ifeq 8
         6: .line 451
            aload 4 /* bytes */
            ldc "...>"
            invokevirtual java.lang.String.getBytes:()[B
            invokevirtual org.jruby.util.ByteList.append:([B)V
         7: .line 452
            aload 3 /* runtime */
            aload 4 /* bytes */
            invokestatic org.jruby.RubyString.newStringNoCopy:(Lorg/jruby/Ruby;Lorg/jruby/util/ByteList;)Lorg/jruby/RubyString;
            aload 1 /* context */
            invokevirtual org.jruby.RubyString.taint:(Lorg/jruby/runtime/ThreadContext;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
         8: .line 454
      StackMap locals: org.jruby.Ruby org.jruby.util.ByteList
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.RubyEnumerator.isTaint:()Z
            istore 5 /* tainted */
        start local 5 // boolean tainted
         9: .line 455
            aload 4 /* bytes */
            aload 1 /* context */
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.object:Lorg/jruby/runtime/builtin/IRubyObject;
            invokestatic org.jruby.RubyObject.inspect:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/RubyString;
            invokevirtual org.jruby.RubyString.getByteList:()Lorg/jruby/util/ByteList;
            invokevirtual org.jruby.util.ByteList.append:(Lorg/jruby/util/ByteList;)V
        10: .line 456
            aload 4 /* bytes */
            bipush 58
            invokevirtual org.jruby.util.ByteList.append:(B)Lorg/jruby/util/ByteList;
            pop
        11: .line 457
            aload 4 /* bytes */
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.method:Ljava/lang/String;
            invokevirtual java.lang.String.getBytes:()[B
            invokevirtual org.jruby.util.ByteList.append:([B)V
        12: .line 458
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.methodArgs:[Lorg/jruby/runtime/builtin/IRubyObject;
            arraylength
            ifle 24
        13: .line 459
            aload 4 /* bytes */
            bipush 40
            invokevirtual org.jruby.util.ByteList.append:(B)Lorg/jruby/util/ByteList;
            pop
        14: .line 460
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        15: goto 23
        16: .line 461
      StackMap locals: int int
      StackMap stack:
            aload 4 /* bytes */
            aload 1 /* context */
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.methodArgs:[Lorg/jruby/runtime/builtin/IRubyObject;
            iload 6 /* i */
            aaload
            invokestatic org.jruby.RubyObject.inspect:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/RubyString;
            invokevirtual org.jruby.RubyString.getByteList:()Lorg/jruby/util/ByteList;
            invokevirtual org.jruby.util.ByteList.append:(Lorg/jruby/util/ByteList;)V
        17: .line 462
            iload 6 /* i */
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.methodArgs:[Lorg/jruby/runtime/builtin/IRubyObject;
            arraylength
            iconst_1
            isub
            if_icmpge 20
        18: .line 463
            aload 4 /* bytes */
            bipush 44
            invokevirtual org.jruby.util.ByteList.append:(B)Lorg/jruby/util/ByteList;
            bipush 32
            invokevirtual org.jruby.util.ByteList.append:(B)Lorg/jruby/util/ByteList;
            pop
        19: .line 464
            goto 21
        20: .line 465
      StackMap locals:
      StackMap stack:
            aload 4 /* bytes */
            bipush 41
            invokevirtual org.jruby.util.ByteList.append:(B)Lorg/jruby/util/ByteList;
            pop
        21: .line 467
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.methodArgs:[Lorg/jruby/runtime/builtin/IRubyObject;
            iload 6 /* i */
            aaload
            invokeinterface org.jruby.runtime.builtin.IRubyObject.isTaint:()Z
            ifeq 22
            iconst_1
            istore 5 /* tainted */
        22: .line 460
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        23: iload 6 /* i */
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.methodArgs:[Lorg/jruby/runtime/builtin/IRubyObject;
            arraylength
            if_icmplt 16
        end local 6 // int i
        24: .line 470
      StackMap locals:
      StackMap stack:
            aload 4 /* bytes */
            bipush 62
            invokevirtual org.jruby.util.ByteList.append:(B)Lorg/jruby/util/ByteList;
            pop
        25: .line 471
            aload 3 /* runtime */
            aload 4 /* bytes */
            invokestatic org.jruby.RubyString.newStringNoCopy:(Lorg/jruby/Ruby;Lorg/jruby/util/ByteList;)Lorg/jruby/RubyString;
            astore 6 /* result */
        start local 6 // org.jruby.RubyString result
        26: .line 472
            iload 5 /* tainted */
            ifeq 27
            aload 6 /* result */
            iconst_1
            invokevirtual org.jruby.RubyString.setTaint:(Z)V
        27: .line 473
      StackMap locals: org.jruby.RubyString
      StackMap stack:
            aload 6 /* result */
            areturn
        end local 6 // org.jruby.RubyString result
        end local 5 // boolean tainted
        end local 4 // org.jruby.util.ByteList bytes
        end local 3 // org.jruby.Ruby runtime
        end local 2 // boolean recurse
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   28     0     this  Lorg/jruby/RubyEnumerator;
            0   28     1  context  Lorg/jruby/runtime/ThreadContext;
            0   28     2  recurse  Z
            1   28     3  runtime  Lorg/jruby/Ruby;
            2   28     4    bytes  Lorg/jruby/util/ByteList;
            9   28     5  tainted  Z
           15   24     6        i  I
           26   28     6   result  Lorg/jruby/RubyString;
    MethodParameters:
         Name  Flags
      context  
      recurse  

  protected static org.jruby.runtime.builtin.IRubyObject newEnumerator(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=7, locals=3, args_size=2
        start local 0 // org.jruby.runtime.ThreadContext context
        start local 1 // org.jruby.runtime.builtin.IRubyObject arg
         0: .line 478
            aload 0 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            astore 2 /* runtime */
        start local 2 // org.jruby.Ruby runtime
         1: .line 479
            new org.jruby.RubyEnumerator
            dup
            aload 2 /* runtime */
            aload 2 /* runtime */
            invokevirtual org.jruby.Ruby.getEnumerator:()Lorg/jruby/RubyClass;
            aload 1 /* arg */
            aload 2 /* runtime */
            ldc "each"
            invokevirtual org.jruby.Ruby.newSymbol:(Ljava/lang/String;)Lorg/jruby/RubySymbol;
            getstatic org.jruby.runtime.builtin.IRubyObject.NULL_ARRAY:[Lorg/jruby/runtime/builtin/IRubyObject;
            invokespecial org.jruby.RubyEnumerator.<init>:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;)V
            areturn
        end local 2 // org.jruby.Ruby runtime
        end local 1 // org.jruby.runtime.builtin.IRubyObject arg
        end local 0 // org.jruby.runtime.ThreadContext context
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0  context  Lorg/jruby/runtime/ThreadContext;
            0    2     1      arg  Lorg/jruby/runtime/builtin/IRubyObject;
            1    2     2  runtime  Lorg/jruby/Ruby;
    MethodParameters:
         Name  Flags
      context  
      arg      

  protected static org.jruby.runtime.builtin.IRubyObject newEnumerator(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=7, locals=4, args_size=3
        start local 0 // org.jruby.runtime.ThreadContext context
        start local 1 // org.jruby.runtime.builtin.IRubyObject arg1
        start local 2 // org.jruby.runtime.builtin.IRubyObject arg2
         0: .line 483
            aload 0 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            astore 3 /* runtime */
        start local 3 // org.jruby.Ruby runtime
         1: .line 484
            new org.jruby.RubyEnumerator
            dup
            aload 3 /* runtime */
            aload 3 /* runtime */
            invokevirtual org.jruby.Ruby.getEnumerator:()Lorg/jruby/RubyClass;
            aload 1 /* arg1 */
            aload 2 /* arg2 */
            getstatic org.jruby.runtime.builtin.IRubyObject.NULL_ARRAY:[Lorg/jruby/runtime/builtin/IRubyObject;
            invokespecial org.jruby.RubyEnumerator.<init>:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;)V
            areturn
        end local 3 // org.jruby.Ruby runtime
        end local 2 // org.jruby.runtime.builtin.IRubyObject arg2
        end local 1 // org.jruby.runtime.builtin.IRubyObject arg1
        end local 0 // org.jruby.runtime.ThreadContext context
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0  context  Lorg/jruby/runtime/ThreadContext;
            0    2     1     arg1  Lorg/jruby/runtime/builtin/IRubyObject;
            0    2     2     arg2  Lorg/jruby/runtime/builtin/IRubyObject;
            1    2     3  runtime  Lorg/jruby/Ruby;
    MethodParameters:
         Name  Flags
      context  
      arg1     
      arg2     

  protected static org.jruby.runtime.builtin.IRubyObject newEnumerator(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=10, locals=5, args_size=4
        start local 0 // org.jruby.runtime.ThreadContext context
        start local 1 // org.jruby.runtime.builtin.IRubyObject arg1
        start local 2 // org.jruby.runtime.builtin.IRubyObject arg2
        start local 3 // org.jruby.runtime.builtin.IRubyObject arg3
         0: .line 488
            aload 0 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            astore 4 /* runtime */
        start local 4 // org.jruby.Ruby runtime
         1: .line 489
            new org.jruby.RubyEnumerator
            dup
            aload 4 /* runtime */
            aload 4 /* runtime */
            invokevirtual org.jruby.Ruby.getEnumerator:()Lorg/jruby/RubyClass;
            aload 1 /* arg1 */
            aload 2 /* arg2 */
            iconst_1
            anewarray org.jruby.runtime.builtin.IRubyObject
            dup
            iconst_0
            aload 3 /* arg3 */
            aastore
            invokespecial org.jruby.RubyEnumerator.<init>:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;)V
            areturn
        end local 4 // org.jruby.Ruby runtime
        end local 3 // org.jruby.runtime.builtin.IRubyObject arg3
        end local 2 // org.jruby.runtime.builtin.IRubyObject arg2
        end local 1 // org.jruby.runtime.builtin.IRubyObject arg1
        end local 0 // org.jruby.runtime.ThreadContext context
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0  context  Lorg/jruby/runtime/ThreadContext;
            0    2     1     arg1  Lorg/jruby/runtime/builtin/IRubyObject;
            0    2     2     arg2  Lorg/jruby/runtime/builtin/IRubyObject;
            0    2     3     arg3  Lorg/jruby/runtime/builtin/IRubyObject;
            1    2     4  runtime  Lorg/jruby/Ruby;
    MethodParameters:
         Name  Flags
      context  
      arg1     
      arg2     
      arg3     

  public org.jruby.runtime.builtin.IRubyObject each_with_object(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=4
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject arg
        start local 3 // org.jruby.runtime.Block block
         0: .line 494
            aload 3 /* block */
            invokevirtual org.jruby.runtime.Block.isGiven:()Z
            ifeq 1
            aload 1 /* context */
            aload 0 /* this */
            aload 3 /* block */
            aload 2 /* arg */
            invokestatic org.jruby.RubyEnumerable.each_with_objectCommon:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            goto 2
         1: .line 495
      StackMap locals:
      StackMap stack:
            aload 1 /* context */
            aload 0 /* this */
            ldc "each_with_object"
            iconst_1
            anewarray org.jruby.runtime.builtin.IRubyObject
            dup
            iconst_0
            aload 2 /* arg */
            aastore
            aload 0 /* this */
            aload 1 /* context */
            invokevirtual org.jruby.RubyEnumerator.enumSizeFn:(Lorg/jruby/runtime/ThreadContext;)Lorg/jruby/RubyEnumerator$SizeFn;
            invokestatic org.jruby.RubyEnumerator.enumeratorizeWithSize:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Ljava/lang/String;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyEnumerator$SizeFn;)Lorg/jruby/runtime/builtin/IRubyObject;
         2: .line 494
      StackMap locals:
      StackMap stack: org.jruby.runtime.builtin.IRubyObject
            areturn
        end local 3 // org.jruby.runtime.Block block
        end local 2 // org.jruby.runtime.builtin.IRubyObject arg
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/jruby/RubyEnumerator;
            0    3     1  context  Lorg/jruby/runtime/ThreadContext;
            0    3     2      arg  Lorg/jruby/runtime/builtin/IRubyObject;
            0    3     3    block  Lorg/jruby/runtime/Block;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod(required = 1)
    MethodParameters:
         Name  Flags
      context  final
      arg      
      block    

  public org.jruby.runtime.builtin.IRubyObject with_object(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=4
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject arg
        start local 3 // org.jruby.runtime.Block block
         0: .line 500
            aload 3 /* block */
            invokevirtual org.jruby.runtime.Block.isGiven:()Z
            ifeq 1
            aload 1 /* context */
            aload 0 /* this */
            aload 3 /* block */
            aload 2 /* arg */
            invokestatic org.jruby.RubyEnumerable.each_with_objectCommon:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 1 /* context */
            aload 0 /* this */
            ldc "with_object"
            iconst_1
            anewarray org.jruby.runtime.builtin.IRubyObject
            dup
            iconst_0
            aload 2 /* arg */
            aastore
            aload 0 /* this */
            aload 1 /* context */
            invokevirtual org.jruby.RubyEnumerator.enumSizeFn:(Lorg/jruby/runtime/ThreadContext;)Lorg/jruby/RubyEnumerator$SizeFn;
            invokestatic org.jruby.RubyEnumerator.enumeratorizeWithSize:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Ljava/lang/String;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyEnumerator$SizeFn;)Lorg/jruby/runtime/builtin/IRubyObject;
      StackMap locals:
      StackMap stack: org.jruby.runtime.builtin.IRubyObject
         2: areturn
        end local 3 // org.jruby.runtime.Block block
        end local 2 // org.jruby.runtime.builtin.IRubyObject arg
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/jruby/RubyEnumerator;
            0    3     1  context  Lorg/jruby/runtime/ThreadContext;
            0    3     2      arg  Lorg/jruby/runtime/builtin/IRubyObject;
            0    3     3    block  Lorg/jruby/runtime/Block;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod()
    MethodParameters:
         Name  Flags
      context  
      arg      final
      block    final

  public org.jruby.runtime.builtin.IRubyObject each_entry(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject[] args
        start local 3 // org.jruby.runtime.Block block
         0: .line 505
            aload 3 /* block */
            invokevirtual org.jruby.runtime.Block.isGiven:()Z
            ifeq 1
            aload 1 /* context */
            aload 0 /* this */
            aload 2 /* args */
            aload 3 /* block */
            invokestatic org.jruby.RubyEnumerable.each_entryCommon:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            aload 0 /* this */
            invokevirtual org.jruby.RubyEnumerator.getType:()Lorg/jruby/RubyClass;
            aload 0 /* this */
            ldc "each_entry"
            aload 2 /* args */
            invokestatic org.jruby.RubyEnumerator.enumeratorize:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Lorg/jruby/runtime/builtin/IRubyObject;Ljava/lang/String;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
      StackMap locals:
      StackMap stack: org.jruby.runtime.builtin.IRubyObject
         2: areturn
        end local 3 // org.jruby.runtime.Block block
        end local 2 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/jruby/RubyEnumerator;
            0    3     1  context  Lorg/jruby/runtime/ThreadContext;
            0    3     2     args  [Lorg/jruby/runtime/builtin/IRubyObject;
            0    3     3    block  Lorg/jruby/runtime/Block;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod(rest = true)
    MethodParameters:
         Name  Flags
      context  
      args     final
      block    final

  public org.jruby.runtime.builtin.IRubyObject each_slice19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject arg
        start local 3 // org.jruby.runtime.Block block
         0: .line 510
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* arg */
            aload 3 /* block */
            invokevirtual org.jruby.RubyEnumerator.each_slice:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 3 // org.jruby.runtime.Block block
        end local 2 // org.jruby.runtime.builtin.IRubyObject arg
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/RubyEnumerator;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2      arg  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     3    block  Lorg/jruby/runtime/Block;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
         Name  Flags
      context  
      arg      
      block    final

  public org.jruby.runtime.builtin.IRubyObject each_slice(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject arg
        start local 3 // org.jruby.runtime.Block block
         0: .line 515
            aload 2 /* arg */
            invokestatic org.jruby.RubyNumeric.num2long:(Lorg/jruby/runtime/builtin/IRubyObject;)J
            l2i
            istore 4 /* size */
        start local 4 // int size
         1: .line 516
            iload 4 /* size */
            ifgt 2
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            ldc "invalid size"
            invokevirtual org.jruby.Ruby.newArgumentError:(Ljava/lang/String;)Lorg/jruby/exceptions/RaiseException;
            athrow
         2: .line 518
      StackMap locals: int
      StackMap stack:
            aload 3 /* block */
            invokevirtual org.jruby.runtime.Block.isGiven:()Z
            ifeq 3
            aload 1 /* context */
            aload 0 /* this */
            iload 4 /* size */
            aload 3 /* block */
            invokestatic org.jruby.RubyEnumerable.each_sliceCommon:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;ILorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            goto 4
         3: .line 519
      StackMap locals:
      StackMap stack:
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            aload 0 /* this */
            invokevirtual org.jruby.RubyEnumerator.getType:()Lorg/jruby/RubyClass;
            aload 0 /* this */
            ldc "each_slice"
            aload 2 /* arg */
            invokestatic org.jruby.RubyEnumerator.enumeratorize:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Lorg/jruby/runtime/builtin/IRubyObject;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
         4: .line 518
      StackMap locals:
      StackMap stack: org.jruby.runtime.builtin.IRubyObject
            areturn
        end local 4 // int size
        end local 3 // org.jruby.runtime.Block block
        end local 2 // org.jruby.runtime.builtin.IRubyObject arg
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lorg/jruby/RubyEnumerator;
            0    5     1  context  Lorg/jruby/runtime/ThreadContext;
            0    5     2      arg  Lorg/jruby/runtime/builtin/IRubyObject;
            0    5     3    block  Lorg/jruby/runtime/Block;
            1    5     4     size  I
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod(name = {"each_slice"})
    MethodParameters:
         Name  Flags
      context  
      arg      
      block    final

  public org.jruby.runtime.builtin.IRubyObject each_cons19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject arg
        start local 3 // org.jruby.runtime.Block block
         0: .line 524
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* arg */
            aload 3 /* block */
            invokevirtual org.jruby.RubyEnumerator.each_cons:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 3 // org.jruby.runtime.Block block
        end local 2 // org.jruby.runtime.builtin.IRubyObject arg
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/RubyEnumerator;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2      arg  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     3    block  Lorg/jruby/runtime/Block;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
         Name  Flags
      context  
      arg      
      block    final

  public org.jruby.runtime.builtin.IRubyObject each_cons(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject arg
        start local 3 // org.jruby.runtime.Block block
         0: .line 529
            aload 2 /* arg */
            invokestatic org.jruby.RubyNumeric.num2long:(Lorg/jruby/runtime/builtin/IRubyObject;)J
            l2i
            istore 4 /* size */
        start local 4 // int size
         1: .line 530
            iload 4 /* size */
            ifgt 2
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            ldc "invalid size"
            invokevirtual org.jruby.Ruby.newArgumentError:(Ljava/lang/String;)Lorg/jruby/exceptions/RaiseException;
            athrow
         2: .line 531
      StackMap locals: int
      StackMap stack:
            aload 3 /* block */
            invokevirtual org.jruby.runtime.Block.isGiven:()Z
            ifeq 3
            aload 1 /* context */
            aload 0 /* this */
            iload 4 /* size */
            aload 3 /* block */
            invokestatic org.jruby.RubyEnumerable.each_consCommon:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;ILorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            goto 4
         3: .line 532
      StackMap locals:
      StackMap stack:
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            aload 0 /* this */
            invokevirtual org.jruby.RubyEnumerator.getType:()Lorg/jruby/RubyClass;
            aload 0 /* this */
            ldc "each_cons"
            aload 2 /* arg */
            invokestatic org.jruby.RubyEnumerator.enumeratorize:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Lorg/jruby/runtime/builtin/IRubyObject;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
         4: .line 531
      StackMap locals:
      StackMap stack: org.jruby.runtime.builtin.IRubyObject
            areturn
        end local 4 // int size
        end local 3 // org.jruby.runtime.Block block
        end local 2 // org.jruby.runtime.builtin.IRubyObject arg
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lorg/jruby/RubyEnumerator;
            0    5     1  context  Lorg/jruby/runtime/ThreadContext;
            0    5     2      arg  Lorg/jruby/runtime/builtin/IRubyObject;
            0    5     3    block  Lorg/jruby/runtime/Block;
            1    5     4     size  I
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod(name = {"each_cons"})
    MethodParameters:
         Name  Flags
      context  
      arg      
      block    final

  public final org.jruby.runtime.builtin.IRubyObject size(org.jruby.runtime.ThreadContext);
    descriptor: (Lorg/jruby/runtime/ThreadContext;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
         0: .line 537
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.sizeFn:Lorg/jruby/RubyEnumerator$SizeFn;
            ifnull 2
         1: .line 538
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.sizeFn:Lorg/jruby/RubyEnumerator$SizeFn;
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.methodArgs:[Lorg/jruby/runtime/builtin/IRubyObject;
            invokeinterface org.jruby.RubyEnumerator$SizeFn.size:([Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
         2: .line 541
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.size:Lorg/jruby/runtime/builtin/IRubyObject;
            astore 2 /* size */
        start local 2 // org.jruby.runtime.builtin.IRubyObject size
         3: .line 542
            aload 2 /* size */
            ifnull 8
         4: .line 543
            aload 2 /* size */
            ldc "call"
            invokeinterface org.jruby.runtime.builtin.IRubyObject.respondsTo:(Ljava/lang/String;)Z
            ifeq 7
         5: .line 544
            aload 1 /* context */
            ifnonnull 6
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.metaClass:Lorg/jruby/RubyClass;
            getfield org.jruby.RubyClass.runtime:Lorg/jruby/Ruby;
            invokevirtual org.jruby.Ruby.getCurrentContext:()Lorg/jruby/runtime/ThreadContext;
            astore 1 /* context */
         6: .line 545
      StackMap locals: org.jruby.runtime.builtin.IRubyObject
      StackMap stack:
            aload 2 /* size */
            aload 1 /* context */
            ldc "call"
            invokeinterface org.jruby.runtime.builtin.IRubyObject.callMethod:(Lorg/jruby/runtime/ThreadContext;Ljava/lang/String;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
         7: .line 548
      StackMap locals:
      StackMap stack:
            aload 2 /* size */
            areturn
         8: .line 551
      StackMap locals:
      StackMap stack:
            aload 1 /* context */
            ifnonnull 9
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.metaClass:Lorg/jruby/RubyClass;
            getfield org.jruby.RubyClass.runtime:Lorg/jruby/Ruby;
            invokevirtual org.jruby.Ruby.getCurrentContext:()Lorg/jruby/runtime/ThreadContext;
            astore 1 /* context */
         9: .line 553
      StackMap locals:
      StackMap stack:
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.nil:Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 2 // org.jruby.runtime.builtin.IRubyObject size
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lorg/jruby/RubyEnumerator;
            0   10     1  context  Lorg/jruby/runtime/ThreadContext;
            3   10     2     size  Lorg/jruby/runtime/builtin/IRubyObject;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod()
    MethodParameters:
         Name  Flags
      context  

  public long size();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.jruby.RubyEnumerator this
         0: .line 557
            aload 0 /* this */
            aconst_null
            invokevirtual org.jruby.RubyEnumerator.size:(Lorg/jruby/runtime/ThreadContext;)Lorg/jruby/runtime/builtin/IRubyObject;
            astore 1 /* size */
        start local 1 // org.jruby.runtime.builtin.IRubyObject size
         1: .line 558
            aload 1 /* size */
            instanceof org.jruby.RubyNumeric
            ifeq 3
         2: .line 559
            aload 1 /* size */
            checkcast org.jruby.RubyNumeric
            invokevirtual org.jruby.RubyNumeric.getLongValue:()J
            lreturn
         3: .line 561
      StackMap locals: org.jruby.runtime.builtin.IRubyObject
      StackMap stack:
            ldc -1
            lreturn
        end local 1 // org.jruby.runtime.builtin.IRubyObject size
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/jruby/RubyEnumerator;
            1    4     1  size  Lorg/jruby/runtime/builtin/IRubyObject;

  private org.jruby.RubyEnumerator$SizeFn enumSizeFn(org.jruby.runtime.ThreadContext);
    descriptor: (Lorg/jruby/runtime/ThreadContext;)Lorg/jruby/RubyEnumerator$SizeFn;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
         0: .line 565
            aload 0 /* this */
            astore 2 /* self */
        start local 2 // org.jruby.RubyEnumerator self
         1: .line 566
            new org.jruby.RubyEnumerator$3
            dup
            aload 0 /* this */
            aload 2 /* self */
            aload 1 /* context */
            invokespecial org.jruby.RubyEnumerator$3.<init>:(Lorg/jruby/RubyEnumerator;Lorg/jruby/RubyEnumerator;Lorg/jruby/runtime/ThreadContext;)V
            areturn
        end local 2 // org.jruby.RubyEnumerator self
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/jruby/RubyEnumerator;
            0    2     1  context  Lorg/jruby/runtime/ThreadContext;
            1    2     2     self  Lorg/jruby/RubyEnumerator;
    MethodParameters:
         Name  Flags
      context  final

  private org.jruby.runtime.builtin.IRubyObject with_index_common(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block, java.lang.String, org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=7, args_size=5
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.Block block
        start local 3 // java.lang.String rubyMethodName
        start local 4 // org.jruby.runtime.builtin.IRubyObject arg
         0: .line 575
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            astore 5 /* runtime */
        start local 5 // org.jruby.Ruby runtime
         1: .line 576
            aload 4 /* arg */
            invokeinterface org.jruby.runtime.builtin.IRubyObject.isNil:()Z
            ifeq 2
            iconst_0
            goto 3
      StackMap locals: org.jruby.Ruby
      StackMap stack:
         2: aload 4 /* arg */
            invokestatic org.jruby.RubyNumeric.num2int:(Lorg/jruby/runtime/builtin/IRubyObject;)I
      StackMap locals:
      StackMap stack: int
         3: istore 6 /* index */
        start local 6 // int index
         4: .line 577
            aload 2 /* block */
            invokevirtual org.jruby.runtime.Block.isGiven:()Z
            ifne 9
         5: .line 578
            aload 4 /* arg */
            invokeinterface org.jruby.runtime.builtin.IRubyObject.isNil:()Z
            ifeq 7
         6: .line 579
            aload 1 /* context */
            aload 0 /* this */
            aload 3 /* rubyMethodName */
            aload 0 /* this */
            aload 1 /* context */
            invokevirtual org.jruby.RubyEnumerator.enumSizeFn:(Lorg/jruby/runtime/ThreadContext;)Lorg/jruby/RubyEnumerator$SizeFn;
            invokestatic org.jruby.RubyEnumerator.enumeratorizeWithSize:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Ljava/lang/String;Lorg/jruby/RubyEnumerator$SizeFn;)Lorg/jruby/runtime/builtin/IRubyObject;
            goto 8
         7: .line 580
      StackMap locals: int
      StackMap stack:
            aload 1 /* context */
            aload 0 /* this */
            aload 3 /* rubyMethodName */
            iconst_1
            anewarray org.jruby.runtime.builtin.IRubyObject
            dup
            iconst_0
            aload 5 /* runtime */
            iload 6 /* index */
            invokevirtual org.jruby.Ruby.newFixnum:(I)Lorg/jruby/RubyFixnum;
            aastore
            aload 0 /* this */
            aload 1 /* context */
            invokevirtual org.jruby.RubyEnumerator.enumSizeFn:(Lorg/jruby/runtime/ThreadContext;)Lorg/jruby/RubyEnumerator$SizeFn;
            invokestatic org.jruby.RubyEnumerator.enumeratorizeWithSize:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Ljava/lang/String;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyEnumerator$SizeFn;)Lorg/jruby/runtime/builtin/IRubyObject;
         8: .line 578
      StackMap locals:
      StackMap stack: org.jruby.runtime.builtin.IRubyObject
            areturn
         9: .line 583
      StackMap locals:
      StackMap stack:
            aload 5 /* runtime */
            aload 1 /* context */
            aload 0 /* this */
            new org.jruby.RubyEnumerable$EachWithIndex
            dup
            aload 2 /* block */
            iload 6 /* index */
            invokespecial org.jruby.RubyEnumerable$EachWithIndex.<init>:(Lorg/jruby/runtime/Block;I)V
            invokestatic org.jruby.RubyEnumerable.callEach:(Lorg/jruby/Ruby;Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/BlockCallback;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 6 // int index
        end local 5 // org.jruby.Ruby runtime
        end local 4 // org.jruby.runtime.builtin.IRubyObject arg
        end local 3 // java.lang.String rubyMethodName
        end local 2 // org.jruby.runtime.Block block
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   10     0            this  Lorg/jruby/RubyEnumerator;
            0   10     1         context  Lorg/jruby/runtime/ThreadContext;
            0   10     2           block  Lorg/jruby/runtime/Block;
            0   10     3  rubyMethodName  Ljava/lang/String;
            0   10     4             arg  Lorg/jruby/runtime/builtin/IRubyObject;
            1   10     5         runtime  Lorg/jruby/Ruby;
            4   10     6           index  I
    MethodParameters:
                Name  Flags
      context         
      block           final
      rubyMethodName  final
      arg             

  public org.jruby.runtime.builtin.IRubyObject each_with_index(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.Block block
         0: .line 588
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* block */
            ldc "each_with_index"
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.nil:Lorg/jruby/runtime/builtin/IRubyObject;
            invokevirtual org.jruby.RubyEnumerator.with_index_common:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 2 // org.jruby.runtime.Block block
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/RubyEnumerator;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2    block  Lorg/jruby/runtime/Block;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod()
    MethodParameters:
         Name  Flags
      context  
      block    final

  public org.jruby.runtime.builtin.IRubyObject with_index(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.Block block
         0: .line 593
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* block */
            ldc "with_index"
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.nil:Lorg/jruby/runtime/builtin/IRubyObject;
            invokevirtual org.jruby.RubyEnumerator.with_index_common:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 2 // org.jruby.runtime.Block block
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/RubyEnumerator;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2    block  Lorg/jruby/runtime/Block;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod(name = {"with_index"})
    MethodParameters:
         Name  Flags
      context  
      block    final

  public org.jruby.runtime.builtin.IRubyObject with_index19(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.Block block
         0: .line 598
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* block */
            invokevirtual org.jruby.RubyEnumerator.with_index:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 2 // org.jruby.runtime.Block block
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/RubyEnumerator;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2    block  Lorg/jruby/runtime/Block;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
         Name  Flags
      context  
      block    final

  public org.jruby.runtime.builtin.IRubyObject with_index(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject arg
        start local 3 // org.jruby.runtime.Block block
         0: .line 603
            aload 0 /* this */
            aload 1 /* context */
            aload 3 /* block */
            ldc "with_index"
            aload 2 /* arg */
            invokevirtual org.jruby.RubyEnumerator.with_index_common:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 3 // org.jruby.runtime.Block block
        end local 2 // org.jruby.runtime.builtin.IRubyObject arg
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/RubyEnumerator;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2      arg  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     3    block  Lorg/jruby/runtime/Block;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod(name = {"with_index"})
    MethodParameters:
         Name  Flags
      context  
      arg      
      block    final

  public org.jruby.runtime.builtin.IRubyObject with_index19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject arg
        start local 3 // org.jruby.runtime.Block block
         0: .line 608
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* arg */
            aload 3 /* block */
            invokevirtual org.jruby.RubyEnumerator.with_index:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 3 // org.jruby.runtime.Block block
        end local 2 // org.jruby.runtime.builtin.IRubyObject arg
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/RubyEnumerator;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2      arg  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     3    block  Lorg/jruby/runtime/Block;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
         Name  Flags
      context  
      arg      
      block    final

  public synchronized boolean hasNext();
    descriptor: ()Z
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.jruby.RubyEnumerator this
         0: .line 615
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.metaClass:Lorg/jruby/RubyClass;
            getfield org.jruby.RubyClass.runtime:Lorg/jruby/Ruby;
            invokevirtual org.jruby.Ruby.getCurrentContext:()Lorg/jruby/runtime/ThreadContext;
            astore 1 /* context */
        start local 1 // org.jruby.runtime.ThreadContext context
         1: .line 618
            aload 1 /* context */
            invokestatic org.jruby.RubyEnumerator.sites:(Lorg/jruby/runtime/ThreadContext;)Lorg/jruby/runtime/JavaSites$FiberSites;
            getfield org.jruby.runtime.JavaSites$FiberSites.peek:Lorg/jruby/runtime/callsite/CachingCallSite;
            aload 1 /* context */
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.jruby.runtime.callsite.CachingCallSite.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            pop
         2: .line 619
            iconst_1
            ireturn
         3: .line 620
      StackMap locals: org.jruby.RubyEnumerator org.jruby.runtime.ThreadContext
      StackMap stack: org.jruby.exceptions.StopIteration
            pop
         4: .line 621
            iconst_0
            ireturn
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lorg/jruby/RubyEnumerator;
            1    5     1  context  Lorg/jruby/runtime/ThreadContext;
      Exception table:
        from    to  target  type
           1     2       3  Class org.jruby.exceptions.StopIteration

  private org.jruby.runtime.builtin.IRubyObject getGenerator();
    descriptor: ()Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.jruby.RubyEnumerator this
         0: .line 626
            aload 0 /* this */
            ldc "@__generator__"
            invokevirtual org.jruby.RubyEnumerator.getInstanceVariable:(Ljava/lang/String;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/RubyEnumerator;

  public java.lang.Object next();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.jruby.RubyEnumerator this
         0: .line 631
            aload 0 /* this */
            getfield org.jruby.RubyEnumerator.metaClass:Lorg/jruby/RubyClass;
            getfield org.jruby.RubyClass.runtime:Lorg/jruby/Ruby;
            invokevirtual org.jruby.Ruby.getCurrentContext:()Lorg/jruby/runtime/ThreadContext;
            astore 1 /* context */
        start local 1 // org.jruby.runtime.ThreadContext context
         1: .line 632
            aload 1 /* context */
            invokestatic org.jruby.RubyEnumerator.sites:(Lorg/jruby/runtime/ThreadContext;)Lorg/jruby/runtime/JavaSites$FiberSites;
            getfield org.jruby.runtime.JavaSites$FiberSites.next:Lorg/jruby/runtime/callsite/CachingCallSite;
            aload 1 /* context */
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.jruby.runtime.callsite.CachingCallSite.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            ldc Ljava/lang/Object;
            invokeinterface org.jruby.runtime.builtin.IRubyObject.toJava:(Ljava/lang/Class;)Ljava/lang/Object;
            areturn
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/jruby/RubyEnumerator;
            1    2     1  context  Lorg/jruby/runtime/ThreadContext;

  public void remove();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.jruby.RubyEnumerator this
         0: .line 637
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/RubyEnumerator;

  public java.util.stream.Stream<java.lang.Object> stream();
    descriptor: ()Ljava/util/stream/Stream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.jruby.RubyEnumerator this
         0: .line 643
            aload 0 /* this */
            iconst_0
            invokevirtual org.jruby.RubyEnumerator.stream:(Z)Ljava/util/stream/Stream;
            areturn
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/RubyEnumerator;
    Signature: ()Ljava/util/stream/Stream<Ljava/lang/Object;>;

  public java.util.stream.Stream<java.lang.Object> stream(boolean);
    descriptor: (Z)Ljava/util/stream/Stream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // boolean parallel
         0: .line 647
            aload 0 /* this */
            invokevirtual org.jruby.RubyEnumerator.spliterator:()Ljava/util/Spliterator;
            iload 1 /* parallel */
            invokestatic java.util.stream.StreamSupport.stream:(Ljava/util/Spliterator;Z)Ljava/util/stream/Stream;
            areturn
        end local 1 // boolean parallel
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/jruby/RubyEnumerator;
            0    1     1  parallel  Z
    Signature: (Z)Ljava/util/stream/Stream<Ljava/lang/Object;>;
    MethodParameters:
          Name  Flags
      parallel  final

  public java.util.Spliterator<java.lang.Object> spliterator();
    descriptor: ()Ljava/util/Spliterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // org.jruby.RubyEnumerator this
         0: .line 651
            aload 0 /* this */
            invokevirtual org.jruby.RubyEnumerator.size:()J
            lstore 1 /* size */
        start local 1 // long size
         1: .line 653
            sipush 1024
            istore 3 /* mod */
        start local 3 // int mod
         2: .line 654
            lload 1 /* size */
            lconst_0
            lcmp
            iflt 3
            iload 3 /* mod */
            bipush 64
            ior
            istore 3 /* mod */
         3: .line 655
      StackMap locals: long int
      StackMap stack:
            aload 0 /* this */
            lload 1 /* size */
            iload 3 /* mod */
            invokestatic java.util.Spliterators.spliterator:(Ljava/util/Iterator;JI)Ljava/util/Spliterator;
            areturn
        end local 3 // int mod
        end local 1 // long size
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/jruby/RubyEnumerator;
            1    4     1  size  J
            2    4     3   mod  I
    Signature: ()Ljava/util/Spliterator<Ljava/lang/Object;>;

  public java.util.Spliterator<java.lang.Object> spliterator(int);
    descriptor: (I)Ljava/util/Spliterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.jruby.RubyEnumerator this
        start local 1 // int mod
         0: .line 659
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.jruby.RubyEnumerator.size:()J
            iload 1 /* mod */
            invokestatic java.util.Spliterators.spliterator:(Ljava/util/Iterator;JI)Ljava/util/Spliterator;
            areturn
        end local 1 // int mod
        end local 0 // org.jruby.RubyEnumerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/RubyEnumerator;
            0    1     1   mod  I
    Signature: (I)Ljava/util/Spliterator<Ljava/lang/Object;>;
    MethodParameters:
      Name  Flags
      mod   final

  private static org.jruby.runtime.JavaSites$FiberSites sites(org.jruby.runtime.ThreadContext);
    descriptor: (Lorg/jruby/runtime/ThreadContext;)Lorg/jruby/runtime/JavaSites$FiberSites;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.runtime.ThreadContext context
         0: .line 674
            aload 0 /* context */
            getfield org.jruby.runtime.ThreadContext.sites:Lorg/jruby/runtime/JavaSites;
            getfield org.jruby.runtime.JavaSites.Fiber:Lorg/jruby/runtime/JavaSites$FiberSites;
            areturn
        end local 0 // org.jruby.runtime.ThreadContext context
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  context  Lorg/jruby/runtime/ThreadContext;
    MethodParameters:
         Name  Flags
      context  
}
Signature: Lorg/jruby/RubyObject;Ljava/util/Iterator<Ljava/lang/Object;>;
SourceFile: "RubyEnumerator.java"
NestMembers:
  org.jruby.RubyEnumerator$1  org.jruby.RubyEnumerator$2  org.jruby.RubyEnumerator$3  org.jruby.RubyEnumerator$FeedValue  org.jruby.RubyEnumerator$SizeFn
InnerClasses:
  EachWithIndex = org.jruby.RubyEnumerable$EachWithIndex of org.jruby.RubyEnumerable
  org.jruby.RubyEnumerator$1
  org.jruby.RubyEnumerator$2
  org.jruby.RubyEnumerator$3
  public FeedValue = org.jruby.RubyEnumerator$FeedValue of org.jruby.RubyEnumerator
  public abstract SizeFn = org.jruby.RubyEnumerator$SizeFn of org.jruby.RubyEnumerator
  public FiberSites = org.jruby.runtime.JavaSites$FiberSites of org.jruby.runtime.JavaSites
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyModule(name = {"Enumerator"}, include = {"Enumerable"})