@@ -213,18 +213,65 @@ impl<'hir> LoweringContext<'_, 'hir> {
213
213
* fn_decl_span,
214
214
* fn_arg_span,
215
215
) ,
216
- None => self . lower_expr_closure (
217
- binder,
218
- * capture_clause,
219
- e. id ,
220
- hir_id,
221
- * constness,
222
- * movability,
223
- fn_decl,
224
- body,
225
- * fn_decl_span,
226
- * fn_arg_span,
227
- ) ,
216
+ None => {
217
+ let peeled = body. peel_uwu ( ) ;
218
+ if let ast:: ExprKind :: Gen (
219
+ gen_capture_clause,
220
+ block,
221
+ gen_kind @ ast:: GenBlockKind :: Async ,
222
+ span,
223
+ ) = & peeled. kind
224
+ {
225
+ let coroutine_kind = match gen_kind {
226
+ GenBlockKind :: Async => CoroutineKind :: Async {
227
+ span : * span,
228
+ closure_id : peeled. node_id ( ) ,
229
+ return_impl_trait_id : self . next_node_id ( ) ,
230
+ } ,
231
+ GenBlockKind :: Gen => CoroutineKind :: Gen {
232
+ span : * span,
233
+ closure_id : peeled. node_id ( ) ,
234
+ return_impl_trait_id : self . next_node_id ( ) ,
235
+ } ,
236
+ GenBlockKind :: AsyncGen => CoroutineKind :: AsyncGen {
237
+ span : * span,
238
+ closure_id : peeled. node_id ( ) ,
239
+ return_impl_trait_id : self . next_node_id ( ) ,
240
+ } ,
241
+ } ;
242
+ let id = self . next_node_id ( ) ;
243
+ self . lower_expr_coroutine_closure (
244
+ binder,
245
+ ( * capture_clause) . max ( * gen_capture_clause) ,
246
+ e. id ,
247
+ hir_id,
248
+ coroutine_kind,
249
+ fn_decl,
250
+ & ast:: Expr {
251
+ id,
252
+ span : * span,
253
+ kind : ExprKind :: Block ( block. clone ( ) , None ) ,
254
+ attrs : thin_vec ! [ ] ,
255
+ tokens : None ,
256
+ } ,
257
+ * fn_decl_span,
258
+ * fn_arg_span,
259
+ )
260
+ } else {
261
+ self . lower_expr_closure (
262
+ binder,
263
+ * capture_clause,
264
+ e. id ,
265
+ hir_id,
266
+ * constness,
267
+ * movability,
268
+ fn_decl,
269
+ body,
270
+ * fn_decl_span,
271
+ * fn_arg_span,
272
+ )
273
+ }
274
+ }
228
275
} ,
229
276
ExprKind :: Gen ( capture_clause, block, genblock_kind, decl_span) => {
230
277
let desugaring_kind = match genblock_kind {
0 commit comments