From 64d1a9e3ac27891653e08d3741bd0da2565ecfe2 Mon Sep 17 00:00:00 2001 From: yui-knk Date: Sun, 3 Dec 2017 23:12:01 +0000 Subject: parse.y: Fix a location of NODE_ZARRAY * parse.y: Fix to only include a range of opt_call_args. e.g. The locations of the NODE_ZARRAY is fixed: ``` a[] ||= 1 ``` * Before ``` NODE_ZARRAY (line: 1, first_lineno: 1, first_column: 0, last_lineno: 1, last_column: 9) ``` * After ``` NODE_ZARRAY (line: 1, first_lineno: 1, first_column: 2, last_lineno: 1, last_column: 3) ``` git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61000 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- parse.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'parse.y') diff --git a/parse.y b/parse.y index 95b7f21d0a..0f1c96e075 100644 --- a/parse.y +++ b/parse.y @@ -1511,7 +1511,7 @@ command_asgn : lhs '=' command_rhs NODE *args; value_expr($6); - $3 = make_array($3, &@$); + $3 = make_array($3, &@3); args = arg_concat($3, $6, &@$); if ($5 == tOROP) { $5 = 0; @@ -2161,7 +2161,7 @@ arg : lhs '=' arg_rhs NODE *args; value_expr($6); - $3 = make_array($3, &@$); + $3 = make_array($3, &@3); if (nd_type($3) == NODE_BLOCK_PASS) { args = NEW_ARGSCAT($3, $6); args->nd_loc = @$; -- cgit v1.2.3