summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-10-29 15:01:49 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-10-29 15:01:49 +0000
commit049bbd72e33ef42852968b1ff01b2421cc14c25d (patch)
tree0caddf76faa55969236d82e3fb222da75677f7ec /parse.y
parent6fe9b2b79446e20e4a3a48c898313c63258182d5 (diff)
parse.y: reset current_arg after block var
* parse.y (block_param_def): reset current_arg after block parameter definition, not to warn references in that block body. [ruby-core:65990] [Bug #10314] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48190 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y2
1 files changed, 2 insertions, 0 deletions
diff --git a/parse.y b/parse.y
index da91b53a02..6d04f4175e 100644
--- a/parse.y
+++ b/parse.y
@@ -3409,6 +3409,7 @@ opt_block_param : none
block_param_def : '|' opt_bv_decl '|'
{
+ current_arg = 0;
/*%%%*/
$$ = 0;
/*%
@@ -3427,6 +3428,7 @@ block_param_def : '|' opt_bv_decl '|'
}
| '|' block_param opt_bv_decl '|'
{
+ current_arg = 0;
/*%%%*/
$$ = $2;
/*%