diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-12-01 21:31:33 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-12-01 21:31:33 +0000 |
commit | 1549a6b78daaa4f3efa1d47eb6c9e52b080578b8 (patch) | |
tree | 155b39abee8036b1b81d4f6698615b9dcbbc1093 | |
parent | 012c558127d329d2f846124958f7ab57bbaedc3b (diff) |
parse.y: check single regexp only
* parse.y (regexp_contents): check in ripper only if the whole
content is a single regexp without interpolation.
[ruby-dev:48714] [Bug #10437]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48673 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | parse.y | 7 |
2 files changed, 9 insertions, 4 deletions
@@ -1,3 +1,9 @@ +Tue Dec 2 06:31:31 2014 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * parse.y (regexp_contents): check in ripper only if the whole + content is a single regexp without interpolation. + [ruby-dev:48714] [Bug #10437] + Tue Dec 2 06:30:55 2014 Nobuyoshi Nakada <nobu@ruby-lang.org> * re.c (rb_reg_region_copy): new function to try with GC if copy @@ -4259,7 +4259,7 @@ regexp_contents: /* none */ $$ = list_append(head, tail); } /*% - VALUE s1 = 0, s2 = 0, n1 = $1, n2 = $2; + VALUE s1 = 1, s2 = 0, n1 = $1, n2 = $2; if (ripper_is_node_yylval(n1)) { s1 = RNODE(n1)->nd_cval; n1 = RNODE(n1)->nd_rval; @@ -4269,9 +4269,8 @@ regexp_contents: /* none */ n2 = RNODE(n2)->nd_rval; } $$ = dispatch2(regexp_add, n1, n2); - if (s1 || s2) { - VALUE s = !s1 ? s2 : !s2 ? s1 : rb_str_plus(s1, s2); - $$ = ripper_new_yylval(0, $$, s); + if (!s1 && s2) { + $$ = ripper_new_yylval(0, $$, s2); } %*/ } |