diff options
author | ydah <[email protected]> | 2024-09-03 17:53:55 +0900 |
---|---|---|
committer | Yuichiro Kaneko <[email protected]> | 2024-09-03 21:15:12 +0900 |
commit | af143d8a749ae0ba0f394521dd46bea824a354fa (patch) | |
tree | d27074dc71ff379dde01cf6ed9992d1168bc0dff /node_dump.c | |
parent | b7fa2dd0d0b7328f8f713b7cf0332d1e34c20fe4 (diff) |
Implement UNDEF NODE keyword locations
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/11523
Diffstat (limited to 'node_dump.c')
-rw-r--r-- | node_dump.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/node_dump.c b/node_dump.c index f23aeca6f1..2b9322bdb7 100644 --- a/node_dump.c +++ b/node_dump.c @@ -940,6 +940,7 @@ dump_node(VALUE buf, VALUE indent, int comment, const NODE * node) ANN("example: undef foo"); LAST_NODE; F_ARRAY(nd_undefs, RNODE_UNDEF, "nd_undefs"); + F_LOC(keyword_loc, RNODE_UNDEF); return; case NODE_CLASS: |