We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ebb66c commit 3ffacf7Copy full SHA for 3ffacf7
src/closures.rs
@@ -275,6 +275,7 @@ fn rewrite_closure_fn_decl(
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 { .. }) {
src/utils.rs
@@ -79,6 +79,7 @@ pub(crate) fn format_coro(coroutine_kind: &ast::CoroutineKind) -> &'static str {
79
match coroutine_kind {
80
ast::CoroutineKind::Async { .. } => "async ",
81
ast::CoroutineKind::Gen { .. } => "gen ",
82
+ ast::CoroutineKind::AsyncGen { .. } => "async gen ",
83
}
84
85
0 commit comments