diff --git a/ChangeLog b/ChangeLog index 2c9c6c2800..92d82d04df 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Apr 5 22:16:23 2004 Minero Aoki + + * parse.y (assoc_list): {a: 1, b: 2} should be allowed. + [ruby-dev:23328] + Mon Apr 5 19:43:40 2004 Kazuo Saito * regexec.c: imported Oni Guruma 2.2.6. diff --git a/parse.y b/parse.y index 1408622cf5..d4d34216be 100644 --- a/parse.y +++ b/parse.y @@ -261,7 +261,7 @@ static void top_local_setup(); %type command_args aref_args opt_block_arg block_arg var_ref var_lhs %type mrhs superclass block_call block_command %type f_arglist f_args f_optarg f_opt f_block_arg opt_f_block_arg -%type assoc_list assocs assoc undef_list backref string_dvar +%type assoc_list assocs assoc kwargs undef_list backref string_dvar %type block_var opt_block_var brace_block cmd_brace_block do_block lhs none %type mlhs mlhs_head mlhs_basic mlhs_entry mlhs_item mlhs_node %type fitem variable sym symbol operation operation2 operation3 @@ -2381,9 +2381,9 @@ assoc_list : none } $$ = $1; } - | tLABEL arg_value + | kwargs trailer { - $$ = list_append(NEW_LIST(NEW_LIT(ID2SYM($1))), $2); + $$ = $1; } ; @@ -2400,6 +2400,17 @@ assoc : arg_value tASSOC arg_value } ; +kwargs : tLABEL arg_value + { + $$ = list_append(NEW_LIST(NEW_LIT(ID2SYM($1))), $2); + } + | kwargs ',' tLABEL arg_value + { + $$ = list_append(NEW_LIST(NEW_LIT(ID2SYM($3))), $4); + $$ = list_concat($1, $$); + } + ; + operation : tIDENTIFIER | tCONSTANT | tFID