Remove not used fields from LIT

This commit is contained in:
yui-knk 2023-10-12 23:40:42 +09:00 committed by Yuichiro Kaneko
parent dc8742f5cc
commit cab67d227a
2 changed files with 0 additions and 4 deletions

View File

@ -11839,8 +11839,6 @@ rb_node_lit_new(struct parser_params *p, VALUE nd_lit, const YYLTYPE *loc)
{
rb_node_lit_t *n = NODE_NEWNODE(NODE_LIT, rb_node_lit_t, loc);
n->nd_lit = nd_lit;
n->not_used = 0;
n->not_used2 = 0;
return n;
}

View File

@ -612,8 +612,6 @@ typedef struct RNode_LIT {
NODE node;
VALUE nd_lit;
VALUE not_used;
VALUE not_used2;
} rb_node_lit_t;
typedef struct RNode_STR {