mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 08:33:58 +02:00
* parse.y (stmt, arg): reverted r15450. [ruby-core:15526]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15452 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4aa1d12937
commit
4660cc6fb9
2 changed files with 9 additions and 9 deletions
14
parse.y
14
parse.y
|
@ -1027,10 +1027,11 @@ stmt : keyword_alias fitem {lex_state = EXPR_FNAME;} fitem
|
|||
| primary_value '[' opt_call_args rbracket tOP_ASGN command_call
|
||||
{
|
||||
/*%%%*/
|
||||
NODE *args = $6;
|
||||
NODE *args;
|
||||
|
||||
value_expr(args);
|
||||
if ($3) args = arg_concat(args, $3);
|
||||
value_expr($6);
|
||||
if (!$3) $3 = NEW_ZARRAY();
|
||||
args = arg_concat($6, $3);
|
||||
if ($5 == tOROP) {
|
||||
$5 = 0;
|
||||
}
|
||||
|
@ -1828,10 +1829,11 @@ arg : lhs '=' arg
|
|||
| primary_value '[' opt_call_args rbracket tOP_ASGN arg
|
||||
{
|
||||
/*%%%*/
|
||||
NODE *args = $6;
|
||||
NODE *args;
|
||||
|
||||
value_expr(args);
|
||||
if ($3) args = arg_concat(args, $3);
|
||||
value_expr($6);
|
||||
if (!$3) $3 = NEW_ZARRAY();
|
||||
args = arg_concat($6, $3);
|
||||
if ($5 == tOROP) {
|
||||
$5 = 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue