Skip to content

Commit a3be235

Browse files
committed
Add gen blocks to ast and do some broken ast lowering
1 parent d5bf53b commit a3be235

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/closures.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ fn rewrite_closure_expr(
188188
fn allow_multi_line(expr: &ast::Expr) -> bool {
189189
match expr.kind {
190190
ast::ExprKind::Match(..)
191-
| ast::ExprKind::Async(..)
191+
| ast::ExprKind::Gen(..)
192192
| ast::ExprKind::Block(..)
193193
| ast::ExprKind::TryBlock(..)
194194
| ast::ExprKind::Loop(..)

src/expr.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -367,15 +367,15 @@ pub(crate) fn format_expr(
367367
))
368368
}
369369
}
370-
ast::ExprKind::Async(capture_by, ref block) => {
370+
ast::ExprKind::Gen(capture_by, ref block, ref kind) => {
371371
let mover = if capture_by == ast::CaptureBy::Value {
372372
"move "
373373
} else {
374374
""
375375
};
376376
if let rw @ Some(_) = rewrite_single_line_block(
377377
context,
378-
format!("async {mover}").as_str(),
378+
format!("{kind} {mover}").as_str(),
379379
block,
380380
Some(&expr.attrs),
381381
None,
@@ -386,7 +386,7 @@ pub(crate) fn format_expr(
386386
// 6 = `async `
387387
let budget = shape.width.saturating_sub(6);
388388
Some(format!(
389-
"async {mover}{}",
389+
"{kind} {mover}{}",
390390
rewrite_block(
391391
block,
392392
Some(&expr.attrs),
@@ -1371,7 +1371,7 @@ pub(crate) fn can_be_overflowed_expr(
13711371
}
13721372

13731373
// Handle always block-like expressions
1374-
ast::ExprKind::Async(..) | ast::ExprKind::Block(..) | ast::ExprKind::Closure(..) => true,
1374+
ast::ExprKind::Gen(..) | ast::ExprKind::Block(..) | ast::ExprKind::Closure(..) => true,
13751375

13761376
// Handle `[]` and `{}`-like expressions
13771377
ast::ExprKind::Array(..) | ast::ExprKind::Struct(..) => {

src/utils.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ pub(crate) fn is_block_expr(context: &RewriteContext<'_>, expr: &ast::Expr, repr
473473
| ast::ExprKind::If(..)
474474
| ast::ExprKind::Block(..)
475475
| ast::ExprKind::ConstBlock(..)
476-
| ast::ExprKind::Async(..)
476+
| ast::ExprKind::Gen(..)
477477
| ast::ExprKind::Loop(..)
478478
| ast::ExprKind::ForLoop(..)
479479
| ast::ExprKind::TryBlock(..)

0 commit comments

Comments
 (0)