Skip to content

Commit e1b5f21

Browse files
committed
Add postfix match MatchSource to HIR
1 parent 87dbd59 commit e1b5f21

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

compiler/rustc_ast_lowering/src/expr.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,13 @@ impl<'hir> LoweringContext<'_, 'hir> {
184184
)
185185
}),
186186
ExprKind::TryBlock(body) => self.lower_expr_try_block(body),
187-
ExprKind::Match(expr, arms, _) => hir::ExprKind::Match(
187+
ExprKind::Match(expr, arms, kind) => hir::ExprKind::Match(
188188
self.lower_expr(expr),
189189
self.arena.alloc_from_iter(arms.iter().map(|x| self.lower_arm(x))),
190-
hir::MatchSource::Normal,
190+
match kind {
191+
MatchKind::Prefix => hir::MatchSource::Normal,
192+
MatchKind::Postfix => hir::MatchSource::Postfix,
193+
},
191194
),
192195
ExprKind::Await(expr, await_kw_span) => self.lower_expr_await(*await_kw_span, expr),
193196
ExprKind::Closure(box Closure {

compiler/rustc_hir/src/hir.rs

+3
Original file line numberDiff line numberDiff line change
@@ -2004,6 +2004,8 @@ pub enum LocalSource {
20042004
pub enum MatchSource {
20052005
/// A `match _ { .. }`.
20062006
Normal,
2007+
/// A `expr.match { .. }`.
2008+
Postfix,
20072009
/// A desugared `for _ in _ { .. }` loop.
20082010
ForLoopDesugar,
20092011
/// A desugared `?` operator.
@@ -2020,6 +2022,7 @@ impl MatchSource {
20202022
use MatchSource::*;
20212023
match self {
20222024
Normal => "match",
2025+
Postfix => ".match",
20232026
ForLoopDesugar => "for",
20242027
TryDesugar(_) => "?",
20252028
AwaitDesugar => ".await",

compiler/rustc_mir_build/src/thir/pattern/check_match.rs

+1
Original file line numberDiff line numberDiff line change
@@ -477,6 +477,7 @@ impl<'p, 'tcx> MatchVisitor<'p, 'tcx> {
477477
// when the iterator is an uninhabited type. unreachable_code will trigger instead.
478478
hir::MatchSource::ForLoopDesugar if arms.len() == 1 => {}
479479
hir::MatchSource::ForLoopDesugar
480+
| hir::MatchSource::Postfix
480481
| hir::MatchSource::Normal
481482
| hir::MatchSource::FormatArgs => report_arm_reachability(&cx, &report),
482483
// Unreachable patterns in try and await expressions occur when one of

compiler/rustc_passes/src/check_const.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ impl NonConstExpr {
4848
Self::Match(TryDesugar(_)) => &[sym::const_try],
4949

5050
// All other expressions are allowed.
51-
Self::Loop(Loop | While) | Self::Match(Normal | FormatArgs) => &[],
51+
Self::Loop(Loop | While) | Self::Match(Normal | Postfix | FormatArgs) => &[],
5252
};
5353

5454
Some(gates)

0 commit comments

Comments
 (0)