Implement BREAK, NEXT and REDO NODE locations

This commit is contained in:
ydah 2024-09-10 16:41:27 +09:00 committed by Yuichiro Kaneko
parent f7ffa76377
commit d03e0d1c35
Notes: git 2024-09-11 09:01:33 +00:00
5 changed files with 50 additions and 16 deletions

View file

@ -345,6 +345,7 @@ typedef struct RNode_EXITS {
struct RNode *nd_chain;
struct RNode *nd_stts;
rb_code_location_t keyword_loc;
} rb_node_exits_t, rb_node_break_t, rb_node_next_t, rb_node_redo_t;
typedef struct RNode_RETRY {