merge revision(s) 49140: [Backport #10693]

* parse.y (f_label): return tLABEL value as it is.
	  [ruby-core:67315] [Bug #10693]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_2@49280 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2015-01-16 08:35:53 +00:00
parent 008c7b108b
commit ed5aa4217c
4 changed files with 27 additions and 6 deletions

View file

@ -4720,9 +4720,9 @@ f_arg : f_arg_item
f_label : tLABEL
{
ID id = get_id($1);
$$ = formal_argument(id);
arg_var($$);
arg_var(formal_argument(id));
current_arg = id;
$$ = $1;
}
;