@@ -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
+ coroutine_kind : & Option < ast:: CoroutineKind > ,
33
33
movability : ast:: Movability ,
34
34
fn_decl : & ast:: FnDecl ,
35
35
body : & ast:: Expr ,
@@ -40,7 +40,16 @@ 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,
44
+ constness,
45
+ capture,
46
+ coroutine_kind,
47
+ movability,
48
+ fn_decl,
49
+ body,
50
+ span,
51
+ context,
52
+ shape,
44
53
) ?;
45
54
// 1 = space between `|...|` and body.
46
55
let body_shape = shape. offset_left ( extra_offset) ?;
@@ -188,7 +197,7 @@ fn rewrite_closure_expr(
188
197
fn allow_multi_line ( expr : & ast:: Expr ) -> bool {
189
198
match expr. kind {
190
199
ast:: ExprKind :: Match ( ..)
191
- | ast:: ExprKind :: Async ( ..)
200
+ | ast:: ExprKind :: Gen ( ..)
192
201
| ast:: ExprKind :: Block ( ..)
193
202
| ast:: ExprKind :: TryBlock ( ..)
194
203
| ast:: ExprKind :: Loop ( ..)
@@ -233,7 +242,7 @@ fn rewrite_closure_fn_decl(
233
242
binder : & ast:: ClosureBinder ,
234
243
constness : ast:: Const ,
235
244
capture : ast:: CaptureBy ,
236
- asyncness : & ast:: Async ,
245
+ coroutine_kind : & Option < ast:: CoroutineKind > ,
237
246
movability : ast:: Movability ,
238
247
fn_decl : & ast:: FnDecl ,
239
248
body : & ast:: Expr ,
@@ -263,16 +272,21 @@ fn rewrite_closure_fn_decl(
263
272
} else {
264
273
""
265
274
} ;
266
- let is_async = if asyncness. is_async ( ) { "async " } else { "" } ;
267
- let mover = if capture == ast:: CaptureBy :: Value {
275
+ let coro = match coroutine_kind {
276
+ Some ( ast:: CoroutineKind :: Async { .. } ) => "async " ,
277
+ Some ( ast:: CoroutineKind :: Gen { .. } ) => "gen " ,
278
+ Some ( ast:: CoroutineKind :: AsyncGen { .. } ) => "async gen " ,
279
+ None => "" ,
280
+ } ;
281
+ let mover = if matches ! ( capture, ast:: CaptureBy :: Value { .. } ) {
268
282
"move "
269
283
} else {
270
284
""
271
285
} ;
272
286
// 4 = "|| {".len(), which is overconservative when the closure consists of
273
287
// a single expression.
274
288
let nested_shape = shape
275
- . shrink_left ( binder. len ( ) + const_. len ( ) + immovable. len ( ) + is_async . len ( ) + mover. len ( ) ) ?
289
+ . shrink_left ( binder. len ( ) + const_. len ( ) + immovable. len ( ) + coro . len ( ) + mover. len ( ) ) ?
276
290
. sub_width ( 4 ) ?;
277
291
278
292
// 1 = |
@@ -310,7 +324,7 @@ fn rewrite_closure_fn_decl(
310
324
. tactic ( tactic)
311
325
. preserve_newline ( true ) ;
312
326
let list_str = write_list ( & item_vec, & fmt) ?;
313
- let mut prefix = format ! ( "{binder}{const_}{immovable}{is_async }{mover}|{list_str}|" ) ;
327
+ let mut prefix = format ! ( "{binder}{const_}{immovable}{coro }{mover}|{list_str}|" ) ;
314
328
315
329
if !ret_str. is_empty ( ) {
316
330
if prefix. contains ( '\n' ) {
@@ -339,7 +353,7 @@ pub(crate) fn rewrite_last_closure(
339
353
ref binder,
340
354
constness,
341
355
capture_clause,
342
- ref asyncness ,
356
+ ref coroutine_kind ,
343
357
movability,
344
358
ref fn_decl,
345
359
ref body,
@@ -360,7 +374,7 @@ pub(crate) fn rewrite_last_closure(
360
374
binder,
361
375
constness,
362
376
capture_clause,
363
- asyncness ,
377
+ coroutine_kind ,
364
378
movability,
365
379
fn_decl,
366
380
body,
0 commit comments