diff options
author | ydah <[email protected]> | 2024-09-10 00:13:24 +0900 |
---|---|---|
committer | Yuichiro Kaneko <[email protected]> | 2024-09-11 09:28:55 +0900 |
commit | 4e6091ce09154d735cca025a4d0130eecebbbc19 () | |
tree | cea93508f61b03a15b6f28b402ecaea980426aeb /rubyparser.h | |
parent | 1adcc41b94d49899b1809fba119f74501fc992b1 (diff) |
Implement WHILE and UNTIL NODE locations
Notes: Merged: https://.com/ruby/ruby/pull/11579
-rw-r--r-- | rubyparser.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -323,6 +323,8 @@ typedef struct RNode_LOOP { struct RNode *nd_cond; struct RNode *nd_body; long nd_state; } rb_node_while_t, rb_node_until_t; typedef struct RNode_ITER { |