Skip to content

Commit cbe01e4

Browse files
feat: add initial support for ConstBlock expressions
1 parent 041e41b commit cbe01e4

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/formatting/expr.rs

+3
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,9 @@ pub(crate) fn format_expr(
124124
| ast::ExprKind::Loop(..)
125125
| ast::ExprKind::While(..) => to_control_flow(expr, expr_type)
126126
.and_then(|control_flow| control_flow.rewrite(context, shape)),
127+
ast::ExprKind::ConstBlock(ref anon_const) => {
128+
Some(format!("const {}", anon_const.rewrite(context, shape)?))
129+
}
127130
ast::ExprKind::Block(ref block, opt_label) => {
128131
match expr_type {
129132
ExprType::Statement => {

src/formatting/utils.rs

+1
Original file line numberDiff line numberDiff line change
@@ -482,6 +482,7 @@ pub(crate) fn is_block_expr(context: &RewriteContext<'_>, expr: &ast::Expr, repr
482482
| ast::ExprKind::While(..)
483483
| ast::ExprKind::If(..)
484484
| ast::ExprKind::Block(..)
485+
| ast::ExprKind::ConstBlock(..)
485486
| ast::ExprKind::Async(..)
486487
| ast::ExprKind::Loop(..)
487488
| ast::ExprKind::ForLoop(..)

0 commit comments

Comments
 (0)