Skip to content

Commit 0aa66d1

Browse files
authored
Rollup merge of #121619 - RossSmyth:pfix_match, r=petrochenkov
Experimental feature postfix match This has a basic experimental implementation for the RFC postfix match (rust-lang/rfcs#3295, #121618). [Liaison is](https://rust-lang.zulipchat.com/#narrow/stream/213817-t-lang/topic/Postfix.20Match.20Liaison/near/423301844) ```@scottmcm``` with the lang team's [experimental feature gate process](https://github.com/rust-lang/lang-team/blob/master/src/how_to/experiment.md). This feature has had an RFC for a while, and there has been discussion on it for a while. It would probably be valuable to see it out in the field rather than continue discussing it. This feature also allows to see how popular postfix expressions like this are for the postfix macros RFC, as those will take more time to implement. It is entirely implemented in the parser, so it should be relatively easy to remove if needed. This PR is split in to 5 commits to ease review. 1. The implementation of the feature & gating. 2. Add a MatchKind field, fix uses, fix pretty. 3. Basic rustfmt impl, as rustfmt crashes upon seeing this syntax without a fix. 4. Add new MatchSource to HIR for Clippy & other HIR consumers
2 parents f670f3b + 1709dd5 commit 0aa66d1

File tree

4 files changed

+67
-14
lines changed

4 files changed

+67
-14
lines changed

src/expr.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use std::cmp::min;
33

44
use itertools::Itertools;
55
use rustc_ast::token::{Delimiter, Lit, LitKind};
6-
use rustc_ast::{ast, ptr, token, ForLoopKind};
6+
use rustc_ast::{ast, ptr, token, ForLoopKind, MatchKind};
77
use rustc_span::{BytePos, Span};
88

99
use crate::chains::rewrite_chain;
@@ -170,8 +170,8 @@ pub(crate) fn format_expr(
170170
}
171171
}
172172
}
173-
ast::ExprKind::Match(ref cond, ref arms) => {
174-
rewrite_match(context, cond, arms, shape, expr.span, &expr.attrs)
173+
ast::ExprKind::Match(ref cond, ref arms, kind) => {
174+
rewrite_match(context, cond, arms, shape, expr.span, &expr.attrs, kind)
175175
}
176176
ast::ExprKind::Path(ref qself, ref path) => {
177177
rewrite_path(context, PathContext::Expr, qself, path, shape)
@@ -625,7 +625,7 @@ pub(crate) fn rewrite_cond(
625625
shape: Shape,
626626
) -> Option<String> {
627627
match expr.kind {
628-
ast::ExprKind::Match(ref cond, _) => {
628+
ast::ExprKind::Match(ref cond, _, MatchKind::Prefix) => {
629629
// `match `cond` {`
630630
let cond_shape = match context.config.indent_style() {
631631
IndentStyle::Visual => shape.shrink_left(6).and_then(|s| s.sub_width(2))?,

src/matches.rs

+23-10
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
use std::iter::repeat;
44

5-
use rustc_ast::{ast, ptr};
5+
use rustc_ast::{ast, ptr, MatchKind};
66
use rustc_span::{BytePos, Span};
77

88
use crate::comment::{combine_strs_with_missing_comments, rewrite_comment};
@@ -72,6 +72,7 @@ pub(crate) fn rewrite_match(
7272
shape: Shape,
7373
span: Span,
7474
attrs: &[ast::Attribute],
75+
match_kind: MatchKind,
7576
) -> Option<String> {
7677
// Do not take the rhs overhead from the upper expressions into account
7778
// when rewriting match condition.
@@ -131,15 +132,27 @@ pub(crate) fn rewrite_match(
131132
}
132133
} else {
133134
let span_after_cond = mk_sp(cond.span.hi(), span.hi());
134-
Some(format!(
135-
"match {}{}{{\n{}{}{}\n{}}}",
136-
cond_str,
137-
block_sep,
138-
inner_attrs_str,
139-
nested_indent_str,
140-
rewrite_match_arms(context, arms, shape, span_after_cond, open_brace_pos)?,
141-
shape.indent.to_string(context.config),
142-
))
135+
136+
match match_kind {
137+
MatchKind::Prefix => Some(format!(
138+
"match {}{}{{\n{}{}{}\n{}}}",
139+
cond_str,
140+
block_sep,
141+
inner_attrs_str,
142+
nested_indent_str,
143+
rewrite_match_arms(context, arms, shape, span_after_cond, open_brace_pos)?,
144+
shape.indent.to_string(context.config),
145+
)),
146+
MatchKind::Postfix => Some(format!(
147+
"{}.match{}{{\n{}{}{}\n{}}}",
148+
cond_str,
149+
block_sep,
150+
inner_attrs_str,
151+
nested_indent_str,
152+
rewrite_match_arms(context, arms, shape, span_after_cond, open_brace_pos)?,
153+
shape.indent.to_string(context.config),
154+
)),
155+
}
143156
}
144157
}
145158

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#![feature(postfix_match)]
2+
3+
fn main() {
4+
let val = Some(42);
5+
6+
val.match {
7+
Some(_) => 2,
8+
_ => 1
9+
};
10+
11+
Some(2).match {
12+
Some(_) => true,
13+
None => false
14+
}.match {
15+
false => "ferris is cute",
16+
true => "I turn cats in to petted cats",
17+
}.match {
18+
_ => (),
19+
}
20+
}
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#![feature(postfix_match)]
2+
3+
fn main() {
4+
let val = Some(42);
5+
6+
val.match {
7+
Some(_) => 2,
8+
_ => 1,
9+
};
10+
11+
Some(2).match {
12+
Some(_) => true,
13+
None => false,
14+
}.match {
15+
false => "ferris is cute",
16+
true => "I turn cats in to petted cats",
17+
}.match {
18+
_ => (),
19+
}
20+
}

0 commit comments

Comments
 (0)