/* call-seq: * iseq.arg_block => true or false * * Returns the index of the block (&x) arg. */ static VALUE iseq_arg_block(VALUE self) { rb_iseq_t *iseqdat = iseq_check(self); return INT2NUM(iseqdat->arg_block); }