From 75d28f887089c8582b63a64cf5df1d0270f15cc1 Mon Sep 17 00:00:00 2001 From: ko1 Date: Tue, 1 May 2007 04:35:58 +0000 Subject: * yarvcore.h, compile.c (set_arguments): support post arguments. * test/ruby/test_method.rb: add tests for above. * test/ruby/test_proc.rb: ditto. * proc.c: fix an arity bug ([ruby-core:11029]). * vm.c, vm.h, insns.def, vm_dump.h: fix bmethod process. * vm.c: support block argument on block parameter. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12231 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- yarvcore.h | 1 + 1 file changed, 1 insertion(+) (limited to 'yarvcore.h') diff --git a/yarvcore.h b/yarvcore.h index 532b613c47..2257bee509 100644 --- a/yarvcore.h +++ b/yarvcore.h @@ -273,6 +273,7 @@ struct rb_iseq_struct { int arg_rest; int arg_block; int arg_opts; + int arg_post_len; VALUE *arg_opt_tbl; /* for stack overflow check */ -- cgit v1.2.3