Skip to content

Commit 6ebb66c

Browse files
coro_kind -> coroutine_kind
1 parent f114bb4 commit 6ebb66c

File tree

4 files changed

+23
-14
lines changed

4 files changed

+23
-14
lines changed

src/closures.rs

+15-6
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-
coro_kind: &Option<ast::CoroutineKind>,
32+
coroutine_kind: &Option<ast::CoroutineKind>,
3333
movability: ast::Movability,
3434
fn_decl: &ast::FnDecl,
3535
body: &ast::Expr,
@@ -40,7 +40,16 @@ pub(crate) fn rewrite_closure(
4040
debug!("rewrite_closure {:?}", body);
4141

4242
let (prefix, extra_offset) = rewrite_closure_fn_decl(
43-
binder, constness, capture, coro_kind, 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,
4453
)?;
4554
// 1 = space between `|...|` and body.
4655
let body_shape = shape.offset_left(extra_offset)?;
@@ -233,7 +242,7 @@ fn rewrite_closure_fn_decl(
233242
binder: &ast::ClosureBinder,
234243
constness: ast::Const,
235244
capture: ast::CaptureBy,
236-
coro_kind: &Option<ast::CoroutineKind>,
245+
coroutine_kind: &Option<ast::CoroutineKind>,
237246
movability: ast::Movability,
238247
fn_decl: &ast::FnDecl,
239248
body: &ast::Expr,
@@ -263,7 +272,7 @@ fn rewrite_closure_fn_decl(
263272
} else {
264273
""
265274
};
266-
let coro = match coro_kind {
275+
let coro = match coroutine_kind {
267276
Some(ast::CoroutineKind::Async { .. }) => "async ",
268277
Some(ast::CoroutineKind::Gen { .. }) => "gen ",
269278
None => "",
@@ -343,7 +352,7 @@ pub(crate) fn rewrite_last_closure(
343352
ref binder,
344353
constness,
345354
capture_clause,
346-
ref coro_kind,
355+
ref coroutine_kind,
347356
movability,
348357
ref fn_decl,
349358
ref body,
@@ -364,7 +373,7 @@ pub(crate) fn rewrite_last_closure(
364373
binder,
365374
constness,
366375
capture_clause,
367-
coro_kind,
376+
coroutine_kind,
368377
movability,
369378
fn_decl,
370379
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.coro_kind,
215+
&cl.coroutine_kind,
216216
cl.movability,
217217
&cl.fn_decl,
218218
&cl.body,

src/items.rs

+5-5
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-
coro_kind: Cow<'a, Option<ast::CoroutineKind>>,
290+
coroutine_kind: Cow<'a, Option<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-
coro_kind: Cow::Borrowed(&method_sig.header.coro_kind),
305+
coroutine_kind: Cow::Borrowed(&method_sig.header.coroutine_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-
coro_kind: Cow::Borrowed(&fn_sig.header.coro_kind),
331+
coroutine_kind: Cow::Borrowed(&fn_sig.header.coroutine_kind),
332332
defaultness,
333333
unsafety: fn_sig.header.unsafety,
334334
visibility: vis,
@@ -343,8 +343,8 @@ 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-
self.coro_kind
347-
.map(|coro_kind| result.push_str(format_coro(&coro_kind)));
346+
self.coroutine_kind
347+
.map(|coroutine_kind| result.push_str(format_coro(&coroutine_kind)));
348348
result.push_str(format_unsafety(self.unsafety));
349349
result.push_str(&format_extern(
350350
self.ext,

src/utils.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ pub(crate) fn format_visibility(
7575
}
7676

7777
#[inline]
78-
pub(crate) fn format_coro(coro_kind: &ast::CoroutineKind) -> &'static str {
79-
match coro_kind {
78+
pub(crate) fn format_coro(coroutine_kind: &ast::CoroutineKind) -> &'static str {
79+
match coroutine_kind {
8080
ast::CoroutineKind::Async { .. } => "async ",
8181
ast::CoroutineKind::Gen { .. } => "gen ",
8282
}

0 commit comments

Comments
 (0)