mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* vm_insnhelper.c (vm_invoke_block): iseq_t.type is VALUE.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27780 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
266a9ea5f3
commit
483ef372b1
1 changed files with 1 additions and 1 deletions
|
@ -913,7 +913,7 @@ vm_invoke_block(rb_thread_t *th, rb_control_frame_t *reg_cfp, rb_num_t num, rb_n
|
|||
const rb_block_t *block = GET_BLOCK_PTR();
|
||||
rb_iseq_t *iseq;
|
||||
int argc = (int)num;
|
||||
int type = GET_ISEQ()->local_iseq->type;
|
||||
VALUE type = GET_ISEQ()->local_iseq->type;
|
||||
|
||||
if ((type != ISEQ_TYPE_METHOD && type != ISEQ_TYPE_CLASS) || block == 0) {
|
||||
rb_vm_localjump_error("no block given (yield)", Qnil, 0);
|
||||
|
|
Loading…
Reference in a new issue