summaryrefslogtreecommitdiff
path: root/rubyparser.h
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2024-01-28 11:08:23 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2024-01-28 11:12:22 +0900
commite018036d89e33c5729958130f582f8fb324680d6 (patch)
treed40cd4c3a3add35019a702e2971f4e35e275a7de /rubyparser.h
parent0f98d284f338d7480e1849399e38a9f8689e4957 (diff)
Rename `nd_head` in `RNode_RESBODY` as `nd_next`
Diffstat (limited to 'rubyparser.h')
-rw-r--r--rubyparser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/rubyparser.h b/rubyparser.h
index e89c5bb1df..dff6a42d0b 100644
--- a/rubyparser.h
+++ b/rubyparser.h
@@ -337,9 +337,9 @@ typedef struct RNode_RESCUE {
typedef struct RNode_RESBODY {
NODE node;
- struct RNode *nd_head;
- struct RNode *nd_body;
struct RNode *nd_args;
+ struct RNode *nd_body;
+ struct RNode *nd_next;
} rb_node_resbody_t;
typedef struct RNode_ENSURE {