mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
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
This commit is contained in:
parent
389bda457a
commit
64d1a9e3ac
1 changed files with 2 additions and 2 deletions
4
parse.y
4
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 = @$;
|
||||
|
|
Loading…
Reference in a new issue