1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

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
This commit is contained in:
mame 2017-12-21 06:52:15 +00:00
parent e9a184ed63
commit c2f10299ac

View file

@ -2997,7 +2997,7 @@ primary : literal
{
/*%%%*/
$$ = NEW_CLASS($2, $5, $3);
$$->nd_body->nd_loc = @5;
$$->nd_body->nd_loc = @$;
set_line_body($5, $<num>4);
nd_set_line($$, $<num>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, $<num>3);
nd_set_line($$, $<num>3);
$$->nd_loc = @$;