parse.y: suppress "unused variable" warning of ripper.y
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61223 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
626ca9ff3e
commit
bf9c947dd8
9
parse.y
9
parse.y
@ -1553,9 +1553,12 @@ command_asgn : lhs '=' command_rhs
|
|||||||
}
|
}
|
||||||
| primary_value tCOLON2 tCONSTANT tOP_ASGN command_rhs
|
| primary_value tCOLON2 tCONSTANT tOP_ASGN command_rhs
|
||||||
{
|
{
|
||||||
|
/*%%%*/
|
||||||
YYLTYPE location;
|
YYLTYPE location;
|
||||||
location.first_loc = @1.first_loc;
|
location.first_loc = @1.first_loc;
|
||||||
location.last_loc = @3.last_loc;
|
location.last_loc = @3.last_loc;
|
||||||
|
/*%
|
||||||
|
%*/
|
||||||
$$ = const_path_field($1, $3, &location);
|
$$ = const_path_field($1, $3, &location);
|
||||||
$$ = new_const_op_assign($$, $4, $5, &@$);
|
$$ = new_const_op_assign($$, $4, $5, &@$);
|
||||||
}
|
}
|
||||||
@ -2231,9 +2234,12 @@ arg : lhs '=' arg_rhs
|
|||||||
}
|
}
|
||||||
| primary_value tCOLON2 tCONSTANT tOP_ASGN arg_rhs
|
| primary_value tCOLON2 tCONSTANT tOP_ASGN arg_rhs
|
||||||
{
|
{
|
||||||
|
/*%%%*/
|
||||||
YYLTYPE location;
|
YYLTYPE location;
|
||||||
location.first_loc = @1.first_loc;
|
location.first_loc = @1.first_loc;
|
||||||
location.last_loc = @3.last_loc;
|
location.last_loc = @3.last_loc;
|
||||||
|
/*%
|
||||||
|
%*/
|
||||||
$$ = const_path_field($1, $3, &location);
|
$$ = const_path_field($1, $3, &location);
|
||||||
$$ = new_const_op_assign($$, $4, $5, &@$);
|
$$ = new_const_op_assign($$, $4, $5, &@$);
|
||||||
}
|
}
|
||||||
@ -4663,9 +4669,12 @@ f_arg_item : f_arg_asgn
|
|||||||
| tLPAREN f_margs rparen
|
| tLPAREN f_margs rparen
|
||||||
{
|
{
|
||||||
ID tid = internal_id();
|
ID tid = internal_id();
|
||||||
|
/*%%%*/
|
||||||
YYLTYPE location;
|
YYLTYPE location;
|
||||||
location.first_loc = @2.first_loc;
|
location.first_loc = @2.first_loc;
|
||||||
location.last_loc = @2.first_loc;
|
location.last_loc = @2.first_loc;
|
||||||
|
/*%
|
||||||
|
%*/
|
||||||
arg_var(tid);
|
arg_var(tid);
|
||||||
/*%%%*/
|
/*%%%*/
|
||||||
if (dyna_in_block()) {
|
if (dyna_in_block()) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user