@@ -186,11 +186,11 @@ fn run_replacer<'js>(
186
186
value,
187
187
) ) ?;
188
188
189
- return write_primitive2 ( context, add_comma, Some ( new_value) ) ;
189
+ write_primitive2 ( context, add_comma, Some ( new_value) )
190
190
}
191
191
192
- fn write_primitive < ' a , ' js > (
193
- context : & mut StringifyContext < ' a , ' js > ,
192
+ fn write_primitive < ' js > (
193
+ context : & mut StringifyContext < ' _ , ' js > ,
194
194
add_comma : bool ,
195
195
) -> Result < PrimitiveStatus < ' js > > {
196
196
if let Some ( replacer_fn) = context. replacer_fn {
@@ -200,8 +200,8 @@ fn write_primitive<'a, 'js>(
200
200
write_primitive2 ( context, add_comma, None )
201
201
}
202
202
203
- fn write_primitive2 < ' a , ' js > (
204
- context : & mut StringifyContext < ' a , ' js > ,
203
+ fn write_primitive2 < ' js > (
204
+ context : & mut StringifyContext < ' _ , ' js > ,
205
205
add_comma : bool ,
206
206
new_value : Option < Value < ' js > > ,
207
207
) -> Result < PrimitiveStatus < ' js > > {
@@ -414,8 +414,8 @@ fn get_key_or_index<'a>(
414
414
key. unwrap_or_else ( || itoa_buffer. format ( index. unwrap_or_default ( ) ) )
415
415
}
416
416
417
- fn iterate < ' a , ' js > (
418
- context : & mut StringifyContext < ' a , ' js > ,
417
+ fn iterate < ' js > (
418
+ context : & mut StringifyContext < ' _ , ' js > ,
419
419
new_value : Option < Value < ' js > > ,
420
420
) -> Result < ( ) > {
421
421
let mut add_comma;
0 commit comments