Skip to content

Commit 0b2fd9b

Browse files
dtolnaycalebcartwright
authored andcommitted
Fix static async closure qualifier order
1 parent 7b8303d commit 0b2fd9b

File tree

3 files changed

+33
-7
lines changed

3 files changed

+33
-7
lines changed

src/closures.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -236,21 +236,21 @@ fn rewrite_closure_fn_decl(
236236
context: &RewriteContext<'_>,
237237
shape: Shape,
238238
) -> Option<(String, usize)> {
239-
let is_async = if asyncness.is_async() { "async " } else { "" };
240-
let mover = if capture == ast::CaptureBy::Value {
241-
"move "
239+
let immovable = if movability == ast::Movability::Static {
240+
"static "
242241
} else {
243242
""
244243
};
245-
let immovable = if movability == ast::Movability::Static {
246-
"static "
244+
let is_async = if asyncness.is_async() { "async " } else { "" };
245+
let mover = if capture == ast::CaptureBy::Value {
246+
"move "
247247
} else {
248248
""
249249
};
250250
// 4 = "|| {".len(), which is overconservative when the closure consists of
251251
// a single expression.
252252
let nested_shape = shape
253-
.shrink_left(is_async.len() + mover.len() + immovable.len())?
253+
.shrink_left(immovable.len() + is_async.len() + mover.len())?
254254
.sub_width(4)?;
255255

256256
// 1 = |
@@ -288,7 +288,7 @@ fn rewrite_closure_fn_decl(
288288
.tactic(tactic)
289289
.preserve_newline(true);
290290
let list_str = write_list(&item_vec, &fmt)?;
291-
let mut prefix = format!("{}{}{}|{}|", is_async, immovable, mover, list_str);
291+
let mut prefix = format!("{}{}{}|{}|", immovable, is_async, mover, list_str);
292292

293293
if !ret_str.is_empty() {
294294
if prefix.contains('\n') {

tests/source/async_block.rs

+16
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,20 @@ fn baz() {
3232
Ok(())
3333
},
3434
);
35+
36+
spawn(
37+
a,
38+
static async || {
39+
action();
40+
Ok(())
41+
},
42+
);
43+
44+
spawn(
45+
a,
46+
static async move || {
47+
action();
48+
Ok(())
49+
},
50+
);
3551
}

tests/target/async_block.rs

+10
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,14 @@ fn baz() {
2222
action();
2323
Ok(())
2424
});
25+
26+
spawn(a, static async || {
27+
action();
28+
Ok(())
29+
});
30+
31+
spawn(a, static async move || {
32+
action();
33+
Ok(())
34+
});
2535
}

0 commit comments

Comments
 (0)