@@ -1208,7 +1208,7 @@ fn extract_spans_for_error_reporting<'tcx>(
1208
1208
TypeError :: ArgumentMutability ( i) | TypeError :: ArgumentSorts ( ExpectedFound { .. } , i) => {
1209
1209
( impl_args. nth ( i) . unwrap ( ) , trait_args. and_then ( |mut args| args. nth ( i) ) )
1210
1210
}
1211
- _ => ( cause. span , tcx. hir ( ) . span_if_local ( trait_m. def_id ) ) ,
1211
+ _ => ( cause. span , tcx. hir_span_if_local ( trait_m. def_id ) ) ,
1212
1212
}
1213
1213
}
1214
1214
@@ -1261,7 +1261,7 @@ fn compare_self_type<'tcx>(
1261
1261
self_descr
1262
1262
) ;
1263
1263
err. span_label ( impl_m_span, format ! ( "`{self_descr}` used in impl" ) ) ;
1264
- if let Some ( span) = tcx. hir ( ) . span_if_local ( trait_m. def_id ) {
1264
+ if let Some ( span) = tcx. hir_span_if_local ( trait_m. def_id ) {
1265
1265
err. span_label ( span, format ! ( "trait method declared without `{self_descr}`" ) ) ;
1266
1266
} else {
1267
1267
err. note_trait_signature ( trait_m. name , trait_m. signature ( tcx) ) ;
@@ -1281,7 +1281,7 @@ fn compare_self_type<'tcx>(
1281
1281
self_descr
1282
1282
) ;
1283
1283
err. span_label ( impl_m_span, format ! ( "expected `{self_descr}` in impl" ) ) ;
1284
- if let Some ( span) = tcx. hir ( ) . span_if_local ( trait_m. def_id ) {
1284
+ if let Some ( span) = tcx. hir_span_if_local ( trait_m. def_id ) {
1285
1285
err. span_label ( span, format ! ( "`{self_descr}` used in trait" ) ) ;
1286
1286
} else {
1287
1287
err. note_trait_signature ( trait_m. name , trait_m. signature ( tcx) ) ;
@@ -1389,7 +1389,7 @@ fn compare_number_of_generics<'tcx>(
1389
1389
. collect ( ) ;
1390
1390
( Some ( arg_spans) , impl_trait_spans)
1391
1391
} else {
1392
- let trait_span = tcx. hir ( ) . span_if_local ( trait_. def_id ) ;
1392
+ let trait_span = tcx. hir_span_if_local ( trait_. def_id ) ;
1393
1393
( trait_span. map ( |s| vec ! [ s] ) , vec ! [ ] )
1394
1394
} ;
1395
1395
@@ -1481,7 +1481,7 @@ fn compare_number_of_method_arguments<'tcx>(
1481
1481
}
1482
1482
} )
1483
1483
} )
1484
- . or_else ( || tcx. hir ( ) . span_if_local ( trait_m. def_id ) ) ;
1484
+ . or_else ( || tcx. hir_span_if_local ( trait_m. def_id ) ) ;
1485
1485
1486
1486
let ( impl_m_sig, _) = & tcx. hir_expect_impl_item ( impl_m. def_id . expect_local ( ) ) . expect_fn ( ) ;
1487
1487
let pos = impl_number_args. saturating_sub ( 1 ) ;
@@ -2366,7 +2366,7 @@ fn try_report_async_mismatch<'tcx>(
2366
2366
return Err ( tcx. sess . dcx ( ) . emit_err ( MethodShouldReturnFuture {
2367
2367
span : tcx. def_span ( impl_m. def_id ) ,
2368
2368
method_name : tcx. item_ident ( impl_m. def_id ) ,
2369
- trait_item_span : tcx. hir ( ) . span_if_local ( trait_m. def_id ) ,
2369
+ trait_item_span : tcx. hir_span_if_local ( trait_m. def_id ) ,
2370
2370
} ) ) ;
2371
2371
}
2372
2372
}
0 commit comments