summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-19 13:25:49 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-19 13:25:49 +0000
commit70321a23d26a831fb474da0dd6b316ad2ac11a03 (patch)
treeee278134a639460e910f2080a7f44fa631e00c42
parentbf7621d81de22df639d9a8e0e0efcbdaff467b4c (diff)
parse.y: fix up r61957
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61958 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--parse.y12
1 files changed, 6 insertions, 6 deletions
diff --git a/parse.y b/parse.y
index 187037644f..c1b2cff038 100644
--- a/parse.y
+++ b/parse.y
@@ -3908,7 +3908,7 @@ f_kw : f_label arg_value
/*%%%*/
$$ = new_kw_arg(p, $$, &@$);
/*% %*/
- /*% ripper: _rb_assoc_new(get_value!("$$"), get_value!($2)) %*/
+ /*% ripper: rb_assoc_new!(get_value!("$$"), get_value!($2)) %*/
}
| f_label
{
@@ -3917,7 +3917,7 @@ f_kw : f_label arg_value
/*%%%*/
$$ = new_kw_arg(p, $$, &@$);
/*% %*/
- /*% ripper: _rb_assoc_new(get_value!("$$"), 0) %*/
+ /*% ripper: rb_assoc_new!(get_value!("$$"), 0) %*/
}
;
@@ -3927,7 +3927,7 @@ f_block_kw : f_label primary_value
/*%%%*/
$$ = new_kw_arg(p, $$, &@$);
/*% %*/
- /*% ripper: _rb_assoc_new(get_value!("$$"), get_value!($2)) %*/
+ /*% ripper: rb_assoc_new!(get_value!("$$"), get_value!($2)) %*/
}
| f_label
{
@@ -3935,7 +3935,7 @@ f_block_kw : f_label primary_value
/*%%%*/
$$ = new_kw_arg(p, $$, &@$);
/*% %*/
- /*% ripper: _rb_assoc_new(get_value!("$$"), 0) %*/
+ /*% ripper: rb_assoc_new!(get_value!("$$"), 0) %*/
}
;
@@ -4001,7 +4001,7 @@ f_opt : f_arg_asgn '=' arg_value
/*%%%*/
$$ = NEW_OPT_ARG(0, $$, &@$);
/*% %*/
- /*% ripper: _rb_assoc_new(get_value!("$$"), get_value!($3)) %*/
+ /*% ripper: rb_assoc_new!(get_value!("$$"), get_value!($3)) %*/
}
;
@@ -4012,7 +4012,7 @@ f_block_opt : f_arg_asgn '=' primary_value
/*%%%*/
$$ = NEW_OPT_ARG(0, $$, &@$);
/*% %*/
- /*% ripper: _rb_assoc_new(get_value!("$$"), get_value!($3)) %*/
+ /*% ripper: rb_assoc_new!(get_value!("$$"), get_value!($3)) %*/
}
;