summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-01-21 15:59:11 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-01-21 15:59:11 +0000
commit83c5b533e36761141ed4dbd9db28e74520cb0ffd (patch)
tree030f1d8ef14334daf1480af4c347291cdd7e5939 /parse.y
parentf3ac23e422c1cd68b9be355b82c495047786c268 (diff)
merge revision(s) r48484: [Backport #10524]
* parse.y (symbol_list): fix the node type of literal symbol list with no interpolation. [ruby-core:66343] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_1@49368 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y8
1 files changed, 7 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index 5c62e36d23..577dc37d83 100644
--- a/parse.y
+++ b/parse.y
@@ -4033,7 +4033,13 @@ symbol_list : /* none */
{
/*%%%*/
$2 = evstr2dstr($2);
- nd_set_type($2, NODE_DSYM);
+ if (nd_type($2) == NODE_DSTR) {
+ nd_set_type($2, NODE_DSYM);
+ }
+ else {
+ nd_set_type($2, NODE_LIT);
+ $2->nd_lit = rb_str_intern($2->nd_lit);
+ }
$$ = list_append($1, $2);
/*%
$$ = dispatch2(symbols_add, $1, $2);