@@ -6,7 +6,6 @@ use rustc_errors::ErrorGuaranteed;
6
6
use rustc_hir as hir;
7
7
use rustc_hir:: lang_items:: LangItem ;
8
8
use rustc_hir_analysis:: hir_ty_lowering:: HirTyLowerer ;
9
- use rustc_infer:: infer:: type_variable:: TypeVariableOrigin ;
10
9
use rustc_infer:: infer:: { BoundRegionConversionTime , DefineOpaqueTypes } ;
11
10
use rustc_infer:: infer:: { InferOk , InferResult } ;
12
11
use rustc_macros:: { TypeFoldable , TypeVisitable } ;
@@ -73,8 +72,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
73
72
let parent_args =
74
73
GenericArgs :: identity_for_item ( tcx, tcx. typeck_root_def_id ( expr_def_id. to_def_id ( ) ) ) ;
75
74
76
- let tupled_upvars_ty =
77
- self . next_ty_var ( TypeVariableOrigin { param_def_id : None , span : expr_span } ) ;
75
+ let tupled_upvars_ty = self . next_ty_var ( expr_span) ;
78
76
79
77
// FIXME: We could probably actually just unify this further --
80
78
// instead of having a `FnSig` and a `Option<CoroutineTypes>`,
@@ -101,9 +99,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
101
99
102
100
// Create a type variable (for now) to represent the closure kind.
103
101
// It will be unified during the upvar inference phase (`upvar.rs`)
104
- None => {
105
- self . next_ty_var ( TypeVariableOrigin { param_def_id : None , span : expr_span } )
106
- }
102
+ None => self . next_ty_var ( expr_span) ,
107
103
} ;
108
104
109
105
let closure_args = ty:: ClosureArgs :: new (
@@ -122,10 +118,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
122
118
let yield_ty = match kind {
123
119
hir:: CoroutineKind :: Desugared ( hir:: CoroutineDesugaring :: Gen , _)
124
120
| hir:: CoroutineKind :: Coroutine ( _) => {
125
- let yield_ty = self . next_ty_var ( TypeVariableOrigin {
126
- param_def_id : None ,
127
- span : expr_span,
128
- } ) ;
121
+ let yield_ty = self . next_ty_var ( expr_span) ;
129
122
self . require_type_is_sized ( yield_ty, expr_span, traits:: SizedYieldType ) ;
130
123
yield_ty
131
124
}
@@ -134,10 +127,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
134
127
// in this block in projection correctly. In the new trait solver, it is
135
128
// not a problem.
136
129
hir:: CoroutineKind :: Desugared ( hir:: CoroutineDesugaring :: AsyncGen , _) => {
137
- let yield_ty = self . next_ty_var ( TypeVariableOrigin {
138
- param_def_id : None ,
139
- span : expr_span,
140
- } ) ;
130
+ let yield_ty = self . next_ty_var ( expr_span) ;
141
131
self . require_type_is_sized ( yield_ty, expr_span, traits:: SizedYieldType ) ;
142
132
143
133
Ty :: new_adt (
@@ -163,8 +153,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
163
153
// Resume type defaults to `()` if the coroutine has no argument.
164
154
let resume_ty = liberated_sig. inputs ( ) . get ( 0 ) . copied ( ) . unwrap_or ( tcx. types . unit ) ;
165
155
166
- let interior =
167
- self . next_ty_var ( TypeVariableOrigin { param_def_id : None , span : expr_span } ) ;
156
+ let interior = self . next_ty_var ( expr_span) ;
168
157
self . deferred_coroutine_interiors . borrow_mut ( ) . push ( (
169
158
expr_def_id,
170
159
body. id ( ) ,
@@ -177,7 +166,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
177
166
// ty of `().`
178
167
let kind_ty = match kind {
179
168
hir:: CoroutineKind :: Desugared ( _, hir:: CoroutineSource :: Closure ) => {
180
- self . next_ty_var ( TypeVariableOrigin { param_def_id : None , span : expr_span } )
169
+ self . next_ty_var ( expr_span)
181
170
}
182
171
_ => tcx. types . unit ,
183
172
} ;
@@ -212,23 +201,18 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
212
201
}
213
202
} ;
214
203
// Compute all of the variables that will be used to populate the coroutine.
215
- let resume_ty =
216
- self . next_ty_var ( TypeVariableOrigin { param_def_id : None , span : expr_span } ) ;
217
- let interior =
218
- self . next_ty_var ( TypeVariableOrigin { param_def_id : None , span : expr_span } ) ;
204
+ let resume_ty = self . next_ty_var ( expr_span) ;
205
+ let interior = self . next_ty_var ( expr_span) ;
219
206
220
207
let closure_kind_ty = match expected_kind {
221
208
Some ( kind) => Ty :: from_closure_kind ( tcx, kind) ,
222
209
223
210
// Create a type variable (for now) to represent the closure kind.
224
211
// It will be unified during the upvar inference phase (`upvar.rs`)
225
- None => {
226
- self . next_ty_var ( TypeVariableOrigin { param_def_id : None , span : expr_span } )
227
- }
212
+ None => self . next_ty_var ( expr_span) ,
228
213
} ;
229
214
230
- let coroutine_captures_by_ref_ty =
231
- self . next_ty_var ( TypeVariableOrigin { param_def_id : None , span : expr_span } ) ;
215
+ let coroutine_captures_by_ref_ty = self . next_ty_var ( expr_span) ;
232
216
let closure_args = ty:: CoroutineClosureArgs :: new (
233
217
tcx,
234
218
ty:: CoroutineClosureArgsParts {
@@ -260,13 +244,10 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
260
244
261
245
// Create a type variable (for now) to represent the closure kind.
262
246
// It will be unified during the upvar inference phase (`upvar.rs`)
263
- None => {
264
- self . next_ty_var ( TypeVariableOrigin { param_def_id : None , span : expr_span } )
265
- }
247
+ None => self . next_ty_var ( expr_span) ,
266
248
} ;
267
249
268
- let coroutine_upvars_ty =
269
- self . next_ty_var ( TypeVariableOrigin { param_def_id : None , span : expr_span } ) ;
250
+ let coroutine_upvars_ty = self . next_ty_var ( expr_span) ;
270
251
271
252
// We need to turn the liberated signature that we got from HIR, which
272
253
// looks something like `|Args...| -> T`, into a signature that is suitable
0 commit comments