git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61270 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mame 2017-12-15 05:55:08 +00:00
Родитель e13d347df6
Коммит 30930ba050
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -227,11 +227,11 @@ dump_node(VALUE buf, VALUE indent, int comment, NODE *node)
return;
case NODE_WHEN:
ANN("if statement");
ANN("when clause");
ANN("format: when [nd_head]; [nd_body]; (when or else) [nd_next]");
ANN("example: case x; when 1; foo; when 2; bar; else baz; end");
F_NODE(nd_head, "when value");
F_NODE(nd_body, "when clause");
F_NODE(nd_body, "when body");
LAST_NODE;
F_NODE(nd_next, "next when clause");
return;
@ -271,7 +271,7 @@ dump_node(VALUE buf, VALUE indent, int comment, NODE *node)
return;
case NODE_BREAK:
ANN("for statement");
ANN("break statement");
ANN("format: break [nd_stts]");
ANN("example: break 1");
goto jump;