1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

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
This commit is contained in:
nagachika 2015-01-21 15:59:11 +00:00
parent f3ac23e422
commit 83c5b533e3
4 changed files with 23 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Thu Jan 22 00:54:00 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
* parse.y (symbol_list): fix the node type of literal symbol list
with no interpolation. [ruby-core:66343]
Thu Jan 22 00:49:52 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
* object.c: [DOC] Revise documentation by Marcus Stollsteimer at

View file

@ -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);

View file

@ -434,4 +434,14 @@ class TestRubyLiteral < Test::Unit::TestCase
}
end
def test_symbol_list
assert_equal([:foo, :bar], %i[foo bar])
assert_equal([:"\"foo"], %i["foo])
x = 10
assert_equal([:foo, :b10], %I[foo b#{x}])
assert_equal([:"\"foo10"], %I["foo#{x}])
assert_ruby_status(["--disable-gems", "--dump=parsetree"], "%I[foo bar]")
end
end

View file

@ -1,6 +1,6 @@
#define RUBY_VERSION "2.1.5"
#define RUBY_RELEASE_DATE "2015-01-22"
#define RUBY_PATCHLEVEL 281
#define RUBY_PATCHLEVEL 282
#define RUBY_RELEASE_YEAR 2015
#define RUBY_RELEASE_MONTH 1