Remove not used fields from FOR_MASGN

This commit is contained in:
yui-knk 2023-09-30 14:26:23 +09:00 committed by Yuichiro Kaneko
parent 94e79e4c2d
commit 4997903c20
2 changed files with 0 additions and 4 deletions

View File

@ -11104,8 +11104,6 @@ rb_node_for_masgn_new(struct parser_params *p, NODE *nd_var, const YYLTYPE *loc)
{
rb_node_for_masgn_t *n = NODE_NEWNODE(NODE_FOR_MASGN, rb_node_for_masgn_t, loc);
n->nd_var = nd_var;
n->not_used = 0;
n->not_used2 = 0;
return n;
}

View File

@ -276,8 +276,6 @@ typedef struct RNode_FOR_MASGN {
NODE node;
struct RNode *nd_var;
VALUE not_used;
VALUE not_used2;
} rb_node_for_masgn_t;
/* RNode_BREAK, RNode_NEXT and RNode_RETURN should be same structure */