aboutsummaryrefslogtreecommitdiffstats
path: root/ast.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-01-14 10:16:54 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-01-14 10:16:54 +0000
commit4d727639b45a43e73ec8588e837f74315dafa619 (patch)
treea539a4b93057b1d9744467dbe03f47489c049498 /ast.c
parentec3cdb34ce6f19be7a6d887357fd1763f97992d1 (diff)
downloadruby-4d727639b45a43e73ec8588e837f74315dafa619.tar.gz
ast.c: fix missing head part in dynamic literal
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66819 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ast.c')
-rw-r--r--ast.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ast.c b/ast.c
index ead4344be9..959529738e 100644
--- a/ast.c
+++ b/ast.c
@@ -528,7 +528,9 @@ node_children(rb_ast_t *ast, NODE *node)
goto dlit;
case NODE_DSYM:
dlit:
- return rb_ary_new_from_node_args(ast, 2, node->nd_next->nd_head, node->nd_next->nd_next);
+ return rb_ary_new_from_args(3, node->nd_lit,
+ NEW_CHILD(ast, node->nd_next->nd_head),
+ NEW_CHILD(ast, node->nd_next->nd_next));
case NODE_EVSTR:
return rb_ary_new_from_node_args(ast, 1, node->nd_body);
case NODE_ARGSCAT: