diff options
| author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-05-17 04:04:49 +0000 |
|---|---|---|
| committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-05-17 04:04:49 +0000 |
| commit | d2bb834d4ade5bcc85276f0c172b80181fcbc6e9 (patch) | |
| tree | 9ae14607c9bb026840c99df62428e4e2275614e0 | |
| parent | ac325163b46e07a628db63c2aef8368718440138 (diff) | |
| download | ruby-d2bb834d4ade5bcc85276f0c172b80181fcbc6e9.tar.gz ruby-d2bb834d4ade5bcc85276f0c172b80181fcbc6e9.tar.xz ruby-d2bb834d4ade5bcc85276f0c172b80181fcbc6e9.zip | |
* iseq.c (ruby_iseq_disasm): fix to show post arg info.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12286 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | iseq.c | 5 |
2 files changed, 7 insertions, 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. @@ -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); |
