From 3ea95ff3477b22b26bd5ecbb3f4c5680aac59a58 Mon Sep 17 00:00:00 2001 From: matz Date: Wed, 4 Oct 2006 07:16:00 +0000 Subject: * parse.y (mlhs): should interpret single parenthesized left hand side expression. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@11078 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ parse.y | 13 +++---------- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index 32b211ebfd..745a9c113a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Oct 4 15:46:32 2006 Yukihiro Matsumoto + + * parse.y (mlhs): should interpret single parenthesized left hand + side expression. + Wed Oct 4 08:52:30 2006 Nobuyoshi Nakada * test/optparse/test_getopts.rb: changed the class name of test case diff --git a/parse.y b/parse.y index 4359705dcb..21cbbfd839 100644 --- a/parse.y +++ b/parse.y @@ -279,7 +279,7 @@ static void top_local_setup(); %type f_arglist f_args f_optarg f_opt f_rest_arg f_block_arg opt_f_block_arg %type assoc_list assocs assoc undef_list backref string_dvar %type block_var opt_block_var brace_block cmd_brace_block do_block lhs none fitem -%type mlhs mlhs_head mlhs_basic mlhs_entry mlhs_item mlhs_node +%type mlhs mlhs_head mlhs_basic mlhs_item mlhs_node %type fsym variable sym symbol operation operation2 operation3 %type cname fname op %type f_norm_arg f_arg @@ -743,14 +743,7 @@ command : operation command_args %prec tLOWEST ; mlhs : mlhs_basic - | tLPAREN mlhs_entry ')' - { - $$ = $2; - } - ; - -mlhs_entry : mlhs_basic - | tLPAREN mlhs_entry ')' + | tLPAREN mlhs ')' { $$ = NEW_MASGN(NEW_LIST($2), 0); } @@ -783,7 +776,7 @@ mlhs_basic : mlhs_head ; mlhs_item : mlhs_node - | tLPAREN mlhs_entry ')' + | tLPAREN mlhs ')' { $$ = $2; } -- cgit v1.2.3