Skip to content

Commit 97fdae1

Browse files
committed
Merge Async and Gen into CoroutineKind
1 parent 1ab7fc9 commit 97fdae1

File tree

4 files changed

+26
-17
lines changed

4 files changed

+26
-17
lines changed

src/closures.rs

+16-8
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pub(crate) fn rewrite_closure(
2929
binder: &ast::ClosureBinder,
3030
constness: ast::Const,
3131
capture: ast::CaptureBy,
32-
is_async: &ast::Async,
32+
coro_kind: &ast::CoroutineKind,
3333
movability: ast::Movability,
3434
fn_decl: &ast::FnDecl,
3535
body: &ast::Expr,
@@ -40,7 +40,7 @@ pub(crate) fn rewrite_closure(
4040
debug!("rewrite_closure {:?}", body);
4141

4242
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,
4444
)?;
4545
// 1 = space between `|...|` and body.
4646
let body_shape = shape.offset_left(extra_offset)?;
@@ -233,7 +233,7 @@ fn rewrite_closure_fn_decl(
233233
binder: &ast::ClosureBinder,
234234
constness: ast::Const,
235235
capture: ast::CaptureBy,
236-
asyncness: &ast::Async,
236+
coro_kind: &ast::CoroutineKind,
237237
movability: ast::Movability,
238238
fn_decl: &ast::FnDecl,
239239
body: &ast::Expr,
@@ -263,7 +263,8 @@ fn rewrite_closure_fn_decl(
263263
} else {
264264
""
265265
};
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 { "" };
267268
let mover = if matches!(capture, ast::CaptureBy::Value { .. }) {
268269
"move "
269270
} else {
@@ -272,7 +273,14 @@ fn rewrite_closure_fn_decl(
272273
// 4 = "|| {".len(), which is overconservative when the closure consists of
273274
// a single expression.
274275
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+
)?
276284
.sub_width(4)?;
277285

278286
// 1 = |
@@ -310,7 +318,7 @@ fn rewrite_closure_fn_decl(
310318
.tactic(tactic)
311319
.preserve_newline(true);
312320
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}|");
314322

315323
if !ret_str.is_empty() {
316324
if prefix.contains('\n') {
@@ -339,7 +347,7 @@ pub(crate) fn rewrite_last_closure(
339347
ref binder,
340348
constness,
341349
capture_clause,
342-
ref asyncness,
350+
ref coro_kind,
343351
movability,
344352
ref fn_decl,
345353
ref body,
@@ -360,7 +368,7 @@ pub(crate) fn rewrite_last_closure(
360368
binder,
361369
constness,
362370
capture_clause,
363-
asyncness,
371+
coro_kind,
364372
movability,
365373
fn_decl,
366374
body,

src/expr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ pub(crate) fn format_expr(
212212
&cl.binder,
213213
cl.constness,
214214
cl.capture_clause,
215-
&cl.asyncness,
215+
&cl.coro_kind,
216216
cl.movability,
217217
&cl.fn_decl,
218218
&cl.body,

src/items.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ pub(crate) struct FnSig<'a> {
287287
decl: &'a ast::FnDecl,
288288
generics: &'a ast::Generics,
289289
ext: ast::Extern,
290-
is_async: Cow<'a, ast::Async>,
290+
coro_kind: Cow<'a, ast::CoroutineKind>,
291291
constness: ast::Const,
292292
defaultness: ast::Defaultness,
293293
unsafety: ast::Unsafe,
@@ -302,7 +302,7 @@ impl<'a> FnSig<'a> {
302302
) -> FnSig<'a> {
303303
FnSig {
304304
unsafety: method_sig.header.unsafety,
305-
is_async: Cow::Borrowed(&method_sig.header.asyncness),
305+
coro_kind: Cow::Borrowed(&method_sig.header.coro_kind),
306306
constness: method_sig.header.constness,
307307
defaultness: ast::Defaultness::Final,
308308
ext: method_sig.header.ext,
@@ -328,7 +328,7 @@ impl<'a> FnSig<'a> {
328328
generics,
329329
ext: fn_sig.header.ext,
330330
constness: fn_sig.header.constness,
331-
is_async: Cow::Borrowed(&fn_sig.header.asyncness),
331+
coro_kind: Cow::Borrowed(&fn_sig.header.coro_kind),
332332
defaultness,
333333
unsafety: fn_sig.header.unsafety,
334334
visibility: vis,
@@ -343,7 +343,7 @@ impl<'a> FnSig<'a> {
343343
result.push_str(&*format_visibility(context, self.visibility));
344344
result.push_str(format_defaultness(self.defaultness));
345345
result.push_str(format_constness(self.constness));
346-
result.push_str(format_async(&self.is_async));
346+
result.push_str(format_coro(&self.coro_kind));
347347
result.push_str(format_unsafety(self.unsafety));
348348
result.push_str(&format_extern(
349349
self.ext,

src/utils.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,11 @@ pub(crate) fn format_visibility(
7575
}
7676

7777
#[inline]
78-
pub(crate) fn format_async(is_async: &ast::Async) -> &'static str {
79-
match is_async {
80-
ast::Async::Yes { .. } => "async ",
81-
ast::Async::No => "",
78+
pub(crate) fn format_coro(coro_kind: &ast::CoroutineKind) -> &'static str {
79+
match coro_kind {
80+
ast::CoroutineKind::Async { .. } => "async ",
81+
ast::CoroutineKind::Gen { .. } => "gen ",
82+
ast::CoroutineKind::None => "",
8283
}
8384
}
8485

0 commit comments

Comments
 (0)