From 1bf50894efada48472fa4c583f3713d0f8554733 Mon Sep 17 00:00:00 2001 From: yui-knk Date: Mon, 20 Nov 2017 23:37:01 +0000 Subject: [PATCH] parse.y: Set the last location of NODE_ARRAY in %w * parse.y: list_append uses the locations of the second argument. So we should set the locations of $2 before pass it to list_append. e.g. The locations of NODE_ARRAY is fixed: ``` %w[a b] ``` * Before ``` NODE_ARRAY (line: 1, first_lineno: 1, first_column: 0, last_lineno: 0, last_column: -1) ``` * After ``` NODE_ARRAY (line: 1, first_lineno: 1, first_column: 0, last_lineno: 1, last_column: 7) ``` git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60867 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- parse.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parse.y b/parse.y index afe2de1af2..693df138e8 100644 --- a/parse.y +++ b/parse.y @@ -4101,8 +4101,8 @@ qword_list : /* none */ | qword_list tSTRING_CONTENT ' ' { /*%%%*/ - $$ = list_append($1, $2, &@$); $2->nd_loc = @$; + $$ = list_append($1, $2, &@$); /*% $$ = dispatch2(qwords_add, $1, $2); %*/