* 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:
parent
2c40f3a7a9
commit
1d41fe84f9
@ -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
|
||||
|
9
parse.y
9
parse.y
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user