summaryrefslogtreecommitdiff
path: root/rubyparser.h
diff options
context:
space:
mode:
authoryui-knk <[email protected]>2024-07-26 08:45:13 +0900
committerYuichiro Kaneko <[email protected]>2024-07-26 10:29:26 +0900
commit2c76bb7ec0af9a90977578109b9923be39f50382 ()
tree45e24bd07ecb2eecb0a53dfb0550cab2a473cc5a /rubyparser.h
parentf2728c3393d7571f681accd9c887dcd5bad65950 (diff)
Remove `struct RNode_VALUES`
This was removed by a5cc6341c0688c346f70098652b2375c03df40aa.
Notes: Merged: https://.com/ruby/ruby/pull/11251
-rw-r--r--rubyparser.h10
1 files changed, 0 insertions, 10 deletions
@@ -573,8 +573,6 @@ typedef struct RNode_ZSUPER {
* alen (length of list) | * nd_end (point to the last LIST)
* next -----------------+ * next
-
- RNode_LIST and RNode_VALUES should be same structure
*/
typedef struct RNode_LIST {
NODE node;
@@ -591,14 +589,6 @@ typedef struct RNode_ZLIST {
NODE node;
} rb_node_zlist_t;
-typedef struct RNode_VALUES {
- NODE node;
-
- struct RNode *nd_head;
- long nd_alen;
- struct RNode *nd_next;
-} rb_node_values_t;
-
typedef struct RNode_HASH {
NODE node;