mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* iseq.c (ruby_iseq_disasm): fix to show post arg info.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12286 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
84fbcb9694
commit
8206839659
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
Thu May 17 13:01:52 2007 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* iseq.c (ruby_iseq_disasm): fix to show post arg info.
|
||||
|
||||
Thu May 17 12:56:52 2007 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* debug.c (ruby_debug_node): fix to show node line.
|
||||
|
|
5
iseq.c
5
iseq.c
|
@ -752,9 +752,10 @@ ruby_iseq_disasm(VALUE self)
|
|||
if (tbl) {
|
||||
snprintf(buff, sizeof(buff),
|
||||
"local table (size: %d, argc: %d "
|
||||
"[opts: %d, rest: %d, block: %d] %s)\n",
|
||||
"[opts: %d, rest: %d, post: %d, block: %d] %s)\n",
|
||||
iseqdat->local_size, iseqdat->argc,
|
||||
iseqdat->arg_opts, iseqdat->arg_rest, iseqdat->arg_block,
|
||||
iseqdat->arg_opts, iseqdat->arg_rest,
|
||||
iseqdat->arg_post_len, iseqdat->arg_block,
|
||||
iseqdat->arg_simple ? "s" : "c");
|
||||
rb_str_cat2(str, buff);
|
||||
|
||||
|
|
Loading…
Reference in a new issue