Skip to content

Commit 1709dd5

Browse files
committed
Add basic rustfmt implementation & test
1 parent f3892a0 commit 1709dd5

File tree

4 files changed

+64
-13
lines changed

4 files changed

+64
-13
lines changed

src/expr.rs

+1-1
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, MatchKind, 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;

src/matches.rs

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

5-
use rustc_ast::{ast, MatchKind, 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,8 +72,7 @@ pub(crate) fn rewrite_match(
7272
shape: Shape,
7373
span: Span,
7474
attrs: &[ast::Attribute],
75-
// TODO: Use this
76-
_: MatchKind,
75+
match_kind: MatchKind,
7776
) -> Option<String> {
7877
// Do not take the rhs overhead from the upper expressions into account
7978
// when rewriting match condition.
@@ -133,15 +132,27 @@ pub(crate) fn rewrite_match(
133132
}
134133
} else {
135134
let span_after_cond = mk_sp(cond.span.hi(), span.hi());
136-
Some(format!(
137-
"match {}{}{{\n{}{}{}\n{}}}",
138-
cond_str,
139-
block_sep,
140-
inner_attrs_str,
141-
nested_indent_str,
142-
rewrite_match_arms(context, arms, shape, span_after_cond, open_brace_pos)?,
143-
shape.indent.to_string(context.config),
144-
))
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+
}
145156
}
146157
}
147158

+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)