node.c: fix comments [ci skip]

* node.c (dump_node): fix comments of dynamic string literals,
  nd_next->nd_head is the interpolation but not a literal string.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52091 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2015-10-09 06:44:22 +00:00
Родитель e0e39446e3
Коммит d8d51b6708
1 изменённых файлов: 3 добавлений и 3 удалений

6
node.c
Просмотреть файл

@ -587,10 +587,10 @@ dump_node(VALUE buf, VALUE indent, int comment, NODE *node)
ANN("format: [nd_lit]");
ANN("example: :\"foo#{ bar }baz\"");
dlit:
F_LIT(nd_lit, "literal");
F_NODE(nd_next->nd_head, "preceding string");
F_LIT(nd_lit, "preceding string");
F_NODE(nd_next->nd_head, "interpolation");
LAST_NODE;
F_NODE(nd_next->nd_next, "interpolation");
F_NODE(nd_next->nd_next, "tailing strings");
break;
case NODE_EVSTR: