public abstract class org.jruby.specialized.RubyArraySpecialized extends org.jruby.RubyArray
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.jruby.specialized.RubyArraySpecialized
  super_class: org.jruby.RubyArray
{
  public static final int MAX_PACKED_SIZE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  public void <init>(org.jruby.Ruby, boolean);
    descriptor: (Lorg/jruby/Ruby;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.jruby.specialized.RubyArraySpecialized this
        start local 1 // org.jruby.Ruby runtime
        start local 2 // boolean light
         0: .line 49
            aload 0 /* this */
            aload 1 /* runtime */
            aload 1 /* runtime */
            invokevirtual org.jruby.Ruby.getArray:()Lorg/jruby/RubyClass;
            iload 2 /* light */
            invokespecial org.jruby.RubyArray.<init>:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Z)V
         1: .line 50
            return
        end local 2 // boolean light
        end local 1 // org.jruby.Ruby runtime
        end local 0 // org.jruby.specialized.RubyArraySpecialized this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/jruby/specialized/RubyArraySpecialized;
            0    2     1  runtime  Lorg/jruby/Ruby;
            0    2     2    light  Z
    MethodParameters:
         Name  Flags
      runtime  
      light    

  public void <init>(org.jruby.RubyClass, boolean);
    descriptor: (Lorg/jruby/RubyClass;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.jruby.specialized.RubyArraySpecialized this
        start local 1 // org.jruby.RubyClass otherClass
        start local 2 // boolean light
         0: .line 53
            aload 0 /* this */
            aload 1 /* otherClass */
            invokevirtual org.jruby.RubyClass.getClassRuntime:()Lorg/jruby/Ruby;
            aload 1 /* otherClass */
            iload 2 /* light */
            invokespecial org.jruby.RubyArray.<init>:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Z)V
         1: .line 54
            return
        end local 2 // boolean light
        end local 1 // org.jruby.RubyClass otherClass
        end local 0 // org.jruby.specialized.RubyArraySpecialized this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/jruby/specialized/RubyArraySpecialized;
            0    2     1  otherClass  Lorg/jruby/RubyClass;
            0    2     2       light  Z
    MethodParameters:
            Name  Flags
      otherClass  
      light       

  protected final void unpack();
    descriptor: ()V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.jruby.specialized.RubyArraySpecialized this
         0: .line 57
            aload 0 /* this */
            invokevirtual org.jruby.specialized.RubyArraySpecialized.packed:()Z
            ifne 1
            return
         1: .line 61
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.specialized.RubyArraySpecialized.getRuntime:()Lorg/jruby/Ruby;
            astore 1 /* runtime */
        start local 1 // org.jruby.Ruby runtime
         2: .line 62
            aload 0 /* this */
            getfield org.jruby.specialized.RubyArraySpecialized.realLength:I
            iconst_2
            iadd
            anewarray org.jruby.runtime.builtin.IRubyObject
            astore 2 /* values */
        start local 2 // org.jruby.runtime.builtin.IRubyObject[] values
         3: .line 63
            aload 2 /* values */
            aload 1 /* runtime */
            invokestatic org.jruby.runtime.Helpers.fillNil:([Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/Ruby;)V
         4: .line 64
            aload 0 /* this */
            aload 2 /* values */
            iconst_1
            invokevirtual org.jruby.specialized.RubyArraySpecialized.copyInto:([Lorg/jruby/runtime/builtin/IRubyObject;I)V
         5: .line 65
            aload 0 /* this */
            aload 2 /* values */
            putfield org.jruby.specialized.RubyArraySpecialized.values:[Lorg/jruby/runtime/builtin/IRubyObject;
         6: .line 66
            aload 0 /* this */
            iconst_1
            putfield org.jruby.specialized.RubyArraySpecialized.begin:I
         7: .line 68
            aload 0 /* this */
            aload 1 /* runtime */
            invokevirtual org.jruby.Ruby.getNil:()Lorg/jruby/runtime/builtin/IRubyObject;
            invokevirtual org.jruby.specialized.RubyArraySpecialized.finishUnpack:(Lorg/jruby/runtime/builtin/IRubyObject;)V
         8: .line 69
            return
        end local 2 // org.jruby.runtime.builtin.IRubyObject[] values
        end local 1 // org.jruby.Ruby runtime
        end local 0 // org.jruby.specialized.RubyArraySpecialized this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lorg/jruby/specialized/RubyArraySpecialized;
            2    9     1  runtime  Lorg/jruby/Ruby;
            3    9     2   values  [Lorg/jruby/runtime/builtin/IRubyObject;

  protected abstract void finishUnpack(org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;)V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      nil   

  protected boolean packed();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.specialized.RubyArraySpecialized this
         0: .line 74
            aload 0 /* this */
            getfield org.jruby.specialized.RubyArraySpecialized.values:[Lorg/jruby/runtime/builtin/IRubyObject;
            ifnonnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.jruby.specialized.RubyArraySpecialized this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/jruby/specialized/RubyArraySpecialized;
}
SourceFile: "RubyArraySpecialized.java"