File tree 3 files changed +12
-7
lines changed
3 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -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
- coro_kind : & ast:: CoroutineKind ,
32
+ coro_kind : & Option < ast:: CoroutineKind > ,
33
33
movability : ast:: Movability ,
34
34
fn_decl : & ast:: FnDecl ,
35
35
body : & ast:: Expr ,
@@ -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
- coro_kind : & ast:: CoroutineKind ,
236
+ coro_kind : & Option < ast:: CoroutineKind > ,
237
237
movability : ast:: Movability ,
238
238
fn_decl : & ast:: FnDecl ,
239
239
body : & ast:: Expr ,
@@ -263,8 +263,13 @@ fn rewrite_closure_fn_decl(
263
263
} else {
264
264
""
265
265
} ;
266
- let is_async = if coro_kind. is_async ( ) { "async " } else { "" } ;
267
- let is_gen = if coro_kind. is_gen ( ) { "gen " } else { "" } ;
266
+ let ( is_async, is_gen) = if let Some ( coro_kind) = coro_kind {
267
+ let is_async = if coro_kind. is_async ( ) { "async " } else { "" } ;
268
+ let is_gen = if coro_kind. is_gen ( ) { "gen " } else { "" } ;
269
+ ( is_async, is_gen)
270
+ } else {
271
+ ( "" , "" )
272
+ } ;
268
273
let mover = if matches ! ( capture, ast:: CaptureBy :: Value { .. } ) {
269
274
"move "
270
275
} else {
Original file line number Diff line number Diff line change @@ -287,7 +287,7 @@ pub(crate) struct FnSig<'a> {
287
287
decl : & ' a ast:: FnDecl ,
288
288
generics : & ' a ast:: Generics ,
289
289
ext : ast:: Extern ,
290
- coro_kind : Cow < ' a , ast:: CoroutineKind > ,
290
+ coro_kind : Cow < ' a , Option < ast:: CoroutineKind > > ,
291
291
constness : ast:: Const ,
292
292
defaultness : ast:: Defaultness ,
293
293
unsafety : ast:: Unsafe ,
@@ -343,7 +343,8 @@ impl<'a> FnSig<'a> {
343
343
result. push_str ( & * format_visibility ( context, self . visibility ) ) ;
344
344
result. push_str ( format_defaultness ( self . defaultness ) ) ;
345
345
result. push_str ( format_constness ( self . constness ) ) ;
346
- result. push_str ( format_coro ( & self . coro_kind ) ) ;
346
+ self . coro_kind
347
+ . map ( |coro_kind| result. push_str ( format_coro ( & coro_kind) ) ) ;
347
348
result. push_str ( format_unsafety ( self . unsafety ) ) ;
348
349
result. push_str ( & format_extern (
349
350
self . ext ,
Original file line number Diff line number Diff line change @@ -79,7 +79,6 @@ pub(crate) fn format_coro(coro_kind: &ast::CoroutineKind) -> &'static str {
79
79
match coro_kind {
80
80
ast:: CoroutineKind :: Async { .. } => "async " ,
81
81
ast:: CoroutineKind :: Gen { .. } => "gen " ,
82
- ast:: CoroutineKind :: None => "" ,
83
82
}
84
83
}
85
84
You can’t perform that action at this time.
0 commit comments