diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-10-14 14:46:16 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-10-14 14:46:16 +0000 |
| commit | 442569810323d6071aca193d4b5fd133c75d8dba (patch) | |
| tree | 989000d7e0c60c6c4a8c7daef104d08c6e57e914 | |
| parent | 153c4913bc3772505640f758240c4870e6ba55e4 (diff) | |
| download | ruby-442569810323d6071aca193d4b5fd133c75d8dba.tar.gz ruby-442569810323d6071aca193d4b5fd133c75d8dba.tar.xz ruby-442569810323d6071aca193d4b5fd133c75d8dba.zip | |
* parse.y (singleton): no need to re-create NODE_SELF() again.
[ruby-core:09177]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11172 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | parse.y | 9 |
2 files changed, 7 insertions, 7 deletions
@@ -1,3 +1,8 @@ +Sat Oct 14 23:39:50 2006 Yukihiro Matsumoto <matz@ruby-lang.org> + + * parse.y (singleton): no need to re-create NODE_SELF() again. + [ruby-core:09177] + Sat Oct 14 23:25:31 2006 Yukihiro Matsumoto <matz@ruby-lang.org> * parse.y (parser_warning, parser_warn): some error message may @@ -4240,13 +4240,8 @@ opt_f_block_arg : ',' f_block_arg singleton : var_ref { /*%%%*/ - if ($1 && nd_type($1) == NODE_SELF) { - $$ = NEW_SELF(); - } - else { - $$ = $1; - value_expr($$); - } + $$ = $1; + value_expr($$); /*% $$ = $1; %*/ |
