Skip to content

Commit

Permalink
compile.c: unnamed keyword rest check
Browse files Browse the repository at this point in the history
* compile.c (iseq_set_arguments): set arg_keyword_check from
  nd_cflag, which is set by parser.  internal ID is used for
  unnamed keyword rest argument, which should be separated from no
  keyword check.
* iseq.c (rb_iseq_parameters): if no keyword check, keyword rest is
  present.
* parse.y (new_args_tail_gen): set keywords check to nd_cflag, which
  equals to that keyword rest is not present.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44420 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
nobu committed Dec 25, 2013
1 parent 05ae2b7 commit 27682ee
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 4 deletions.
13 changes: 13 additions & 0 deletions ChangeLog
@@ -1,3 +1,16 @@
Wed Dec 25 22:44:14 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>

* compile.c (iseq_set_arguments): set arg_keyword_check from
nd_cflag, which is set by parser. internal ID is used for
unnamed keyword rest argument, which should be separated from no
keyword check.

* iseq.c (rb_iseq_parameters): if no keyword check, keyword rest is
present.

* parse.y (new_args_tail_gen): set keywords check to nd_cflag, which
equals to that keyword rest is not present.

Wed Dec 25 22:32:19 2013 Zachary Scott <e@zzak.io>

* lib/abbrev.rb: [DOC] rdoc format patch by Giorgos Tsiftsis [Bug #9146]
Expand Down
2 changes: 1 addition & 1 deletion compile.c
Expand Up @@ -1203,7 +1203,7 @@ iseq_set_arguments(rb_iseq_t *iseq, LINK_ANCHOR *optargs, NODE *node_args)
node = node->nd_next;
i += 1;
}
iseq->arg_keyword_check = (args->kw_rest_arg->nd_vid & ID_SCOPE_MASK) == ID_JUNK;
iseq->arg_keyword_check = args->kw_rest_arg->nd_cflag;
iseq->arg_keywords = i;
iseq->arg_keyword_required = r;
iseq->arg_keyword_table = ALLOC_N(ID, i);
Expand Down
6 changes: 4 additions & 2 deletions iseq.c
Expand Up @@ -2015,8 +2015,10 @@ rb_iseq_parameters(const rb_iseq_t *iseq, int is_proc)
}
rb_ary_push(args, a);
}
CONST_ID(keyrest, "keyrest");
rb_ary_push(args, PARAM(iseq->arg_keyword, keyrest));
if (!iseq->arg_keyword_check) {
CONST_ID(keyrest, "keyrest");
rb_ary_push(args, PARAM(iseq->arg_keyword, keyrest));
}
}
if (iseq->arg_block != -1) {
CONST_ID(block, "block");
Expand Down
7 changes: 6 additions & 1 deletion parse.y
Expand Up @@ -9485,17 +9485,22 @@ new_args_tail_gen(struct parser_params *parser, NODE *k, ID kr, ID b)
struct rb_args_info *args;
NODE *kw_rest_arg = 0;
NODE *node;
int check = 0;

args = ALLOC(struct rb_args_info);
MEMZERO(args, struct rb_args_info, 1);
node = NEW_NODE(NODE_ARGS, 0, 0, args);

args->block_arg = b;
args->kw_args = k;
if (k && !kr) kr = internal_id();
if (k && !kr) {
check = 1;
kr = internal_id();
}
if (kr) {
arg_var(kr);
kw_rest_arg = NEW_DVAR(kr);
kw_rest_arg->nd_cflag = check;
}
args->kw_rest_arg = kw_rest_arg;

Expand Down
9 changes: 9 additions & 0 deletions test/ruby/test_keyword.rb
Expand Up @@ -117,6 +117,15 @@ def test_f9
assert_equal([1, 2, [3, 4], 5, :key, {str: "bar"}, nil], f9(1, 2, 3, 4, 5, str: "bar"))
end

def f10(a: 1, **)
a
end

def test_f10
assert_equal(42, f10(a: 42))
assert_equal(1, f10(b: 42))
end

def test_method_parameters
assert_equal([[:key, :str], [:key, :num]], method(:f1).parameters);
assert_equal([[:req, :x], [:key, :str], [:key, :num]], method(:f2).parameters);
Expand Down

0 comments on commit 27682ee

Please sign in to comment.