public class org.jruby.ext.ffi.StructLayout$Field extends org.jruby.RubyObject
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jruby.ext.ffi.StructLayout$Field
  super_class: org.jruby.RubyObject
{
  private org.jruby.ext.ffi.StructLayout$FieldIO io;
    descriptor: Lorg/jruby/ext/ffi/StructLayout$FieldIO;
    flags: (0x0002) ACC_PRIVATE

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

  private org.jruby.ext.ffi.Type type;
    descriptor: Lorg/jruby/ext/ffi/Type;
    flags: (0x0002) ACC_PRIVATE

  private int offset;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  void <init>(org.jruby.Ruby, org.jruby.RubyClass);
    descriptor: (Lorg/jruby/Ruby;Lorg/jruby/RubyClass;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.jruby.ext.ffi.StructLayout$Field this
        start local 1 // org.jruby.Ruby runtime
        start local 2 // org.jruby.RubyClass klass
         0: .line 599
            aload 0 /* this */
            aload 1 /* runtime */
            aload 2 /* klass */
            getstatic org.jruby.ext.ffi.StructLayout$DefaultFieldIO.INSTANCE:Lorg/jruby/ext/ffi/StructLayout$FieldIO;
            invokespecial org.jruby.ext.ffi.StructLayout$Field.<init>:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Lorg/jruby/ext/ffi/StructLayout$FieldIO;)V
         1: .line 600
            return
        end local 2 // org.jruby.RubyClass klass
        end local 1 // org.jruby.Ruby runtime
        end local 0 // org.jruby.ext.ffi.StructLayout$Field this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/jruby/ext/ffi/StructLayout$Field;
            0    2     1  runtime  Lorg/jruby/Ruby;
            0    2     2    klass  Lorg/jruby/RubyClass;
    MethodParameters:
         Name  Flags
      runtime  
      klass    

  void <init>(org.jruby.Ruby, org.jruby.RubyClass, org.jruby.ext.ffi.StructLayout$FieldIO);
    descriptor: (Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Lorg/jruby/ext/ffi/StructLayout$FieldIO;)V
    flags: (0x0000) 
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // org.jruby.ext.ffi.StructLayout$Field this
        start local 1 // org.jruby.Ruby runtime
        start local 2 // org.jruby.RubyClass klass
        start local 3 // org.jruby.ext.ffi.StructLayout$FieldIO io
         0: .line 603
            aload 0 /* this */
            aload 1 /* runtime */
            aload 2 /* klass */
            aload 1 /* runtime */
            ldc "FFI"
            invokevirtual org.jruby.Ruby.getModule:(Ljava/lang/String;)Lorg/jruby/RubyModule;
            ldc "Type"
            invokevirtual org.jruby.RubyModule.getClass:(Ljava/lang/String;)Lorg/jruby/RubyClass;
            ldc "VOID"
            invokevirtual org.jruby.RubyClass.getConstant:(Ljava/lang/String;)Lorg/jruby/runtime/builtin/IRubyObject;
            checkcast org.jruby.ext.ffi.Type
         1: .line 604
            iconst_m1
            aload 3 /* io */
            invokespecial org.jruby.ext.ffi.StructLayout$Field.<init>:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Lorg/jruby/ext/ffi/Type;ILorg/jruby/ext/ffi/StructLayout$FieldIO;)V
         2: .line 606
            return
        end local 3 // org.jruby.ext.ffi.StructLayout$FieldIO io
        end local 2 // org.jruby.RubyClass klass
        end local 1 // org.jruby.Ruby runtime
        end local 0 // org.jruby.ext.ffi.StructLayout$Field this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/jruby/ext/ffi/StructLayout$Field;
            0    3     1  runtime  Lorg/jruby/Ruby;
            0    3     2    klass  Lorg/jruby/RubyClass;
            0    3     3       io  Lorg/jruby/ext/ffi/StructLayout$FieldIO;
    MethodParameters:
         Name  Flags
      runtime  
      klass    
      io       

  void <init>(org.jruby.Ruby, org.jruby.RubyClass, org.jruby.ext.ffi.Type, int, org.jruby.ext.ffi.StructLayout$FieldIO);
    descriptor: (Lorg/jruby/Ruby;Lorg/jruby/RubyClass;Lorg/jruby/ext/ffi/Type;ILorg/jruby/ext/ffi/StructLayout$FieldIO;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=6, args_size=6
        start local 0 // org.jruby.ext.ffi.StructLayout$Field this
        start local 1 // org.jruby.Ruby runtime
        start local 2 // org.jruby.RubyClass klass
        start local 3 // org.jruby.ext.ffi.Type type
        start local 4 // int offset
        start local 5 // org.jruby.ext.ffi.StructLayout$FieldIO io
         0: .line 609
            aload 0 /* this */
            aload 1 /* runtime */
            aload 2 /* klass */
            invokespecial org.jruby.RubyObject.<init>:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;)V
         1: .line 610
            aload 0 /* this */
            aload 1 /* runtime */
            invokevirtual org.jruby.Ruby.getNil:()Lorg/jruby/runtime/builtin/IRubyObject;
            putfield org.jruby.ext.ffi.StructLayout$Field.name:Lorg/jruby/runtime/builtin/IRubyObject;
         2: .line 611
            aload 0 /* this */
            aload 3 /* type */
            putfield org.jruby.ext.ffi.StructLayout$Field.type:Lorg/jruby/ext/ffi/Type;
         3: .line 612
            aload 0 /* this */
            iload 4 /* offset */
            putfield org.jruby.ext.ffi.StructLayout$Field.offset:I
         4: .line 613
            aload 0 /* this */
            aload 5 /* io */
            putfield org.jruby.ext.ffi.StructLayout$Field.io:Lorg/jruby/ext/ffi/StructLayout$FieldIO;
         5: .line 614
            return
        end local 5 // org.jruby.ext.ffi.StructLayout$FieldIO io
        end local 4 // int offset
        end local 3 // org.jruby.ext.ffi.Type type
        end local 2 // org.jruby.RubyClass klass
        end local 1 // org.jruby.Ruby runtime
        end local 0 // org.jruby.ext.ffi.StructLayout$Field this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lorg/jruby/ext/ffi/StructLayout$Field;
            0    6     1  runtime  Lorg/jruby/Ruby;
            0    6     2    klass  Lorg/jruby/RubyClass;
            0    6     3     type  Lorg/jruby/ext/ffi/Type;
            0    6     4   offset  I
            0    6     5       io  Lorg/jruby/ext/ffi/StructLayout$FieldIO;
    MethodParameters:
         Name  Flags
      runtime  
      klass    
      type     
      offset   
      io       

  void init(org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.jruby.ext.ffi.StructLayout$Field this
        start local 1 // org.jruby.runtime.builtin.IRubyObject name
        start local 2 // org.jruby.runtime.builtin.IRubyObject type
        start local 3 // org.jruby.runtime.builtin.IRubyObject offset
         0: .line 617
            aload 0 /* this */
            aload 1 /* name */
            putfield org.jruby.ext.ffi.StructLayout$Field.name:Lorg/jruby/runtime/builtin/IRubyObject;
         1: .line 618
            aload 0 /* this */
            aload 0 /* this */
            aload 2 /* type */
            invokevirtual org.jruby.ext.ffi.StructLayout$Field.checkType:(Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/ext/ffi/Type;
            putfield org.jruby.ext.ffi.StructLayout$Field.type:Lorg/jruby/ext/ffi/Type;
         2: .line 619
            aload 0 /* this */
            aload 3 /* offset */
            invokestatic org.jruby.RubyNumeric.num2int:(Lorg/jruby/runtime/builtin/IRubyObject;)I
            putfield org.jruby.ext.ffi.StructLayout$Field.offset:I
         3: .line 620
            return
        end local 3 // org.jruby.runtime.builtin.IRubyObject offset
        end local 2 // org.jruby.runtime.builtin.IRubyObject type
        end local 1 // org.jruby.runtime.builtin.IRubyObject name
        end local 0 // org.jruby.ext.ffi.StructLayout$Field this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/jruby/ext/ffi/StructLayout$Field;
            0    4     1    name  Lorg/jruby/runtime/builtin/IRubyObject;
            0    4     2    type  Lorg/jruby/runtime/builtin/IRubyObject;
            0    4     3  offset  Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
        Name  Flags
      name    
      type    
      offset  

  void init(org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.ext.ffi.StructLayout$FieldIO);
    descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/ext/ffi/StructLayout$FieldIO;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // org.jruby.ext.ffi.StructLayout$Field this
        start local 1 // org.jruby.runtime.builtin.IRubyObject name
        start local 2 // org.jruby.runtime.builtin.IRubyObject type
        start local 3 // org.jruby.runtime.builtin.IRubyObject offset
        start local 4 // org.jruby.ext.ffi.StructLayout$FieldIO io
         0: .line 623
            aload 0 /* this */
            aload 1 /* name */
            aload 2 /* type */
            aload 3 /* offset */
            invokevirtual org.jruby.ext.ffi.StructLayout$Field.init:(Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)V
         1: .line 624
            aload 0 /* this */
            aload 4 /* io */
            putfield org.jruby.ext.ffi.StructLayout$Field.io:Lorg/jruby/ext/ffi/StructLayout$FieldIO;
         2: .line 625
            return
        end local 4 // org.jruby.ext.ffi.StructLayout$FieldIO io
        end local 3 // org.jruby.runtime.builtin.IRubyObject offset
        end local 2 // org.jruby.runtime.builtin.IRubyObject type
        end local 1 // org.jruby.runtime.builtin.IRubyObject name
        end local 0 // org.jruby.ext.ffi.StructLayout$Field this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/jruby/ext/ffi/StructLayout$Field;
            0    3     1    name  Lorg/jruby/runtime/builtin/IRubyObject;
            0    3     2    type  Lorg/jruby/runtime/builtin/IRubyObject;
            0    3     3  offset  Lorg/jruby/runtime/builtin/IRubyObject;
            0    3     4      io  Lorg/jruby/ext/ffi/StructLayout$FieldIO;
    MethodParameters:
        Name  Flags
      name    
      type    
      offset  
      io      

  void init(org.jruby.runtime.builtin.IRubyObject[], org.jruby.ext.ffi.StructLayout$FieldIO);
    descriptor: ([Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/ext/ffi/StructLayout$FieldIO;)V
    flags: (0x0000) 
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.jruby.ext.ffi.StructLayout$Field this
        start local 1 // org.jruby.runtime.builtin.IRubyObject[] args
        start local 2 // org.jruby.ext.ffi.StructLayout$FieldIO io
         0: .line 628
            aload 0 /* this */
            aload 1 /* args */
            iconst_0
            aaload
            aload 1 /* args */
            iconst_2
            aaload
            aload 1 /* args */
            iconst_1
            aaload
            aload 2 /* io */
            invokevirtual org.jruby.ext.ffi.StructLayout$Field.init:(Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/ext/ffi/StructLayout$FieldIO;)V
         1: .line 629
            return
        end local 2 // org.jruby.ext.ffi.StructLayout$FieldIO io
        end local 1 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 0 // org.jruby.ext.ffi.StructLayout$Field this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/jruby/ext/ffi/StructLayout$Field;
            0    2     1  args  [Lorg/jruby/runtime/builtin/IRubyObject;
            0    2     2    io  Lorg/jruby/ext/ffi/StructLayout$FieldIO;
    MethodParameters:
      Name  Flags
      args  
      io    

  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=5, locals=3, args_size=3
        start local 0 // org.jruby.ext.ffi.StructLayout$Field this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject[] args
         0: .line 634
            aload 0 /* this */
            aload 2 /* args */
            iconst_0
            aaload
            aload 2 /* args */
            iconst_2
            aaload
            aload 2 /* args */
            iconst_1
            aaload
            invokevirtual org.jruby.ext.ffi.StructLayout$Field.init:(Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)V
         1: .line 636
            aload 0 /* this */
            areturn
        end local 2 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.ext.ffi.StructLayout$Field this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/jruby/ext/ffi/StructLayout$Field;
            0    2     1  context  Lorg/jruby/runtime/ThreadContext;
            0    2     2     args  [Lorg/jruby/runtime/builtin/IRubyObject;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod(name = {"initialize"}, visibility = org.jruby.runtime.Visibility.PRIVATE:Lorg/jruby/runtime/Visibility;, required = 3, optional = 1)
    MethodParameters:
         Name  Flags
      context  
      args     

  final org.jruby.ext.ffi.Type checkType(org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/ext/ffi/Type;
    flags: (0x0010) ACC_FINAL
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.jruby.ext.ffi.StructLayout$Field this
        start local 1 // org.jruby.runtime.builtin.IRubyObject type
         0: .line 640
            aload 1 /* type */
            instanceof org.jruby.ext.ffi.Type
            ifne 2
         1: .line 641
            aload 0 /* this */
            invokevirtual org.jruby.ext.ffi.StructLayout$Field.getRuntime:()Lorg/jruby/Ruby;
            aload 1 /* type */
            aload 0 /* this */
            invokevirtual org.jruby.ext.ffi.StructLayout$Field.getRuntime:()Lorg/jruby/Ruby;
            ldc "FFI"
            invokevirtual org.jruby.Ruby.getModule:(Ljava/lang/String;)Lorg/jruby/RubyModule;
            ldc "Type"
            invokevirtual org.jruby.RubyModule.getClass:(Ljava/lang/String;)Lorg/jruby/RubyClass;
            invokevirtual org.jruby.Ruby.newTypeError:(Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;)Lorg/jruby/exceptions/RaiseException;
            athrow
         2: .line 643
      StackMap locals:
      StackMap stack:
            aload 1 /* type */
            checkcast org.jruby.ext.ffi.Type
            areturn
        end local 1 // org.jruby.runtime.builtin.IRubyObject type
        end local 0 // org.jruby.ext.ffi.StructLayout$Field this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/jruby/ext/ffi/StructLayout$Field;
            0    3     1  type  Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
      Name  Flags
      type  

  public final int offset();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ext.ffi.StructLayout$Field this
         0: .line 647
            aload 0 /* this */
            getfield org.jruby.ext.ffi.StructLayout$Field.offset:I
            ireturn
        end local 0 // org.jruby.ext.ffi.StructLayout$Field this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ext/ffi/StructLayout$Field;

  public final org.jruby.ext.ffi.Type ffiType();
    descriptor: ()Lorg/jruby/ext/ffi/Type;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ext.ffi.StructLayout$Field this
         0: .line 651
            aload 0 /* this */
            getfield org.jruby.ext.ffi.StructLayout$Field.type:Lorg/jruby/ext/ffi/Type;
            areturn
        end local 0 // org.jruby.ext.ffi.StructLayout$Field this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ext/ffi/StructLayout$Field;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ext.ffi.StructLayout$Field this
        start local 1 // java.lang.Object obj
         0: .line 656
            aload 1 /* obj */
            instanceof org.jruby.ext.ffi.StructLayout$Field
            ifeq 1
            aload 1 /* obj */
            checkcast org.jruby.ext.ffi.StructLayout$Field
            getfield org.jruby.ext.ffi.StructLayout$Field.offset:I
            aload 0 /* this */
            getfield org.jruby.ext.ffi.StructLayout$Field.offset:I
            if_icmpne 1
            aload 1 /* obj */
            checkcast org.jruby.ext.ffi.StructLayout$Field
            getfield org.jruby.ext.ffi.StructLayout$Field.type:Lorg/jruby/ext/ffi/Type;
            aload 0 /* this */
            getfield org.jruby.ext.ffi.StructLayout$Field.type:Lorg/jruby/ext/ffi/Type;
            invokevirtual org.jruby.ext.ffi.Type.equals:(Ljava/lang/Object;)Z
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // org.jruby.ext.ffi.StructLayout$Field this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/jruby/ext/ffi/StructLayout$Field;
            0    2     1   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.jruby.ext.ffi.StructLayout$Field this
         0: .line 661
            aload 0 /* this */
            invokespecial org.jruby.RubyObject.hashCode:()I
            istore 1 /* result */
        start local 1 // int result
         1: .line 662
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.jruby.ext.ffi.StructLayout$Field.type:Lorg/jruby/ext/ffi/Type;
            invokevirtual org.jruby.ext.ffi.Type.hashCode:()I
            iadd
            istore 1 /* result */
         2: .line 663
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.jruby.ext.ffi.StructLayout$Field.offset:I
            iadd
            istore 1 /* result */
         3: .line 664
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // org.jruby.ext.ffi.StructLayout$Field this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/jruby/ext/ffi/StructLayout$Field;
            1    4     1  result  I

  public final boolean isCacheable();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ext.ffi.StructLayout$Field this
         0: .line 673
            aload 0 /* this */
            getfield org.jruby.ext.ffi.StructLayout$Field.io:Lorg/jruby/ext/ffi/StructLayout$FieldIO;
            invokeinterface org.jruby.ext.ffi.StructLayout$FieldIO.isCacheable:()Z
            ireturn
        end local 0 // org.jruby.ext.ffi.StructLayout$Field this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ext/ffi/StructLayout$Field;

  public final boolean isValueReferenceNeeded();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ext.ffi.StructLayout$Field this
         0: .line 682
            aload 0 /* this */
            getfield org.jruby.ext.ffi.StructLayout$Field.io:Lorg/jruby/ext/ffi/StructLayout$FieldIO;
            invokeinterface org.jruby.ext.ffi.StructLayout$FieldIO.isValueReferenceNeeded:()Z
            ireturn
        end local 0 // org.jruby.ext.ffi.StructLayout$Field this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ext/ffi/StructLayout$Field;

  final org.jruby.ext.ffi.StructLayout$FieldIO getFieldIO();
    descriptor: ()Lorg/jruby/ext/ffi/StructLayout$FieldIO;
    flags: (0x0010) ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ext.ffi.StructLayout$Field this
         0: .line 686
            aload 0 /* this */
            getfield org.jruby.ext.ffi.StructLayout$Field.io:Lorg/jruby/ext/ffi/StructLayout$FieldIO;
            areturn
        end local 0 // org.jruby.ext.ffi.StructLayout$Field this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ext/ffi/StructLayout$Field;

  static java.nio.ByteOrder getByteOrderOption(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[]);
    descriptor: (Lorg/jruby/runtime/ThreadContext;[Lorg/jruby/runtime/builtin/IRubyObject;)Ljava/nio/ByteOrder;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // org.jruby.runtime.ThreadContext context
        start local 1 // org.jruby.runtime.builtin.IRubyObject[] args
         0: .line 691
            invokestatic java.nio.ByteOrder.nativeOrder:()Ljava/nio/ByteOrder;
            astore 2 /* order */
        start local 2 // java.nio.ByteOrder order
         1: .line 693
            aload 1 /* args */
            arraylength
            iconst_3
            if_icmple 11
            aload 1 /* args */
            iconst_3
            aaload
            instanceof org.jruby.RubyHash
            ifeq 11
         2: .line 694
            aload 1 /* args */
            iconst_3
            aaload
            checkcast org.jruby.RubyHash
            astore 3 /* options */
        start local 3 // org.jruby.RubyHash options
         3: .line 695
            aload 3 /* options */
            aload 0 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            ldc "byte_order"
            invokestatic org.jruby.RubySymbol.newSymbol:(Lorg/jruby/Ruby;Ljava/lang/String;)Lorg/jruby/RubySymbol;
            invokevirtual org.jruby.RubyHash.fastARef:(Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            astore 4 /* byte_order */
        start local 4 // org.jruby.runtime.builtin.IRubyObject byte_order
         4: .line 696
            aload 4 /* byte_order */
            instanceof org.jruby.RubySymbol
            ifne 5
            aload 4 /* byte_order */
            instanceof org.jruby.RubyString
            ifeq 11
         5: .line 697
      StackMap locals: java.nio.ByteOrder org.jruby.RubyHash org.jruby.runtime.builtin.IRubyObject
      StackMap stack:
            aload 4 /* byte_order */
            invokeinterface org.jruby.runtime.builtin.IRubyObject.asJavaString:()Ljava/lang/String;
            astore 5 /* orderName */
        start local 5 // java.lang.String orderName
         6: .line 698
            ldc "network"
            aload 5 /* orderName */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 7
            ldc "big"
            aload 5 /* orderName */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 9
         7: .line 699
      StackMap locals: java.lang.String
      StackMap stack:
            getstatic java.nio.ByteOrder.BIG_ENDIAN:Ljava/nio/ByteOrder;
            astore 2 /* order */
         8: .line 701
            goto 11
      StackMap locals:
      StackMap stack:
         9: ldc "little"
            aload 5 /* orderName */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 11
        10: .line 702
            getstatic java.nio.ByteOrder.LITTLE_ENDIAN:Ljava/nio/ByteOrder;
            astore 2 /* order */
        end local 5 // java.lang.String orderName
        end local 4 // org.jruby.runtime.builtin.IRubyObject byte_order
        end local 3 // org.jruby.RubyHash options
        11: .line 707
      StackMap locals:
      StackMap stack:
            aload 2 /* order */
            areturn
        end local 2 // java.nio.ByteOrder order
        end local 1 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 0 // org.jruby.runtime.ThreadContext context
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   12     0     context  Lorg/jruby/runtime/ThreadContext;
            0   12     1        args  [Lorg/jruby/runtime/builtin/IRubyObject;
            1   12     2       order  Ljava/nio/ByteOrder;
            3   11     3     options  Lorg/jruby/RubyHash;
            4   11     4  byte_order  Lorg/jruby/runtime/builtin/IRubyObject;
            6   11     5   orderName  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      context  
      args     

  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=2, locals=2, args_size=2
        start local 0 // org.jruby.ext.ffi.StructLayout$Field this
        start local 1 // org.jruby.runtime.ThreadContext context
         0: .line 712
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            aload 0 /* this */
            getfield org.jruby.ext.ffi.StructLayout$Field.type:Lorg/jruby/ext/ffi/Type;
            invokevirtual org.jruby.ext.ffi.Type.getNativeSize:()I
            invokevirtual org.jruby.Ruby.newFixnum:(I)Lorg/jruby/RubyFixnum;
            areturn
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.ext.ffi.StructLayout$Field this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/ext/ffi/StructLayout$Field;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod()
    MethodParameters:
         Name  Flags
      context  

  public final org.jruby.runtime.builtin.IRubyObject alignment(org.jruby.runtime.ThreadContext);
    descriptor: (Lorg/jruby/runtime/ThreadContext;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ext.ffi.StructLayout$Field this
        start local 1 // org.jruby.runtime.ThreadContext context
         0: .line 717
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            aload 0 /* this */
            getfield org.jruby.ext.ffi.StructLayout$Field.type:Lorg/jruby/ext/ffi/Type;
            invokevirtual org.jruby.ext.ffi.Type.getNativeAlignment:()I
            invokevirtual org.jruby.Ruby.newFixnum:(I)Lorg/jruby/RubyFixnum;
            areturn
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.ext.ffi.StructLayout$Field this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/ext/ffi/StructLayout$Field;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod()
    MethodParameters:
         Name  Flags
      context  

  public final org.jruby.runtime.builtin.IRubyObject offset(org.jruby.runtime.ThreadContext);
    descriptor: (Lorg/jruby/runtime/ThreadContext;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ext.ffi.StructLayout$Field this
        start local 1 // org.jruby.runtime.ThreadContext context
         0: .line 722
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            aload 0 /* this */
            getfield org.jruby.ext.ffi.StructLayout$Field.offset:I
            invokevirtual org.jruby.Ruby.newFixnum:(I)Lorg/jruby/RubyFixnum;
            areturn
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.ext.ffi.StructLayout$Field this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/ext/ffi/StructLayout$Field;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod()
    MethodParameters:
         Name  Flags
      context  

  public final org.jruby.runtime.builtin.IRubyObject type(org.jruby.runtime.ThreadContext);
    descriptor: (Lorg/jruby/runtime/ThreadContext;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.jruby.ext.ffi.StructLayout$Field this
        start local 1 // org.jruby.runtime.ThreadContext context
         0: .line 727
            aload 0 /* this */
            getfield org.jruby.ext.ffi.StructLayout$Field.type:Lorg/jruby/ext/ffi/Type;
            areturn
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.ext.ffi.StructLayout$Field this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/ext/ffi/StructLayout$Field;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod(name = {"type", "ffi_type"})
    MethodParameters:
         Name  Flags
      context  

  public final org.jruby.runtime.builtin.IRubyObject name(org.jruby.runtime.ThreadContext);
    descriptor: (Lorg/jruby/runtime/ThreadContext;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.jruby.ext.ffi.StructLayout$Field this
        start local 1 // org.jruby.runtime.ThreadContext context
         0: .line 732
            aload 0 /* this */
            getfield org.jruby.ext.ffi.StructLayout$Field.name:Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.ext.ffi.StructLayout$Field this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/ext/ffi/StructLayout$Field;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod()
    MethodParameters:
         Name  Flags
      context  
}
SourceFile: "StructLayout.java"
NestHost: org.jruby.ext.ffi.StructLayout
InnerClasses:
  final DefaultFieldIO = org.jruby.ext.ffi.StructLayout$DefaultFieldIO of org.jruby.ext.ffi.StructLayout
  public Field = org.jruby.ext.ffi.StructLayout$Field of org.jruby.ext.ffi.StructLayout
  abstract FieldIO = org.jruby.ext.ffi.StructLayout$FieldIO of org.jruby.ext.ffi.StructLayout
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyClass(name = {"FFI::StructLayout::Field"}, parent = "Object")