aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authoryui-knk <spiketeika@gmail.com>2023-09-30 14:17:59 +0900
committerYuichiro Kaneko <spiketeika@gmail.com>2023-09-30 17:20:16 +0900
commit97ac5deeecc6d7c9b870e98aaddf820659b2ebff (patch)
treeafb47cd6a6cb24aad8b47b239cf1ae693b1010b8 /parse.y
parent716a12902dfbcd285b5cba8d0bf9d1be4ea79d4b (diff)
downloadruby-97ac5deeecc6d7c9b870e98aaddf820659b2ebff.tar.gz
Remove not used fields from BEGIN
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y2
1 files changed, 0 insertions, 2 deletions
diff --git a/parse.y b/parse.y
index 4255d52bc3..d21bfa976b 100644
--- a/parse.y
+++ b/parse.y
@@ -11125,9 +11125,7 @@ static rb_node_begin_t *
rb_node_begin_new(struct parser_params *p, NODE *nd_body, const YYLTYPE *loc)
{
rb_node_begin_t *n = NODE_NEWNODE(NODE_BEGIN, rb_node_begin_t, loc);
- n->not_used = 0;
n->nd_body = nd_body;
- n->not_used2 = 0;
return n;
}