* parse.y (command): block from cmd_brace_block was ignored.

[ruby-dev:32644]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2007-12-21 18:02:19 +00:00
parent 2c40f3a7a9
commit 1d41fe84f9
2 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,8 @@
Sat Dec 22 02:49:02 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* parse.y (command): block from cmd_brace_block was ignored.
[ruby-dev:32644]
Sat Dec 22 01:52:11 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* io.c (io_ungetc): avoid buffer relocation, which might cause

View File

@ -1264,8 +1264,9 @@ command : operation command_args %prec tLOWEST
| operation command_args cmd_brace_block
{
/*%%%*/
$$ = NEW_FCALL($1, $2);
block_dup_check($2,$3);
$3->nd_iter = NEW_FCALL($1, $2);
$$ = $3;
fixpos($$, $2);
/*%
$$ = dispatch2(command, $1, $2);
@ -1284,8 +1285,9 @@ command : operation command_args %prec tLOWEST
| primary_value '.' operation2 command_args cmd_brace_block
{
/*%%%*/
$$ = NEW_CALL($1, $3, $4);
block_dup_check($4,$5);
$5->nd_iter = NEW_CALL($1, $3, $4);
$$ = $5;
fixpos($$, $1);
/*%
$$ = dispatch4(command_call, $1, ripper_id2sym('.'), $3, $4);
@ -1304,8 +1306,9 @@ command : operation command_args %prec tLOWEST
| primary_value tCOLON2 operation2 command_args cmd_brace_block
{
/*%%%*/
$$ = NEW_CALL($1, $3, $4);
block_dup_check($4,$5);
$5->nd_iter = NEW_CALL($1, $3, $4);
$$ = $5;
fixpos($$, $1);
/*%
$$ = dispatch4(command_call, $1, ripper_intern("::"), $3, $4);