Remove not used fields from DEFINED

This commit is contained in:
yui-knk 2023-09-29 21:03:51 +09:00 committed by Yuichiro Kaneko
parent ef37bdeb4d
commit f9f728e804
2 changed files with 0 additions and 4 deletions

View File

@ -12025,8 +12025,6 @@ rb_node_defined_new(struct parser_params *p, NODE *nd_head, const YYLTYPE *loc)
{
rb_node_defined_t *n = NODE_NEWNODE(NODE_DEFINED, rb_node_defined_t, loc);
n->nd_head = nd_head;
n->not_used = 0;
n->not_used2 = 0;
return n;
}

View File

@ -947,8 +947,6 @@ typedef struct RNode_DEFINED {
NODE node;
struct RNode *nd_head;
VALUE not_used;
VALUE not_used2;
} rb_node_defined_t;
typedef struct RNode_POSTEXE {