1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* parse.y (aref_args): should pass expanded list. [ruby-core:02793]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6195 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2004-04-21 19:18:02 +00:00
parent c94f8ab926
commit 39cac947b1
2 changed files with 4 additions and 2 deletions

View file

@ -1,8 +1,10 @@
Thu Apr 22 04:16:34 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
Thu Apr 22 04:17:57 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
* eval.c (rb_mod_define_method): allow binding methods to modules.
[ruby-dev:23410]
* parse.y (aref_args): should pass expanded list. [ruby-core:02793]
Wed Apr 21 23:04:42 2004 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>
* lib/rinda/rinda.rb, test/rinda/test_rinda.rb: check Hash tuple size.

View file

@ -1235,7 +1235,7 @@ aref_args : none
| tSTAR arg opt_nl
{
value_expr($2);
$$ = newline_node(NEW_SPLAT($2));
$$ = NEW_LIST(NEW_SPLAT($2));
}
;