Skip to content

Commit 7d82dd0

Browse files
committed
Add ast::ExprKind::Dummy
1 parent ce71137 commit 7d82dd0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/expr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ pub(crate) fn format_expr(
404404
// These do not occur in the AST because macros aren't expanded.
405405
unreachable!()
406406
}
407-
ast::ExprKind::Err => None,
407+
ast::ExprKind::Err | ast::ExprKind::Dummy => None,
408408
};
409409

410410
expr_rw

src/utils.rs

+1
Original file line numberDiff line numberDiff line change
@@ -497,6 +497,7 @@ pub(crate) fn is_block_expr(context: &RewriteContext<'_>, expr: &ast::Expr, repr
497497
| ast::ExprKind::Break(..)
498498
| ast::ExprKind::Cast(..)
499499
| ast::ExprKind::Continue(..)
500+
| ast::ExprKind::Dummy
500501
| ast::ExprKind::Err
501502
| ast::ExprKind::Field(..)
502503
| ast::ExprKind::IncludedBytes(..)

0 commit comments

Comments
 (0)