about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2025-05-15 23:24:47 +0200
committerSamuel Tardieu <sam@rfc1149.net>2025-05-15 23:44:23 +0200
commitcf878d8f260e535fab7e6f6401fc61e5d846ac4d (patch)
tree0d5ad0b4e447c6281d96cccd3ce097b6a5653c38
parentc4e05e53d19b550a358ee8b2e29ecd5a11075800 (diff)
downloadrust-cf878d8f260e535fab7e6f6401fc61e5d846ac4d.tar.gz
rust-cf878d8f260e535fab7e6f6401fc61e5d846ac4d.zip
HIR: explain in comment why `ExprKind::If` "then" is an `Expr`
One could be tempted to replace the "then" `hir::Expr` with kind
`hir::ExprKind::Block` by a `hir::Block`. Explain why this would not be
a good idea.
-rw-r--r--compiler/rustc_hir/src/hir.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_hir/src/hir.rs b/compiler/rustc_hir/src/hir.rs
index 107aea4e5a4..fa1d1ec0a86 100644
--- a/compiler/rustc_hir/src/hir.rs
+++ b/compiler/rustc_hir/src/hir.rs
@@ -2744,6 +2744,8 @@ pub enum ExprKind<'hir> {
     ///
     /// The "then" expr is always `ExprKind::Block`. If present, the "else" expr is always
     /// `ExprKind::Block` (for `else`) or `ExprKind::If` (for `else if`).
+    /// Note that using an `Expr` instead of a `Block` for the "then" part is intentional,
+    /// as it simplifies the type coercion machinery.
     If(&'hir Expr<'hir>, &'hir Expr<'hir>, Option<&'hir Expr<'hir>>),
     /// A conditionless loop (can be exited with `break`, `continue`, or `return`).
     ///