Implement WHEN NODE locations

This commit is contained in:
ydah 2024-09-05 18:41:10 +09:00 committed by Yuichiro Kaneko
parent b5f1291015
commit d52e599538
Notes: git 2024-09-09 01:34:21 +00:00
5 changed files with 21 additions and 4 deletions

View file

@ -305,6 +305,8 @@ typedef struct RNode_WHEN {
struct RNode *nd_head;
struct RNode *nd_body;
struct RNode *nd_next;
rb_code_location_t keyword_loc;
rb_code_location_t then_keyword_loc;
} rb_node_when_t;
typedef struct RNode_IN {