@@ -29,7 +29,7 @@ pub(crate) fn rewrite_closure(
29
29
binder : & ast:: ClosureBinder ,
30
30
constness : ast:: Const ,
31
31
capture : ast:: CaptureBy ,
32
- is_async : & ast:: Async ,
32
+ coro_kind : & ast:: CoroutineKind ,
33
33
movability : ast:: Movability ,
34
34
fn_decl : & ast:: FnDecl ,
35
35
body : & ast:: Expr ,
@@ -40,7 +40,7 @@ pub(crate) fn rewrite_closure(
40
40
debug ! ( "rewrite_closure {:?}" , body) ;
41
41
42
42
let ( prefix, extra_offset) = rewrite_closure_fn_decl (
43
- binder, constness, capture, is_async , movability, fn_decl, body, span, context, shape,
43
+ binder, constness, capture, coro_kind , movability, fn_decl, body, span, context, shape,
44
44
) ?;
45
45
// 1 = space between `|...|` and body.
46
46
let body_shape = shape. offset_left ( extra_offset) ?;
@@ -233,7 +233,7 @@ fn rewrite_closure_fn_decl(
233
233
binder : & ast:: ClosureBinder ,
234
234
constness : ast:: Const ,
235
235
capture : ast:: CaptureBy ,
236
- asyncness : & ast:: Async ,
236
+ coro_kind : & ast:: CoroutineKind ,
237
237
movability : ast:: Movability ,
238
238
fn_decl : & ast:: FnDecl ,
239
239
body : & ast:: Expr ,
@@ -263,7 +263,8 @@ fn rewrite_closure_fn_decl(
263
263
} else {
264
264
""
265
265
} ;
266
- let is_async = if asyncness. is_async ( ) { "async " } else { "" } ;
266
+ let is_async = if coro_kind. is_async ( ) { "async " } else { "" } ;
267
+ let is_gen = if coro_kind. is_gen ( ) { "gen " } else { "" } ;
267
268
let mover = if matches ! ( capture, ast:: CaptureBy :: Value { .. } ) {
268
269
"move "
269
270
} else {
@@ -272,7 +273,14 @@ fn rewrite_closure_fn_decl(
272
273
// 4 = "|| {".len(), which is overconservative when the closure consists of
273
274
// a single expression.
274
275
let nested_shape = shape
275
- . shrink_left ( binder. len ( ) + const_. len ( ) + immovable. len ( ) + is_async. len ( ) + mover. len ( ) ) ?
276
+ . shrink_left (
277
+ binder. len ( )
278
+ + const_. len ( )
279
+ + immovable. len ( )
280
+ + is_async. len ( )
281
+ + is_gen. len ( )
282
+ + mover. len ( ) ,
283
+ ) ?
276
284
. sub_width ( 4 ) ?;
277
285
278
286
// 1 = |
@@ -310,7 +318,7 @@ fn rewrite_closure_fn_decl(
310
318
. tactic ( tactic)
311
319
. preserve_newline ( true ) ;
312
320
let list_str = write_list ( & item_vec, & fmt) ?;
313
- let mut prefix = format ! ( "{binder}{const_}{immovable}{is_async}{mover}|{list_str}|" ) ;
321
+ let mut prefix = format ! ( "{binder}{const_}{immovable}{is_async}{is_gen}{ mover}|{list_str}|" ) ;
314
322
315
323
if !ret_str. is_empty ( ) {
316
324
if prefix. contains ( '\n' ) {
@@ -339,7 +347,7 @@ pub(crate) fn rewrite_last_closure(
339
347
ref binder,
340
348
constness,
341
349
capture_clause,
342
- ref asyncness ,
350
+ ref coro_kind ,
343
351
movability,
344
352
ref fn_decl,
345
353
ref body,
@@ -360,7 +368,7 @@ pub(crate) fn rewrite_last_closure(
360
368
binder,
361
369
constness,
362
370
capture_clause,
363
- asyncness ,
371
+ coro_kind ,
364
372
movability,
365
373
fn_decl,
366
374
body,
0 commit comments