diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-07-31 01:54:14 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-07-31 01:54:14 +0000 |
commit | d766ff977c0a465309c54c2d2466d0fe3031446a (patch) | |
tree | 6aac63908ff3865b1d4a52d6c1224c3e4e051c8e | |
parent | aff22927c27fca9e5c115173d6fa6adc152a04ec (diff) | |
download | ruby-d766ff977c0a465309c54c2d2466d0fe3031446a.tar.gz ruby-d766ff977c0a465309c54c2d2466d0fe3031446a.tar.xz ruby-d766ff977c0a465309c54c2d2466d0fe3031446a.zip |
* parse.y (literal_concat_gen): reduced unnecessary node at string
literal concatenation with empty head dstr. [ruby-dev:38968]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24333 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | parse.y | 8 |
2 files changed, 12 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Fri Jul 31 10:54:08 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * parse.y (literal_concat_gen): reduced unnecessary node at string + literal concatenation with empty head dstr. [ruby-dev:38968] + Fri Jul 31 02:57:39 2009 Yusuke Endoh <mame@tsg.ne.jp> * parse.y (literal_concat_gen): NODE_DSTR was incorrectly handled as @@ -7832,8 +7832,14 @@ literal_concat_gen(struct parser_params *parser, NODE *head, NODE *tail) rb_gc_force_recycle((VALUE)head); head = tail; } + else if (NIL_P(tail->nd_lit)) { + list_concat(head, tail->nd_next); + rb_gc_force_recycle((VALUE)tail); + } else { - list_concat(head, NEW_ARRAY(tail)); + nd_set_type(tail, NODE_ARRAY); + tail->nd_head = NEW_STR(tail->nd_lit); + list_concat(head, tail); } break; |