public abstract class org.jruby.runtime.IRBlockBody extends org.jruby.runtime.ContextAwareBlockBody
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.jruby.runtime.IRBlockBody
  super_class: org.jruby.runtime.ContextAwareBlockBody
{
  protected final java.lang.String fileName;
    descriptor: Ljava/lang/String;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final int lineNumber;
    descriptor: I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final org.jruby.ir.IRClosure closure;
    descriptor: Lorg/jruby/ir/IRClosure;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  java.lang.ThreadLocal<org.jruby.EvalType> evalType;
    descriptor: Ljava/lang/ThreadLocal;
    flags: (0x0000) 
    Signature: Ljava/lang/ThreadLocal<Lorg/jruby/EvalType;>;

  public void <init>(org.jruby.ir.IRScope, org.jruby.runtime.Signature);
    descriptor: (Lorg/jruby/ir/IRScope;Lorg/jruby/runtime/Signature;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.jruby.runtime.IRBlockBody this
        start local 1 // org.jruby.ir.IRScope closure
        start local 2 // org.jruby.runtime.Signature signature
         0: .line 22
            aload 0 /* this */
            aload 1 /* closure */
            aload 2 /* signature */
            new java.lang.ThreadLocal
            dup
            invokespecial java.lang.ThreadLocal.<init>:()V
            invokespecial org.jruby.runtime.IRBlockBody.<init>:(Lorg/jruby/ir/IRScope;Lorg/jruby/runtime/Signature;Ljava/lang/ThreadLocal;)V
         1: .line 23
            return
        end local 2 // org.jruby.runtime.Signature signature
        end local 1 // org.jruby.ir.IRScope closure
        end local 0 // org.jruby.runtime.IRBlockBody this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/jruby/runtime/IRBlockBody;
            0    2     1    closure  Lorg/jruby/ir/IRScope;
            0    2     2  signature  Lorg/jruby/runtime/Signature;
    MethodParameters:
           Name  Flags
      closure    
      signature  

  void <init>(org.jruby.ir.IRScope, org.jruby.runtime.Signature, java.lang.ThreadLocal);
    descriptor: (Lorg/jruby/ir/IRScope;Lorg/jruby/runtime/Signature;Ljava/lang/ThreadLocal;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.jruby.runtime.IRBlockBody this
        start local 1 // org.jruby.ir.IRScope closure
        start local 2 // org.jruby.runtime.Signature signature
        start local 3 // java.lang.ThreadLocal evalType
         0: .line 26
            aload 0 /* this */
            aload 1 /* closure */
            invokevirtual org.jruby.ir.IRScope.getStaticScope:()Lorg/jruby/parser/StaticScope;
            aload 2 /* signature */
            invokespecial org.jruby.runtime.ContextAwareBlockBody.<init>:(Lorg/jruby/parser/StaticScope;Lorg/jruby/runtime/Signature;)V
         1: .line 27
            aload 0 /* this */
            aload 1 /* closure */
            checkcast org.jruby.ir.IRClosure
            putfield org.jruby.runtime.IRBlockBody.closure:Lorg/jruby/ir/IRClosure;
         2: .line 28
            aload 0 /* this */
            aload 1 /* closure */
            invokevirtual org.jruby.ir.IRScope.getFile:()Ljava/lang/String;
            putfield org.jruby.runtime.IRBlockBody.fileName:Ljava/lang/String;
         3: .line 29
            aload 0 /* this */
            aload 1 /* closure */
            invokevirtual org.jruby.ir.IRScope.getLine:()I
            putfield org.jruby.runtime.IRBlockBody.lineNumber:I
         4: .line 30
            aload 0 /* this */
            aload 3 /* evalType */
            putfield org.jruby.runtime.IRBlockBody.evalType:Ljava/lang/ThreadLocal;
         5: .line 31
            return
        end local 3 // java.lang.ThreadLocal evalType
        end local 2 // org.jruby.runtime.Signature signature
        end local 1 // org.jruby.ir.IRScope closure
        end local 0 // org.jruby.runtime.IRBlockBody this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lorg/jruby/runtime/IRBlockBody;
            0    6     1    closure  Lorg/jruby/ir/IRScope;
            0    6     2  signature  Lorg/jruby/runtime/Signature;
            0    6     3   evalType  Ljava/lang/ThreadLocal;
    MethodParameters:
           Name  Flags
      closure    
      signature  
      evalType   

  public final org.jruby.EvalType getEvalType();
    descriptor: ()Lorg/jruby/EvalType;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // org.jruby.runtime.IRBlockBody this
         0: .line 34
            aload 0 /* this */
            getfield org.jruby.runtime.IRBlockBody.evalType:Ljava/lang/ThreadLocal;
            invokevirtual java.lang.ThreadLocal.get:()Ljava/lang/Object;
            checkcast org.jruby.EvalType
            astore 1 /* type */
        start local 1 // org.jruby.EvalType type
         1: .line 35
            aload 1 /* type */
            ifnonnull 2
            getstatic org.jruby.EvalType.NONE:Lorg/jruby/EvalType;
            goto 3
      StackMap locals: org.jruby.EvalType
      StackMap stack:
         2: aload 1 /* type */
      StackMap locals:
      StackMap stack: org.jruby.EvalType
         3: areturn
        end local 1 // org.jruby.EvalType type
        end local 0 // org.jruby.runtime.IRBlockBody this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/jruby/runtime/IRBlockBody;
            1    4     1  type  Lorg/jruby/EvalType;

  public void setEvalType(org.jruby.EvalType);
    descriptor: (Lorg/jruby/EvalType;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.runtime.IRBlockBody this
        start local 1 // org.jruby.EvalType type
         0: .line 39
            aload 1 /* type */
            ifnull 1
            aload 1 /* type */
            getstatic org.jruby.EvalType.NONE:Lorg/jruby/EvalType;
            if_acmpne 3
         1: .line 40
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.runtime.IRBlockBody.evalType:Ljava/lang/ThreadLocal;
            invokevirtual java.lang.ThreadLocal.remove:()V
         2: .line 41
            goto 4
         3: .line 42
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.runtime.IRBlockBody.evalType:Ljava/lang/ThreadLocal;
            aload 1 /* type */
            invokevirtual java.lang.ThreadLocal.set:(Ljava/lang/Object;)V
         4: .line 44
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.jruby.EvalType type
        end local 0 // org.jruby.runtime.IRBlockBody this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/jruby/runtime/IRBlockBody;
            0    5     1  type  Lorg/jruby/EvalType;
    MethodParameters:
      Name  Flags
      type  final

  public abstract boolean canCallDirect();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public org.jruby.runtime.builtin.IRubyObject call(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.runtime.IRBlockBody this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.Block block
         0: .line 51
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* block */
            getstatic org.jruby.runtime.builtin.IRubyObject.NULL_ARRAY:[Lorg/jruby/runtime/builtin/IRubyObject;
            getstatic org.jruby.runtime.Block.NULL_BLOCK:Lorg/jruby/runtime/Block;
            invokevirtual org.jruby.runtime.IRBlockBody.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;[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.runtime.IRBlockBody this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/runtime/IRBlockBody;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2    block  Lorg/jruby/runtime/Block;
    MethodParameters:
         Name  Flags
      context  
      block    

  public org.jruby.runtime.builtin.IRubyObject call(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block, org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=4
        start local 0 // org.jruby.runtime.IRBlockBody this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.Block block
        start local 3 // org.jruby.runtime.builtin.IRubyObject arg0
         0: .line 56
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* block */
            iconst_1
            anewarray org.jruby.runtime.builtin.IRubyObject
            dup
            iconst_0
            aload 3 /* arg0 */
            aastore
            getstatic org.jruby.runtime.Block.NULL_BLOCK:Lorg/jruby/runtime/Block;
            invokevirtual org.jruby.runtime.IRBlockBody.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 3 // org.jruby.runtime.builtin.IRubyObject arg0
        end local 2 // org.jruby.runtime.Block block
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.runtime.IRBlockBody this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/runtime/IRBlockBody;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2    block  Lorg/jruby/runtime/Block;
            0    1     3     arg0  Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
         Name  Flags
      context  
      block    
      arg0     

  public org.jruby.runtime.builtin.IRubyObject call(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=5
        start local 0 // org.jruby.runtime.IRBlockBody this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.Block block
        start local 3 // org.jruby.runtime.builtin.IRubyObject arg0
        start local 4 // org.jruby.runtime.builtin.IRubyObject arg1
         0: .line 61
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* block */
            iconst_2
            anewarray org.jruby.runtime.builtin.IRubyObject
            dup
            iconst_0
            aload 3 /* arg0 */
            aastore
            dup
            iconst_1
            aload 4 /* arg1 */
            aastore
            getstatic org.jruby.runtime.Block.NULL_BLOCK:Lorg/jruby/runtime/Block;
            invokevirtual org.jruby.runtime.IRBlockBody.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 4 // org.jruby.runtime.builtin.IRubyObject arg1
        end local 3 // org.jruby.runtime.builtin.IRubyObject arg0
        end local 2 // org.jruby.runtime.Block block
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.runtime.IRBlockBody this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/runtime/IRBlockBody;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2    block  Lorg/jruby/runtime/Block;
            0    1     3     arg0  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     4     arg1  Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
         Name  Flags
      context  
      block    
      arg0     
      arg1     

  public org.jruby.runtime.builtin.IRubyObject call(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;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=7, locals=6, args_size=6
        start local 0 // org.jruby.runtime.IRBlockBody this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.Block block
        start local 3 // org.jruby.runtime.builtin.IRubyObject arg0
        start local 4 // org.jruby.runtime.builtin.IRubyObject arg1
        start local 5 // org.jruby.runtime.builtin.IRubyObject arg2
         0: .line 66
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* block */
            iconst_3
            anewarray org.jruby.runtime.builtin.IRubyObject
            dup
            iconst_0
            aload 3 /* arg0 */
            aastore
            dup
            iconst_1
            aload 4 /* arg1 */
            aastore
            dup
            iconst_2
            aload 5 /* arg2 */
            aastore
            getstatic org.jruby.runtime.Block.NULL_BLOCK:Lorg/jruby/runtime/Block;
            invokevirtual org.jruby.runtime.IRBlockBody.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 5 // org.jruby.runtime.builtin.IRubyObject arg2
        end local 4 // org.jruby.runtime.builtin.IRubyObject arg1
        end local 3 // org.jruby.runtime.builtin.IRubyObject arg0
        end local 2 // org.jruby.runtime.Block block
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.runtime.IRBlockBody this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/runtime/IRBlockBody;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2    block  Lorg/jruby/runtime/Block;
            0    1     3     arg0  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     4     arg1  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     5     arg2  Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
         Name  Flags
      context  
      block    
      arg0     
      arg1     
      arg2     

  public org.jruby.runtime.builtin.IRubyObject call(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block, org.jruby.runtime.builtin.IRubyObject[]);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;[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.runtime.IRBlockBody this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.Block block
        start local 3 // org.jruby.runtime.builtin.IRubyObject[] args
         0: .line 71
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* block */
            aload 3 /* args */
            getstatic org.jruby.runtime.Block.NULL_BLOCK:Lorg/jruby/runtime/Block;
            invokevirtual org.jruby.runtime.IRBlockBody.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 3 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 2 // org.jruby.runtime.Block block
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.runtime.IRBlockBody this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/runtime/IRBlockBody;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2    block  Lorg/jruby/runtime/Block;
            0    1     3     args  [Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
         Name  Flags
      context  
      block    
      args     

  public org.jruby.runtime.builtin.IRubyObject call(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=5, args_size=5
        start local 0 // org.jruby.runtime.IRBlockBody this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.Block block
        start local 3 // org.jruby.runtime.builtin.IRubyObject[] args
        start local 4 // org.jruby.runtime.Block blockArg
         0: .line 76
            aload 0 /* this */
            invokevirtual org.jruby.runtime.IRBlockBody.canCallDirect:()Z
            ifeq 2
         1: .line 77
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* block */
            aload 3 /* args */
            aload 4 /* blockArg */
            invokevirtual org.jruby.runtime.IRBlockBody.callDirect:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
         2: .line 79
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* block */
            getstatic org.jruby.runtime.Block$Type.PROC:Lorg/jruby/runtime/Block$Type;
            aload 0 /* this */
            aload 1 /* context */
            aload 3 /* args */
            aload 2 /* block */
            getfield org.jruby.runtime.Block.type:Lorg/jruby/runtime/Block$Type;
            invokevirtual org.jruby.runtime.IRBlockBody.prepareArgumentsForCall:(Lorg/jruby/runtime/ThreadContext;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block$Type;)[Lorg/jruby/runtime/builtin/IRubyObject;
            aconst_null
            aload 4 /* blockArg */
            invokevirtual org.jruby.runtime.IRBlockBody.commonYieldPath:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;Lorg/jruby/runtime/Block$Type;[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 blockArg
        end local 3 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 2 // org.jruby.runtime.Block block
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.runtime.IRBlockBody this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/jruby/runtime/IRBlockBody;
            0    3     1   context  Lorg/jruby/runtime/ThreadContext;
            0    3     2     block  Lorg/jruby/runtime/Block;
            0    3     3      args  [Lorg/jruby/runtime/builtin/IRubyObject;
            0    3     4  blockArg  Lorg/jruby/runtime/Block;
    MethodParameters:
          Name  Flags
      context   
      block     
      args      
      blockArg  

  public org.jruby.runtime.builtin.IRubyObject yieldSpecific(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=7, locals=4, args_size=3
        start local 0 // org.jruby.runtime.IRBlockBody this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.Block block
         0: .line 84
            aload 0 /* this */
            invokevirtual org.jruby.runtime.IRBlockBody.canCallDirect:()Z
            ifeq 2
         1: .line 85
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* block */
            aconst_null
            aconst_null
            invokevirtual org.jruby.runtime.IRBlockBody.yieldDirect:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
         2: .line 87
      StackMap locals:
      StackMap stack:
            getstatic org.jruby.runtime.builtin.IRubyObject.NULL_ARRAY:[Lorg/jruby/runtime/builtin/IRubyObject;
            astore 3 /* args */
        start local 3 // org.jruby.runtime.builtin.IRubyObject[] args
         3: .line 88
            aload 2 /* block */
            getfield org.jruby.runtime.Block.type:Lorg/jruby/runtime/Block$Type;
            getstatic org.jruby.runtime.Block$Type.LAMBDA:Lorg/jruby/runtime/Block$Type;
            if_acmpne 4
            aload 0 /* this */
            getfield org.jruby.runtime.IRBlockBody.signature:Lorg/jruby/runtime/Signature;
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            aload 3 /* args */
            invokevirtual org.jruby.runtime.Signature.checkArity:(Lorg/jruby/Ruby;[Lorg/jruby/runtime/builtin/IRubyObject;)V
         4: .line 89
      StackMap locals: org.jruby.runtime.builtin.IRubyObject[]
      StackMap stack:
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* block */
            getstatic org.jruby.runtime.Block$Type.NORMAL:Lorg/jruby/runtime/Block$Type;
            aload 3 /* args */
            aconst_null
            getstatic org.jruby.runtime.Block.NULL_BLOCK:Lorg/jruby/runtime/Block;
            invokevirtual org.jruby.runtime.IRBlockBody.commonYieldPath:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;Lorg/jruby/runtime/Block$Type;[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[] args
        end local 2 // org.jruby.runtime.Block block
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.runtime.IRBlockBody this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lorg/jruby/runtime/IRBlockBody;
            0    5     1  context  Lorg/jruby/runtime/ThreadContext;
            0    5     2    block  Lorg/jruby/runtime/Block;
            3    5     3     args  [Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
         Name  Flags
      context  
      block    

  public org.jruby.runtime.builtin.IRubyObject yieldSpecific(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block, org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;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.runtime.IRBlockBody this
         0: .line 112
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\trestricted identifier yield not allowed here - method calls need to be qualified\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.jruby.runtime.IRBlockBody this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/runtime/IRBlockBody;
    MethodParameters:
         Name  Flags
      context  
      block    
      arg0     

  private org.jruby.runtime.builtin.IRubyObject yieldSpecificMultiArgsCommon(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block, org.jruby.runtime.builtin.IRubyObject[]);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0082) ACC_PRIVATE, ACC_VARARGS
    Code:
      stack=7, locals=5, args_size=4
        start local 0 // org.jruby.runtime.IRBlockBody this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.Block block
        start local 3 // org.jruby.runtime.builtin.IRubyObject[] args
         0: .line 118
            aload 0 /* this */
            getfield org.jruby.runtime.IRBlockBody.signature:Lorg/jruby/runtime/Signature;
            invokevirtual org.jruby.runtime.Signature.arityValue:()I
            istore 4 /* blockArity */
        start local 4 // int blockArity
         1: .line 119
            iload 4 /* blockArity */
            iconst_1
            if_icmpne 3
         2: .line 120
            iconst_1
            anewarray org.jruby.runtime.builtin.IRubyObject
            dup
            iconst_0
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            aload 3 /* args */
            invokestatic org.jruby.RubyArray.newArrayMayCopy:(Lorg/jruby/Ruby;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/RubyArray;
            aastore
            astore 3 /* args */
         3: .line 123
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.runtime.IRBlockBody.canCallDirect:()Z
            ifeq 4
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* block */
            aload 3 /* args */
            aconst_null
            invokevirtual org.jruby.runtime.IRBlockBody.yieldDirect:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
         4: .line 125
      StackMap locals:
      StackMap stack:
            iload 4 /* blockArity */
            ifne 6
         5: .line 126
            getstatic org.jruby.runtime.builtin.IRubyObject.NULL_ARRAY:[Lorg/jruby/runtime/builtin/IRubyObject;
            astore 3 /* args */
         6: .line 128
      StackMap locals:
      StackMap stack:
            aload 2 /* block */
            getfield org.jruby.runtime.Block.type:Lorg/jruby/runtime/Block$Type;
            getstatic org.jruby.runtime.Block$Type.LAMBDA:Lorg/jruby/runtime/Block$Type;
            if_acmpne 7
            aload 0 /* this */
            getfield org.jruby.runtime.IRBlockBody.signature:Lorg/jruby/runtime/Signature;
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            aload 3 /* args */
            invokevirtual org.jruby.runtime.Signature.checkArity:(Lorg/jruby/Ruby;[Lorg/jruby/runtime/builtin/IRubyObject;)V
         7: .line 130
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* block */
            getstatic org.jruby.runtime.Block$Type.NORMAL:Lorg/jruby/runtime/Block$Type;
            aload 3 /* args */
            aconst_null
            getstatic org.jruby.runtime.Block.NULL_BLOCK:Lorg/jruby/runtime/Block;
            invokevirtual org.jruby.runtime.IRBlockBody.commonYieldPath:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;Lorg/jruby/runtime/Block$Type;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 4 // int blockArity
        end local 3 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 2 // org.jruby.runtime.Block block
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.runtime.IRBlockBody this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0        this  Lorg/jruby/runtime/IRBlockBody;
            0    8     1     context  Lorg/jruby/runtime/ThreadContext;
            0    8     2       block  Lorg/jruby/runtime/Block;
            0    8     3        args  [Lorg/jruby/runtime/builtin/IRubyObject;
            1    8     4  blockArity  I
    MethodParameters:
         Name  Flags
      context  
      block    
      args     

  public org.jruby.runtime.builtin.IRubyObject yieldSpecific(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=5
        start local 0 // org.jruby.runtime.IRBlockBody this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.Block block
        start local 3 // org.jruby.runtime.builtin.IRubyObject arg0
        start local 4 // org.jruby.runtime.builtin.IRubyObject arg1
         0: .line 135
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* block */
            iconst_2
            anewarray org.jruby.runtime.builtin.IRubyObject
            dup
            iconst_0
            aload 3 /* arg0 */
            aastore
            dup
            iconst_1
            aload 4 /* arg1 */
            aastore
            invokevirtual org.jruby.runtime.IRBlockBody.yieldSpecificMultiArgsCommon:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 4 // org.jruby.runtime.builtin.IRubyObject arg1
        end local 3 // org.jruby.runtime.builtin.IRubyObject arg0
        end local 2 // org.jruby.runtime.Block block
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.runtime.IRBlockBody this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/runtime/IRBlockBody;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2    block  Lorg/jruby/runtime/Block;
            0    1     3     arg0  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     4     arg1  Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
         Name  Flags
      context  
      block    
      arg0     
      arg1     

  public org.jruby.runtime.builtin.IRubyObject yieldSpecific(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;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=7, locals=6, args_size=6
        start local 0 // org.jruby.runtime.IRBlockBody this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.Block block
        start local 3 // org.jruby.runtime.builtin.IRubyObject arg0
        start local 4 // org.jruby.runtime.builtin.IRubyObject arg1
        start local 5 // org.jruby.runtime.builtin.IRubyObject arg2
         0: .line 140
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* block */
            iconst_3
            anewarray org.jruby.runtime.builtin.IRubyObject
            dup
            iconst_0
            aload 3 /* arg0 */
            aastore
            dup
            iconst_1
            aload 4 /* arg1 */
            aastore
            dup
            iconst_2
            aload 5 /* arg2 */
            aastore
            invokevirtual org.jruby.runtime.IRBlockBody.yieldSpecificMultiArgsCommon:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 5 // org.jruby.runtime.builtin.IRubyObject arg2
        end local 4 // org.jruby.runtime.builtin.IRubyObject arg1
        end local 3 // org.jruby.runtime.builtin.IRubyObject arg0
        end local 2 // org.jruby.runtime.Block block
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.runtime.IRBlockBody this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/runtime/IRBlockBody;
            0    1     1  context  Lorg/jruby/runtime/ThreadContext;
            0    1     2    block  Lorg/jruby/runtime/Block;
            0    1     3     arg0  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     4     arg1  Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     5     arg2  Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
         Name  Flags
      context  
      block    
      arg0     
      arg1     
      arg2     

  public static org.jruby.runtime.builtin.IRubyObject[] toAry(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: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.jruby.runtime.ThreadContext context
        start local 1 // org.jruby.runtime.builtin.IRubyObject value
         0: .line 144
            aload 0 /* context */
            aload 1 /* value */
            invokestatic org.jruby.runtime.Helpers.aryToAry:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            astore 2 /* ary */
        start local 2 // org.jruby.runtime.builtin.IRubyObject ary
         1: .line 146
            aload 2 /* ary */
            instanceof org.jruby.RubyArray
            ifeq 2
            aload 2 /* ary */
            checkcast org.jruby.RubyArray
            invokevirtual org.jruby.RubyArray.toJavaArray:()[Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
         2: .line 148
      StackMap locals: org.jruby.runtime.builtin.IRubyObject
      StackMap stack:
            aload 2 /* ary */
            aload 0 /* context */
            getfield org.jruby.runtime.ThreadContext.nil:Lorg/jruby/runtime/builtin/IRubyObject;
            if_acmpne 3
            iconst_1
            anewarray org.jruby.runtime.builtin.IRubyObject
            dup
            iconst_0
            aload 1 /* value */
            aastore
            areturn
         3: .line 150
      StackMap locals:
      StackMap stack:
            aload 0 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            new java.lang.StringBuilder
            dup
            aload 1 /* value */
            invokeinterface org.jruby.runtime.builtin.IRubyObject.getType:()Lorg/jruby/RubyClass;
            invokevirtual org.jruby.RubyClass.getName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "#to_ary should return Array"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual org.jruby.Ruby.newTypeError:(Ljava/lang/String;)Lorg/jruby/exceptions/RaiseException;
            athrow
        end local 2 // org.jruby.runtime.builtin.IRubyObject ary
        end local 1 // org.jruby.runtime.builtin.IRubyObject value
        end local 0 // org.jruby.runtime.ThreadContext context
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0  context  Lorg/jruby/runtime/ThreadContext;
            0    4     1    value  Lorg/jruby/runtime/builtin/IRubyObject;
            1    4     2      ary  Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
         Name  Flags
      context  
      value    

  protected org.jruby.runtime.builtin.IRubyObject doYieldLambda(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block, org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=5, args_size=4
        start local 0 // org.jruby.runtime.IRBlockBody this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.Block block
        start local 3 // org.jruby.runtime.builtin.IRubyObject value
         0: .line 157
            aload 3 /* value */
            ifnonnull 3
         1: .line 158
            getstatic org.jruby.runtime.builtin.IRubyObject.NULL_ARRAY:[Lorg/jruby/runtime/builtin/IRubyObject;
            astore 4 /* args */
        start local 4 // org.jruby.runtime.builtin.IRubyObject[] args
         2: .line 159
            goto 7
        end local 4 // org.jruby.runtime.builtin.IRubyObject[] args
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            getfield org.jruby.runtime.IRBlockBody.signature:Lorg/jruby/runtime/Signature;
            invokevirtual org.jruby.runtime.Signature.required:()I
            iconst_1
            if_icmpeq 4
            aload 0 /* this */
            getfield org.jruby.runtime.IRBlockBody.signature:Lorg/jruby/runtime/Signature;
            invokevirtual org.jruby.runtime.Signature.arityValue:()I
            iconst_m1
            if_icmpne 6
         4: .line 160
      StackMap locals:
      StackMap stack:
            iconst_1
            anewarray org.jruby.runtime.builtin.IRubyObject
            dup
            iconst_0
            aload 3 /* value */
            aastore
            astore 4 /* args */
        start local 4 // org.jruby.runtime.builtin.IRubyObject[] args
         5: .line 161
            goto 7
        end local 4 // org.jruby.runtime.builtin.IRubyObject[] args
         6: .line 162
      StackMap locals:
      StackMap stack:
            aload 1 /* context */
            aload 3 /* value */
            invokestatic org.jruby.runtime.IRBlockBody.toAry:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;)[Lorg/jruby/runtime/builtin/IRubyObject;
            astore 4 /* args */
        start local 4 // org.jruby.runtime.builtin.IRubyObject[] args
         7: .line 165
      StackMap locals: org.jruby.runtime.builtin.IRubyObject[]
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.runtime.IRBlockBody.signature:Lorg/jruby/runtime/Signature;
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            aload 4 /* args */
            invokevirtual org.jruby.runtime.Signature.checkArity:(Lorg/jruby/Ruby;[Lorg/jruby/runtime/builtin/IRubyObject;)V
         8: .line 167
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* block */
            getstatic org.jruby.runtime.Block$Type.NORMAL:Lorg/jruby/runtime/Block$Type;
            aload 4 /* args */
            aconst_null
            getstatic org.jruby.runtime.Block.NULL_BLOCK:Lorg/jruby/runtime/Block;
            invokevirtual org.jruby.runtime.IRBlockBody.commonYieldPath:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;Lorg/jruby/runtime/Block$Type;[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[] args
        end local 3 // org.jruby.runtime.builtin.IRubyObject value
        end local 2 // org.jruby.runtime.Block block
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.runtime.IRBlockBody this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lorg/jruby/runtime/IRBlockBody;
            0    9     1  context  Lorg/jruby/runtime/ThreadContext;
            0    9     2    block  Lorg/jruby/runtime/Block;
            0    9     3    value  Lorg/jruby/runtime/builtin/IRubyObject;
            2    3     4     args  [Lorg/jruby/runtime/builtin/IRubyObject;
            5    6     4     args  [Lorg/jruby/runtime/builtin/IRubyObject;
            7    9     4     args  [Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
         Name  Flags
      context  
      block    
      value    

  public org.jruby.runtime.builtin.IRubyObject doYield(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block, org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=6, args_size=4
        start local 0 // org.jruby.runtime.IRBlockBody this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.Block block
        start local 3 // org.jruby.runtime.builtin.IRubyObject value
         0: .line 172
            aload 2 /* block */
            getfield org.jruby.runtime.Block.type:Lorg/jruby/runtime/Block$Type;
            getstatic org.jruby.runtime.Block$Type.LAMBDA:Lorg/jruby/runtime/Block$Type;
            if_acmpne 1
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* block */
            aload 3 /* value */
            invokevirtual org.jruby.runtime.IRBlockBody.doYieldLambda:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
         1: .line 174
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.runtime.IRBlockBody.signature:Lorg/jruby/runtime/Signature;
            invokevirtual org.jruby.runtime.Signature.arityValue:()I
            istore 4 /* blockArity */
        start local 4 // int blockArity
         2: .line 177
            aload 3 /* value */
            ifnonnull 5
         3: .line 178
            getstatic org.jruby.runtime.builtin.IRubyObject.NULL_ARRAY:[Lorg/jruby/runtime/builtin/IRubyObject;
            astore 5 /* args */
        start local 5 // org.jruby.runtime.builtin.IRubyObject[] args
         4: .line 179
            goto 9
        end local 5 // org.jruby.runtime.builtin.IRubyObject[] args
      StackMap locals: int
      StackMap stack:
         5: aload 0 /* this */
            getfield org.jruby.runtime.IRBlockBody.signature:Lorg/jruby/runtime/Signature;
            invokevirtual org.jruby.runtime.Signature.hasKwargs:()Z
            ifne 8
            iload 4 /* blockArity */
            iconst_m1
            if_icmplt 8
            iload 4 /* blockArity */
            iconst_1
            if_icmpgt 8
         6: .line 180
            iconst_1
            anewarray org.jruby.runtime.builtin.IRubyObject
            dup
            iconst_0
            aload 3 /* value */
            aastore
            astore 5 /* args */
        start local 5 // org.jruby.runtime.builtin.IRubyObject[] args
         7: .line 181
            goto 9
        end local 5 // org.jruby.runtime.builtin.IRubyObject[] args
         8: .line 182
      StackMap locals:
      StackMap stack:
            aload 1 /* context */
            aload 3 /* value */
            invokestatic org.jruby.runtime.IRBlockBody.toAry:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;)[Lorg/jruby/runtime/builtin/IRubyObject;
            astore 5 /* args */
        start local 5 // org.jruby.runtime.builtin.IRubyObject[] args
         9: .line 185
      StackMap locals: org.jruby.runtime.builtin.IRubyObject[]
      StackMap stack:
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* block */
            getstatic org.jruby.runtime.Block$Type.NORMAL:Lorg/jruby/runtime/Block$Type;
            aload 5 /* args */
            aconst_null
            getstatic org.jruby.runtime.Block.NULL_BLOCK:Lorg/jruby/runtime/Block;
            invokevirtual org.jruby.runtime.IRBlockBody.commonYieldPath:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;Lorg/jruby/runtime/Block$Type;[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.builtin.IRubyObject[] args
        end local 4 // int blockArity
        end local 3 // org.jruby.runtime.builtin.IRubyObject value
        end local 2 // org.jruby.runtime.Block block
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.runtime.IRBlockBody this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        this  Lorg/jruby/runtime/IRBlockBody;
            0   10     1     context  Lorg/jruby/runtime/ThreadContext;
            0   10     2       block  Lorg/jruby/runtime/Block;
            0   10     3       value  Lorg/jruby/runtime/builtin/IRubyObject;
            2   10     4  blockArity  I
            4    5     5        args  [Lorg/jruby/runtime/builtin/IRubyObject;
            7    8     5        args  [Lorg/jruby/runtime/builtin/IRubyObject;
            9   10     5        args  [Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
         Name  Flags
      context  
      block    
      value    

  public org.jruby.runtime.builtin.IRubyObject doYield(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.builtin.IRubyObject);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=5
        start local 0 // org.jruby.runtime.IRBlockBody this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.Block block
        start local 3 // org.jruby.runtime.builtin.IRubyObject[] args
        start local 4 // org.jruby.runtime.builtin.IRubyObject self
         0: .line 190
            aload 2 /* block */
            getfield org.jruby.runtime.Block.type:Lorg/jruby/runtime/Block$Type;
            getstatic org.jruby.runtime.Block$Type.LAMBDA:Lorg/jruby/runtime/Block$Type;
            if_acmpne 1
            aload 0 /* this */
            getfield org.jruby.runtime.IRBlockBody.signature:Lorg/jruby/runtime/Signature;
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            aload 3 /* args */
            invokevirtual org.jruby.runtime.Signature.checkArity:(Lorg/jruby/Ruby;[Lorg/jruby/runtime/builtin/IRubyObject;)V
         1: .line 192
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* block */
            getstatic org.jruby.runtime.Block$Type.NORMAL:Lorg/jruby/runtime/Block$Type;
            aload 3 /* args */
            aload 4 /* self */
            getstatic org.jruby.runtime.Block.NULL_BLOCK:Lorg/jruby/runtime/Block;
            invokevirtual org.jruby.runtime.IRBlockBody.commonYieldPath:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;Lorg/jruby/runtime/Block$Type;[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 self
        end local 3 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 2 // org.jruby.runtime.Block block
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.runtime.IRBlockBody this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/jruby/runtime/IRBlockBody;
            0    2     1  context  Lorg/jruby/runtime/ThreadContext;
            0    2     2    block  Lorg/jruby/runtime/Block;
            0    2     3     args  [Lorg/jruby/runtime/builtin/IRubyObject;
            0    2     4     self  Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
         Name  Flags
      context  
      block    
      args     
      self     

  protected abstract org.jruby.runtime.builtin.IRubyObject commonYieldPath(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block, org.jruby.runtime.Block$Type, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/Block;Lorg/jruby/runtime/Block$Type;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
          Name  Flags
      context   
      block     
      type      
      args      
      self      
      blockArg  

  static void postYield(org.jruby.runtime.ThreadContext, org.jruby.ir.interpreter.InterpreterContext, org.jruby.runtime.Binding, org.jruby.runtime.Visibility, org.jruby.runtime.Frame);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/ir/interpreter/InterpreterContext;Lorg/jruby/runtime/Binding;Lorg/jruby/runtime/Visibility;Lorg/jruby/runtime/Frame;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=5, args_size=5
        start local 0 // org.jruby.runtime.ThreadContext context
        start local 1 // org.jruby.ir.interpreter.InterpreterContext ic
        start local 2 // org.jruby.runtime.Binding binding
        start local 3 // org.jruby.runtime.Visibility oldVis
        start local 4 // org.jruby.runtime.Frame prevFrame
         0: .line 201
            aload 2 /* binding */
            invokevirtual org.jruby.runtime.Binding.getFrame:()Lorg/jruby/runtime/Frame;
            aload 3 /* oldVis */
            invokevirtual org.jruby.runtime.Frame.setVisibility:(Lorg/jruby/runtime/Visibility;)V
         1: .line 202
            aload 1 /* ic */
            invokevirtual org.jruby.ir.interpreter.InterpreterContext.popDynScope:()Z
            ifeq 4
         2: .line 203
            aload 0 /* context */
            aload 2 /* binding */
            aload 4 /* prevFrame */
            invokevirtual org.jruby.runtime.ThreadContext.postYield:(Lorg/jruby/runtime/Binding;Lorg/jruby/runtime/Frame;)V
         3: .line 204
            goto 5
         4: .line 205
      StackMap locals:
      StackMap stack:
            aload 0 /* context */
            aload 4 /* prevFrame */
            invokevirtual org.jruby.runtime.ThreadContext.postYieldNoScope:(Lorg/jruby/runtime/Frame;)V
         5: .line 207
      StackMap locals:
      StackMap stack:
            return
        end local 4 // org.jruby.runtime.Frame prevFrame
        end local 3 // org.jruby.runtime.Visibility oldVis
        end local 2 // org.jruby.runtime.Binding binding
        end local 1 // org.jruby.ir.interpreter.InterpreterContext ic
        end local 0 // org.jruby.runtime.ThreadContext context
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0    context  Lorg/jruby/runtime/ThreadContext;
            0    6     1         ic  Lorg/jruby/ir/interpreter/InterpreterContext;
            0    6     2    binding  Lorg/jruby/runtime/Binding;
            0    6     3     oldVis  Lorg/jruby/runtime/Visibility;
            0    6     4  prevFrame  Lorg/jruby/runtime/Frame;
    MethodParameters:
           Name  Flags
      context    
      ic         
      binding    
      oldVis     
      prevFrame  

  public org.jruby.ir.IRClosure getScope();
    descriptor: ()Lorg/jruby/ir/IRClosure;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.runtime.IRBlockBody this
         0: .line 210
            aload 0 /* this */
            getfield org.jruby.runtime.IRBlockBody.closure:Lorg/jruby/ir/IRClosure;
            areturn
        end local 0 // org.jruby.runtime.IRBlockBody this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/runtime/IRBlockBody;

  public java.lang.String getFile();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.runtime.IRBlockBody this
         0: .line 215
            aload 0 /* this */
            getfield org.jruby.runtime.IRBlockBody.fileName:Ljava/lang/String;
            areturn
        end local 0 // org.jruby.runtime.IRBlockBody this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/runtime/IRBlockBody;

  public int getLine();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.runtime.IRBlockBody this
         0: .line 220
            aload 0 /* this */
            getfield org.jruby.runtime.IRBlockBody.lineNumber:I
            ireturn
        end local 0 // org.jruby.runtime.IRBlockBody this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/runtime/IRBlockBody;
}
SourceFile: "IRBlockBody.java"
InnerClasses:
  public final Type = org.jruby.runtime.Block$Type of org.jruby.runtime.Block