aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authoryui-knk <yui-knk@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-11-20 23:37:01 +0000
committeryui-knk <yui-knk@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-11-20 23:37:01 +0000
commit7fb1faa0c644011cc406c759a470876baad94be9 (patch)
treef5d0fe68cbf6314c505f4a0ffe9252c41b7b4eb8 /parse.y
parent78633972010d0596fdb04d9d3d5c522b9c587bc0 (diff)
downloadruby-7fb1faa0c644011cc406c759a470876baad94be9.tar.gz
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
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y2
1 files changed, 1 insertions, 1 deletions
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);
%*/