@@ -55,6 +55,9 @@ use crate::{
55
55
} ;
56
56
57
57
impl < ' a , ' tcx > FnCtxt < ' a , ' tcx > {
58
+ /// Check an expr with an expectation type, and also demand that the expr's
59
+ /// evaluated type is a subtype of the expectation at the end. This is a
60
+ /// *hard* requirement.
58
61
pub ( crate ) fn check_expr_has_type_or_error (
59
62
& self ,
60
63
expr : & ' tcx hir:: Expr < ' tcx > ,
@@ -97,6 +100,9 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
97
100
ty
98
101
}
99
102
103
+ /// Check an expr with an expectation type, and also demand that the expr's
104
+ /// evaluated type is a coercible to the expectation at the end. This is a
105
+ /// *hard* requirement.
100
106
pub ( super ) fn check_expr_coercible_to_type (
101
107
& self ,
102
108
expr : & ' tcx hir:: Expr < ' tcx > ,
@@ -108,6 +114,10 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
108
114
self . demand_coerce ( expr, ty, expected, expected_ty_expr, AllowTwoPhase :: No )
109
115
}
110
116
117
+ /// Check an expr with an expectation type. Don't actually enforce that expectation
118
+ /// is related to the expr's evaluated type via subtyping or coercion. This is
119
+ /// usually called because we want to do that subtype/coerce call manually for better
120
+ /// diagnostics.
111
121
pub ( super ) fn check_expr_with_hint (
112
122
& self ,
113
123
expr : & ' tcx hir:: Expr < ' tcx > ,
@@ -116,6 +126,8 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
116
126
self . check_expr_with_expectation ( expr, ExpectHasType ( expected) )
117
127
}
118
128
129
+ /// Check an expr with an expectation type, and also [`Needs`] which will
130
+ /// prompt typeck to convert any implicit immutable derefs to mutable derefs.
119
131
fn check_expr_with_expectation_and_needs (
120
132
& self ,
121
133
expr : & ' tcx hir:: Expr < ' tcx > ,
@@ -133,10 +145,13 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
133
145
ty
134
146
}
135
147
148
+ /// Check an expr with no expectations.
136
149
pub ( super ) fn check_expr ( & self , expr : & ' tcx hir:: Expr < ' tcx > ) -> Ty < ' tcx > {
137
150
self . check_expr_with_expectation ( expr, NoExpectation )
138
151
}
139
152
153
+ /// Check an expr with no expectations, but with [`Needs`] which will
154
+ /// prompt typeck to convert any implicit immutable derefs to mutable derefs.
140
155
pub ( super ) fn check_expr_with_needs (
141
156
& self ,
142
157
expr : & ' tcx hir:: Expr < ' tcx > ,
@@ -145,16 +160,8 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
145
160
self . check_expr_with_expectation_and_needs ( expr, NoExpectation , needs)
146
161
}
147
162
148
- /// Invariant:
149
- /// If an expression has any sub-expressions that result in a type error,
150
- /// inspecting that expression's type with `ty.references_error()` will return
151
- /// true. Likewise, if an expression is known to diverge, inspecting its
152
- /// type with `ty::type_is_bot` will return true (n.b.: since Rust is
153
- /// strict, _|_ can appear in the type of an expression that does not,
154
- /// itself, diverge: for example, fn() -> _|_.)
155
- /// Note that inspecting a type's structure *directly* may expose the fact
156
- /// that there are actually multiple representations for `Error`, so avoid
157
- /// that when err needs to be handled differently.
163
+ /// Check an expr with an expectation type which may be used to eagerly
164
+ /// guide inference when evaluating that expr.
158
165
#[ instrument( skip( self , expr) , level = "debug" ) ]
159
166
pub ( super ) fn check_expr_with_expectation (
160
167
& self ,
@@ -164,8 +171,10 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
164
171
self . check_expr_with_expectation_and_args ( expr, expected, None )
165
172
}
166
173
167
- /// Same as `check_expr_with_expectation`, but allows us to pass in the arguments of a
168
- /// `ExprKind::Call` when evaluating its callee when it is an `ExprKind::Path`.
174
+ /// Same as [`Self::check_expr_with_expectation`], but allows us to pass in
175
+ /// the arguments of a [`ExprKind::Call`] when evaluating its callee that
176
+ /// is an [`ExprKind::Path`]. We use this to refine the spans for certain
177
+ /// well-formedness guarantees for the path expr.
169
178
pub ( super ) fn check_expr_with_expectation_and_args (
170
179
& self ,
171
180
expr : & ' tcx hir:: Expr < ' tcx > ,
0 commit comments