From c2f10299ac49e0cd6cae3578f56146f7c5e8702b Mon Sep 17 00:00:00 2001 From: mame Date: Thu, 21 Dec 2017 06:52:15 +0000 Subject: [PATCH] parse.y: change NODE_SCOPE's nd_loc to one of the parent NODE This change (ad-hocly) adjusts the code range of NODE_SCOPE in class/module definition because the same adjust is already done in method definition. I intend to just remove inconsistency between class/module definition and method definition, but this kind of adjust is dirty, so it should be fixed later (maybe in 2.6). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61383 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- parse.y | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/parse.y b/parse.y index cb6f916a62..61fa1aa6a2 100644 --- a/parse.y +++ b/parse.y @@ -2997,7 +2997,7 @@ primary : literal { /*%%%*/ $$ = NEW_CLASS($2, $5, $3); - $$->nd_body->nd_loc = @5; + $$->nd_body->nd_loc = @$; set_line_body($5, $4); nd_set_line($$, $4); $$->nd_loc = @$; @@ -3020,7 +3020,7 @@ primary : literal { /*%%%*/ $$ = NEW_SCLASS($3, $6); - $$->nd_body->nd_loc = @6; + $$->nd_body->nd_loc = @$; set_line_body($6, nd_line($3)); fixpos($$, $3); $$->nd_loc = @$; @@ -3048,7 +3048,7 @@ primary : literal { /*%%%*/ $$ = NEW_MODULE($2, $4); - $$->nd_body->nd_loc = @4; + $$->nd_body->nd_loc = @$; set_line_body($4, $3); nd_set_line($$, $3); $$->nd_loc = @$;