about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLieselotte <52315535+she3py@users.noreply.github.com>2024-02-25 22:22:09 +0100
committerLieselotte <52315535+she3py@users.noreply.github.com>2024-02-25 22:22:09 +0100
commit7d82dd0d31b426afaf88d307cc3fb7deddb44552 (patch)
tree319ad69b30125476d4ecc72f2487dab2c86f97f6
parentce71137b96e32ad7d198d3a073aff722917c4fd0 (diff)
downloadrust-7d82dd0d31b426afaf88d307cc3fb7deddb44552.tar.gz
rust-7d82dd0d31b426afaf88d307cc3fb7deddb44552.zip
Add `ast::ExprKind::Dummy`
-rw-r--r--src/expr.rs2
-rw-r--r--src/utils.rs1
2 files changed, 2 insertions, 1 deletions
diff --git a/src/expr.rs b/src/expr.rs
index 4b86c2acdc5..d46d7c53bdb 100644
--- a/src/expr.rs
+++ b/src/expr.rs
@@ -404,7 +404,7 @@ pub(crate) fn format_expr(
             // These do not occur in the AST because macros aren't expanded.
             unreachable!()
         }
-        ast::ExprKind::Err => None,
+        ast::ExprKind::Err | ast::ExprKind::Dummy => None,
     };
 
     expr_rw
diff --git a/src/utils.rs b/src/utils.rs
index 642b6603b1e..b6b37e492e9 100644
--- a/src/utils.rs
+++ b/src/utils.rs
@@ -497,6 +497,7 @@ pub(crate) fn is_block_expr(context: &RewriteContext<'_>, expr: &ast::Expr, repr
         | ast::ExprKind::Break(..)
         | ast::ExprKind::Cast(..)
         | ast::ExprKind::Continue(..)
+        | ast::ExprKind::Dummy
         | ast::ExprKind::Err
         | ast::ExprKind::Field(..)
         | ast::ExprKind::IncludedBytes(..)