From 92b4a05e07de480fabc70dae35c4b6dd2b1f42c9 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 29 Nov 2013 08:06:19 +0000 Subject: vm_eval.c: rb_yield_block * vm_eval.c (rb_yield_block): yield block with rb_block_call_func arguments. * range.c (range_each): use rb_yield_block. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43912 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_eval.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'vm_eval.c') diff --git a/vm_eval.c b/vm_eval.c index 2dcbd451c6..6ac0f4976b 100644 --- a/vm_eval.c +++ b/vm_eval.c @@ -14,6 +14,7 @@ static inline VALUE method_missing(VALUE obj, ID id, int argc, const VALUE *argv, int call_status); static inline VALUE vm_yield_with_cref(rb_thread_t *th, int argc, const VALUE *argv, const NODE *cref); static inline VALUE vm_yield(rb_thread_t *th, int argc, const VALUE *argv); +static inline VALUE vm_yield_with_block(rb_thread_t *th, int argc, const VALUE *argv, const rb_block_t *blockargptr); static NODE *vm_cref_push(rb_thread_t *th, VALUE klass, int noex, rb_block_t *blockptr); static VALUE vm_exec(rb_thread_t *th); static void vm_set_eval_stack(rb_thread_t * th, VALUE iseqval, const NODE *cref, rb_block_t *base_block); @@ -988,6 +989,16 @@ rb_yield_splat(VALUE values) return v; } +VALUE +rb_yield_block(VALUE val, VALUE arg, int argc, const VALUE *argv, VALUE blockarg) +{ + const rb_block_t *blockptr = 0; + if (!NIL_P(blockarg)) { + rb_notimplement(); + } + return vm_yield_with_block(GET_THREAD(), argc, argv, blockptr); +} + static VALUE loop_i(void) { -- cgit v1.2.3