@@ -380,7 +380,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
380
380
let mut oprnd_t = self . check_expr_with_expectation ( & oprnd, expected_inner) ;
381
381
382
382
if !oprnd_t. references_error ( ) {
383
- oprnd_t = self . structurally_resolved_type ( expr. span , oprnd_t) ;
383
+ oprnd_t = self . structurally_resolve_type ( expr. span , oprnd_t) ;
384
384
match unop {
385
385
hir:: UnOp :: Deref => {
386
386
if let Some ( ty) = self . lookup_derefing ( expr, oprnd, oprnd_t) {
@@ -1266,13 +1266,13 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
1266
1266
) -> Ty < ' tcx > {
1267
1267
let rcvr_t = self . check_expr ( & rcvr) ;
1268
1268
// no need to check for bot/err -- callee does that
1269
- let rcvr_t = self . structurally_resolved_type ( rcvr. span , rcvr_t) ;
1269
+ let rcvr_t = self . structurally_resolve_type ( rcvr. span , rcvr_t) ;
1270
1270
let span = segment. ident . span ;
1271
1271
1272
1272
let method = match self . lookup_method ( rcvr_t, segment, span, expr, rcvr, args) {
1273
1273
Ok ( method) => {
1274
1274
// We could add a "consider `foo::<params>`" suggestion here, but I wasn't able to
1275
- // trigger this codepath causing `structurally_resolved_type ` to emit an error.
1275
+ // trigger this codepath causing `structurally_resolve_type ` to emit an error.
1276
1276
1277
1277
self . write_method_call ( expr. hir_id , method) ;
1278
1278
Ok ( method)
@@ -2252,7 +2252,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
2252
2252
) -> Ty < ' tcx > {
2253
2253
debug ! ( "check_field(expr: {:?}, base: {:?}, field: {:?})" , expr, base, field) ;
2254
2254
let base_ty = self . check_expr ( base) ;
2255
- let base_ty = self . structurally_resolved_type ( base. span , base_ty) ;
2255
+ let base_ty = self . structurally_resolve_type ( base. span , base_ty) ;
2256
2256
let mut private_candidate = None ;
2257
2257
let mut autoderef = self . autoderef ( expr. span , base_ty) ;
2258
2258
while let Some ( ( deref_base_ty, _) ) = autoderef. next ( ) {
@@ -2300,7 +2300,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
2300
2300
_ => { }
2301
2301
}
2302
2302
}
2303
- self . structurally_resolved_type ( autoderef. span ( ) , autoderef. final_ty ( false ) ) ;
2303
+ self . structurally_resolve_type ( autoderef. span ( ) , autoderef. final_ty ( false ) ) ;
2304
2304
2305
2305
if let Some ( ( adjustments, did) ) = private_candidate {
2306
2306
// (#90483) apply adjustments to avoid ExprUseVisitor from
@@ -2857,7 +2857,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
2857
2857
} else if idx_t. references_error ( ) {
2858
2858
idx_t
2859
2859
} else {
2860
- let base_t = self . structurally_resolved_type ( base. span , base_t) ;
2860
+ let base_t = self . structurally_resolve_type ( base. span , base_t) ;
2861
2861
match self . lookup_indexing ( expr, base, base_t, idx, idx_t) {
2862
2862
Some ( ( index_ty, element_ty) ) => {
2863
2863
// two-phase not needed because index_ty is never mutable
@@ -3084,7 +3084,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
3084
3084
// allows them to be inferred based on how they are used later in the
3085
3085
// function.
3086
3086
if is_input {
3087
- let ty = self . structurally_resolved_type ( expr. span , ty) ;
3087
+ let ty = self . structurally_resolve_type ( expr. span , ty) ;
3088
3088
match * ty. kind ( ) {
3089
3089
ty:: FnDef ( ..) => {
3090
3090
let fnptr_ty = self . tcx . mk_fn_ptr ( ty. fn_sig ( self . tcx ) ) ;
@@ -3142,7 +3142,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
3142
3142
let mut current_container = container;
3143
3143
3144
3144
for & field in fields {
3145
- let container = self . structurally_resolved_type ( expr. span , current_container) ;
3145
+ let container = self . structurally_resolve_type ( expr. span , current_container) ;
3146
3146
3147
3147
match container. kind ( ) {
3148
3148
ty:: Adt ( container_def, substs) if !container_def. is_enum ( ) => {
0 commit comments