1
0
Fork 0
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:
yui-knk 2017-12-03 23:12:01 +00:00
parent 389bda457a
commit 64d1a9e3ac

View file

@ -1511,7 +1511,7 @@ command_asgn : lhs '=' command_rhs
NODE *args; NODE *args;
value_expr($6); value_expr($6);
$3 = make_array($3, &@$); $3 = make_array($3, &@3);
args = arg_concat($3, $6, &@$); args = arg_concat($3, $6, &@$);
if ($5 == tOROP) { if ($5 == tOROP) {
$5 = 0; $5 = 0;
@ -2161,7 +2161,7 @@ arg : lhs '=' arg_rhs
NODE *args; NODE *args;
value_expr($6); value_expr($6);
$3 = make_array($3, &@$); $3 = make_array($3, &@3);
if (nd_type($3) == NODE_BLOCK_PASS) { if (nd_type($3) == NODE_BLOCK_PASS) {
args = NEW_ARGSCAT($3, $6); args = NEW_ARGSCAT($3, $6);
args->nd_loc = @$; args->nd_loc = @$;