This commit is contained in:
ydah 2024-09-11 16:09:54 +09:00 коммит произвёл Yuichiro Kaneko
Родитель d03e0d1c35
Коммит 0b11e039d7
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -354,7 +354,7 @@ dump_node(VALUE buf, VALUE indent, int comment, const NODE * node)
ANN("example: break 1"); ANN("example: break 1");
F_NODE(nd_stts, RNODE_BREAK, "value"); F_NODE(nd_stts, RNODE_BREAK, "value");
LAST_NODE; LAST_NODE;
F_LOC(keyword_loc, RNODE_REDO); F_LOC(keyword_loc, RNODE_BREAK);
return; return;
case NODE_NEXT: case NODE_NEXT:
ANN("next statement"); ANN("next statement");
@ -362,7 +362,7 @@ dump_node(VALUE buf, VALUE indent, int comment, const NODE * node)
ANN("example: next 1"); ANN("example: next 1");
F_NODE(nd_stts, RNODE_NEXT, "value"); F_NODE(nd_stts, RNODE_NEXT, "value");
LAST_NODE; LAST_NODE;
F_LOC(keyword_loc, RNODE_REDO); F_LOC(keyword_loc, RNODE_NEXT);
return; return;
case NODE_RETURN: case NODE_RETURN:
ANN("return statement"); ANN("return statement");