diff options
author | ydah <[email protected]> | 2024-09-11 16:09:54 +0900 |
---|---|---|
committer | Yuichiro Kaneko <[email protected]> | 2024-09-11 18:01:16 +0900 |
commit | 0b11e039d7a38550bf5d93df96081e0bf3df29a4 () | |
tree | 4e23a1d9e60dab1b2c5b1ef1c3938f9c27309d67 /node_dump.c | |
parent | d03e0d1c35638fcd3b474bf604c855f132356e6d (diff) |
Fix wrong NODE name
Notes: Merged: https://.com/ruby/ruby/pull/11584
-rw-r--r-- | node_dump.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -354,7 +354,7 @@ dump_node(VALUE buf, VALUE indent, int comment, const NODE * node) ANN("example: break 1"); F_NODE(nd_stts, RNODE_BREAK, "value"); LAST_NODE; - F_LOC(keyword_loc, RNODE_REDO); return; case NODE_NEXT: ANN("next statement"); @@ -362,7 +362,7 @@ dump_node(VALUE buf, VALUE indent, int comment, const NODE * node) ANN("example: next 1"); F_NODE(nd_stts, RNODE_NEXT, "value"); LAST_NODE; - F_LOC(keyword_loc, RNODE_REDO); return; case NODE_RETURN: ANN("return statement"); |