From 1e395da1f5c489ca65e175e3c11cb3ccb33900ff Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 9 Jan 2018 01:10:15 +0000 Subject: parse.y: use change_shortcut_operator_id git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61699 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- parse.y | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/parse.y b/parse.y index a690ed4530..e60208c144 100644 --- a/parse.y +++ b/parse.y @@ -1464,13 +1464,7 @@ command_asgn : lhs '=' command_rhs value_expr($6); $3 = make_array($3, &@3); args = arg_concat($3, $6, &@$); - if ($5 == tOROP) { - $5 = 0; - } - else if ($5 == tANDOP) { - $5 = 1; - } - $$ = NEW_OP_ASGN1($1, $5, args, &@$); + $$ = NEW_OP_ASGN1($1, change_shortcut_operator_id($5), args, &@$); fixpos($$, $1); /*% $$ = dispatch2(aref_field, $1, escape_Qundef($3)); -- cgit v1.2.3