class org.jruby.javasupport.JavaEmbedUtils$1 implements org.jruby.RubyObjectAdapter
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.jruby.javasupport.JavaEmbedUtils$1
  super_class: java.lang.Object
{
  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
         0: .line 87
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/javasupport/JavaEmbedUtils$1;

  public boolean isKindOf(org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyModule);
    descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
        start local 1 // org.jruby.runtime.builtin.IRubyObject value
        start local 2 // org.jruby.RubyModule rubyModule
         0: .line 89
            aload 2 /* rubyModule */
            aload 1 /* value */
            invokevirtual org.jruby.RubyModule.isInstance:(Lorg/jruby/runtime/builtin/IRubyObject;)Z
            ireturn
        end local 2 // org.jruby.RubyModule rubyModule
        end local 1 // org.jruby.runtime.builtin.IRubyObject value
        end local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/jruby/javasupport/JavaEmbedUtils$1;
            0    1     1       value  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     2  rubyModule  Lorg/jruby/RubyModule;
    MethodParameters:
            Name  Flags
      value       
      rubyModule  

  public org.jruby.runtime.builtin.IRubyObject setInstanceVariable(org.jruby.runtime.builtin.IRubyObject, java.lang.String, org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
        start local 1 // org.jruby.runtime.builtin.IRubyObject obj
        start local 2 // java.lang.String variableName
        start local 3 // org.jruby.runtime.builtin.IRubyObject value
         0: .line 93
            aload 1 /* obj */
            invokeinterface org.jruby.runtime.builtin.IRubyObject.getInstanceVariables:()Lorg/jruby/runtime/builtin/InstanceVariables;
            aload 2 /* variableName */
            aload 3 /* value */
            invokeinterface org.jruby.runtime.builtin.InstanceVariables.setInstanceVariable:(Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 3 // org.jruby.runtime.builtin.IRubyObject value
        end local 2 // java.lang.String variableName
        end local 1 // org.jruby.runtime.builtin.IRubyObject obj
        end local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/jruby/javasupport/JavaEmbedUtils$1;
            0    1     1           obj  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     2  variableName  Ljava/lang/String;
            0    1     3         value  Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
              Name  Flags
      obj           
      variableName  
      value         

  public org.jruby.runtime.builtin.IRubyObject[] convertToJavaArray(org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;)[Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
        start local 1 // org.jruby.runtime.builtin.IRubyObject array
         0: .line 97
            aload 1 /* array */
            checkcast org.jruby.RubyArray
            invokevirtual org.jruby.RubyArray.toJavaArray:()[Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 1 // org.jruby.runtime.builtin.IRubyObject array
        end local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/jruby/javasupport/JavaEmbedUtils$1;
            0    1     1  array  Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
       Name  Flags
      array  

  public org.jruby.RubyInteger convertToRubyInteger(org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/RubyInteger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
        start local 1 // org.jruby.runtime.builtin.IRubyObject obj
         0: .line 101
            aload 1 /* obj */
            invokeinterface org.jruby.runtime.builtin.IRubyObject.convertToInteger:()Lorg/jruby/RubyInteger;
            areturn
        end local 1 // org.jruby.runtime.builtin.IRubyObject obj
        end local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/javasupport/JavaEmbedUtils$1;
            0    1     1   obj  Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
      Name  Flags
      obj   

  public org.jruby.runtime.builtin.IRubyObject getInstanceVariable(org.jruby.runtime.builtin.IRubyObject, java.lang.String);
    descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;Ljava/lang/String;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
        start local 1 // org.jruby.runtime.builtin.IRubyObject obj
        start local 2 // java.lang.String variableName
         0: .line 105
            aload 1 /* obj */
            invokeinterface org.jruby.runtime.builtin.IRubyObject.getInstanceVariables:()Lorg/jruby/runtime/builtin/InstanceVariables;
            aload 2 /* variableName */
            invokeinterface org.jruby.runtime.builtin.InstanceVariables.getInstanceVariable:(Ljava/lang/String;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 2 // java.lang.String variableName
        end local 1 // org.jruby.runtime.builtin.IRubyObject obj
        end local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/jruby/javasupport/JavaEmbedUtils$1;
            0    1     1           obj  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     2  variableName  Ljava/lang/String;
    MethodParameters:
              Name  Flags
      obj           
      variableName  

  public org.jruby.RubyString convertToRubyString(org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/RubyString;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
        start local 1 // org.jruby.runtime.builtin.IRubyObject obj
         0: .line 109
            aload 1 /* obj */
            invokeinterface org.jruby.runtime.builtin.IRubyObject.convertToString:()Lorg/jruby/RubyString;
            areturn
        end local 1 // org.jruby.runtime.builtin.IRubyObject obj
        end local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/javasupport/JavaEmbedUtils$1;
            0    1     1   obj  Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
      Name  Flags
      obj   

  public org.jruby.runtime.builtin.IRubyObject callMethod(org.jruby.runtime.builtin.IRubyObject, java.lang.String);
    descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;Ljava/lang/String;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
        start local 1 // org.jruby.runtime.builtin.IRubyObject receiver
        start local 2 // java.lang.String methodName
         0: .line 113
            aload 1 /* receiver */
            aload 1 /* receiver */
            invokeinterface org.jruby.runtime.builtin.IRubyObject.getRuntime:()Lorg/jruby/Ruby;
            invokevirtual org.jruby.Ruby.getCurrentContext:()Lorg/jruby/runtime/ThreadContext;
            aload 2 /* methodName */
            invokeinterface org.jruby.runtime.builtin.IRubyObject.callMethod:(Lorg/jruby/runtime/ThreadContext;Ljava/lang/String;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 2 // java.lang.String methodName
        end local 1 // org.jruby.runtime.builtin.IRubyObject receiver
        end local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/jruby/javasupport/JavaEmbedUtils$1;
            0    1     1    receiver  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     2  methodName  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      receiver    
      methodName  

  public org.jruby.runtime.builtin.IRubyObject callMethod(org.jruby.runtime.builtin.IRubyObject, java.lang.String, org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
        start local 1 // org.jruby.runtime.builtin.IRubyObject receiver
        start local 2 // java.lang.String methodName
        start local 3 // org.jruby.runtime.builtin.IRubyObject singleArg
         0: .line 117
            aload 1 /* receiver */
            aload 1 /* receiver */
            invokeinterface org.jruby.runtime.builtin.IRubyObject.getRuntime:()Lorg/jruby/Ruby;
            invokevirtual org.jruby.Ruby.getCurrentContext:()Lorg/jruby/runtime/ThreadContext;
            aload 2 /* methodName */
            aload 3 /* singleArg */
            invokeinterface org.jruby.runtime.builtin.IRubyObject.callMethod:(Lorg/jruby/runtime/ThreadContext;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 3 // org.jruby.runtime.builtin.IRubyObject singleArg
        end local 2 // java.lang.String methodName
        end local 1 // org.jruby.runtime.builtin.IRubyObject receiver
        end local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/jruby/javasupport/JavaEmbedUtils$1;
            0    1     1    receiver  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     2  methodName  Ljava/lang/String;
            0    1     3   singleArg  Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
            Name  Flags
      receiver    
      methodName  
      singleArg   

  public org.jruby.runtime.builtin.IRubyObject callMethod(org.jruby.runtime.builtin.IRubyObject, java.lang.String, org.jruby.runtime.builtin.IRubyObject[]);
    descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;Ljava/lang/String;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
        start local 1 // org.jruby.runtime.builtin.IRubyObject receiver
        start local 2 // java.lang.String methodName
        start local 3 // org.jruby.runtime.builtin.IRubyObject[] args
         0: .line 121
            aload 1 /* receiver */
            aload 1 /* receiver */
            invokeinterface org.jruby.runtime.builtin.IRubyObject.getRuntime:()Lorg/jruby/Ruby;
            invokevirtual org.jruby.Ruby.getCurrentContext:()Lorg/jruby/runtime/ThreadContext;
            aload 2 /* methodName */
            aload 3 /* args */
            invokeinterface org.jruby.runtime.builtin.IRubyObject.callMethod:(Lorg/jruby/runtime/ThreadContext;Ljava/lang/String;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 3 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 2 // java.lang.String methodName
        end local 1 // org.jruby.runtime.builtin.IRubyObject receiver
        end local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/jruby/javasupport/JavaEmbedUtils$1;
            0    1     1    receiver  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     2  methodName  Ljava/lang/String;
            0    1     3        args  [Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
            Name  Flags
      receiver    
      methodName  
      args        

  public org.jruby.runtime.builtin.IRubyObject callMethod(org.jruby.runtime.builtin.IRubyObject, java.lang.String, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;Ljava/lang/String;[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.javasupport.JavaEmbedUtils$1 this
        start local 1 // org.jruby.runtime.builtin.IRubyObject receiver
        start local 2 // java.lang.String methodName
        start local 3 // org.jruby.runtime.builtin.IRubyObject[] args
        start local 4 // org.jruby.runtime.Block block
         0: .line 125
            aload 1 /* receiver */
            aload 1 /* receiver */
            invokeinterface org.jruby.runtime.builtin.IRubyObject.getRuntime:()Lorg/jruby/Ruby;
            invokevirtual org.jruby.Ruby.getCurrentContext:()Lorg/jruby/runtime/ThreadContext;
            aload 2 /* methodName */
            aload 3 /* args */
            aload 4 /* block */
            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 4 // org.jruby.runtime.Block block
        end local 3 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 2 // java.lang.String methodName
        end local 1 // org.jruby.runtime.builtin.IRubyObject receiver
        end local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/jruby/javasupport/JavaEmbedUtils$1;
            0    1     1    receiver  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     2  methodName  Ljava/lang/String;
            0    1     3        args  [Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     4       block  Lorg/jruby/runtime/Block;
    MethodParameters:
            Name  Flags
      receiver    
      methodName  
      args        
      block       

  public org.jruby.runtime.builtin.IRubyObject callSuper(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;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
        start local 1 // org.jruby.runtime.builtin.IRubyObject receiver
        start local 2 // org.jruby.runtime.builtin.IRubyObject[] args
         0: .line 129
            aload 1 /* receiver */
            invokeinterface org.jruby.runtime.builtin.IRubyObject.getRuntime:()Lorg/jruby/Ruby;
            invokevirtual org.jruby.Ruby.getCurrentContext:()Lorg/jruby/runtime/ThreadContext;
            aload 1 /* receiver */
            aload 2 /* args */
            getstatic org.jruby.runtime.Block.NULL_BLOCK:Lorg/jruby/runtime/Block;
            invokestatic org.jruby.runtime.Helpers.invokeSuper:(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 2 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 1 // org.jruby.runtime.builtin.IRubyObject receiver
        end local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/jruby/javasupport/JavaEmbedUtils$1;
            0    1     1  receiver  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     2      args  [Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
          Name  Flags
      receiver  
      args      

  public org.jruby.runtime.builtin.IRubyObject callSuper(org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block);
    descriptor: (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=4, locals=4, args_size=4
        start local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
        start local 1 // org.jruby.runtime.builtin.IRubyObject receiver
        start local 2 // org.jruby.runtime.builtin.IRubyObject[] args
        start local 3 // org.jruby.runtime.Block block
         0: .line 133
            aload 1 /* receiver */
            invokeinterface org.jruby.runtime.builtin.IRubyObject.getRuntime:()Lorg/jruby/Ruby;
            invokevirtual org.jruby.Ruby.getCurrentContext:()Lorg/jruby/runtime/ThreadContext;
            aload 1 /* receiver */
            aload 2 /* args */
            aload 3 /* block */
            invokestatic org.jruby.runtime.Helpers.invokeSuper:(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.Block block
        end local 2 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 1 // org.jruby.runtime.builtin.IRubyObject receiver
        end local 0 // org.jruby.javasupport.JavaEmbedUtils$1 this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/jruby/javasupport/JavaEmbedUtils$1;
            0    1     1  receiver  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     2      args  [Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     3     block  Lorg/jruby/runtime/Block;
    MethodParameters:
          Name  Flags
      receiver  
      args      
      block     
}
SourceFile: "JavaEmbedUtils.java"
EnclosingMethod: org.jruby.javasupport.JavaEmbedUtils.newObjectAdapter:()Lorg/jruby/RubyObjectAdapter;
NestHost: org.jruby.javasupport.JavaEmbedUtils
InnerClasses:
  org.jruby.javasupport.JavaEmbedUtils$1