aboutsummaryrefslogtreecommitdiffstats
path: root/node.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-27 13:52:08 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-27 13:52:08 +0000
commit777d52280cd3d95c9f0efa5b503c7d4acbb4dd4e (patch)
tree3fd3588ef37af669fc4286c502fb8c4cff2b9d45 /node.c
parent1ca83ce2c96ec36e503d9107c6f9dd27d00742b3 (diff)
downloadruby-777d52280cd3d95c9f0efa5b503c7d4acbb4dd4e.tar.gz
fix nd_ainfo->kw_rest_arg
[Fix GH-5129] Author: fate0 <fate0@users.noreply.github.com> git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57734 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'node.c')
-rw-r--r--node.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/node.c b/node.c
index f4f702d850..a22c456249 100644
--- a/node.c
+++ b/node.c
@@ -974,8 +974,8 @@ dump_node(VALUE buf, VALUE indent, int comment, NODE *node)
F_ID(nd_ainfo->rest_arg, "rest argument");
F_ID(nd_ainfo->block_arg, "block argument");
F_NODE(nd_ainfo->opt_args, "optional arguments");
- LAST_NODE;
F_NODE(nd_ainfo->kw_args, "keyword arguments");
+ LAST_NODE;
F_NODE(nd_ainfo->kw_rest_arg, "keyword rest argument");
break;