mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
iseq.c: keyword arguments
* iseq.c (rb_iseq_disasm): show keyword arguments info, in format "keyword: NUM@LIDX". git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39617 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5c1af05ef5
commit
5f5d915512
1 changed files with 2 additions and 1 deletions
3
iseq.c
3
iseq.c
|
@ -1391,10 +1391,11 @@ rb_iseq_disasm(VALUE self)
|
|||
if (tbl) {
|
||||
rb_str_catf(str,
|
||||
"local table (size: %d, argc: %d "
|
||||
"[opts: %d, rest: %d, post: %d, block: %d] s%d)\n",
|
||||
"[opts: %d, rest: %d, post: %d, block: %d, keyword: %d@%d] s%d)\n",
|
||||
iseqdat->local_size, iseqdat->argc,
|
||||
iseqdat->arg_opts, iseqdat->arg_rest,
|
||||
iseqdat->arg_post_len, iseqdat->arg_block,
|
||||
iseqdat->arg_keywords, iseqdat->arg_keyword,
|
||||
iseqdat->arg_simple);
|
||||
|
||||
for (i = 0; i < iseqdat->local_table_size; i++) {
|
||||
|
|
Loading…
Reference in a new issue