зеркало из https://github.com/github/ruby.git
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:
Родитель
e0e39446e3
Коммит
d8d51b6708
6
node.c
6
node.c
|
@ -587,10 +587,10 @@ dump_node(VALUE buf, VALUE indent, int comment, NODE *node)
|
||||||
ANN("format: [nd_lit]");
|
ANN("format: [nd_lit]");
|
||||||
ANN("example: :\"foo#{ bar }baz\"");
|
ANN("example: :\"foo#{ bar }baz\"");
|
||||||
dlit:
|
dlit:
|
||||||
F_LIT(nd_lit, "literal");
|
F_LIT(nd_lit, "preceding string");
|
||||||
F_NODE(nd_next->nd_head, "preceding string");
|
F_NODE(nd_next->nd_head, "interpolation");
|
||||||
LAST_NODE;
|
LAST_NODE;
|
||||||
F_NODE(nd_next->nd_next, "interpolation");
|
F_NODE(nd_next->nd_next, "tailing strings");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case NODE_EVSTR:
|
case NODE_EVSTR:
|
||||||
|
|
Загрузка…
Ссылка в новой задаче