Skip to content

Commit 3854ce9

Browse files
Febriananda Wida Pramuditaytmimi
Febriananda Wida Pramudita
authored andcommitted
add test and simplify code
1 parent 22a4306 commit 3854ce9

File tree

4 files changed

+57
-6
lines changed

4 files changed

+57
-6
lines changed

src/matches.rs

+3-6
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,9 @@ pub(crate) fn rewrite_match(
103103
let inner_attrs_str = if inner_attrs.is_empty() {
104104
String::new()
105105
} else {
106-
shape.indent.block_indent(context.config);
107-
let result = inner_attrs
108-
.rewrite(context, shape)
109-
.map(|s| format!("{}{}\n", nested_indent_str, s))?;
110-
shape.indent.block_unindent(context.config);
111-
result
106+
inner_attrs
107+
.rewrite(context, shape.block_indent(context.config.tab_spaces()))
108+
.map(|s| format!("{}{}\n", nested_indent_str, s))?
112109
};
113110

114111
let open_brace_pos = if inner_attrs.is_empty() {
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
pub fn main() {
2+
let a = Some(12)
3+
match a {
4+
#![attr1]
5+
#![attr2]
6+
#![attr3]
7+
_ => None,
8+
}
9+
10+
{
11+
match a {
12+
#![attr1]
13+
#![attr2]
14+
#![attr3]
15+
_ => None,
16+
}
17+
}
18+
}
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
pub fn main() {
2+
let a = Some(12)
3+
match a {
4+
#![attr1]
5+
#![attr2]
6+
#![attr3]
7+
_ => None,
8+
}
9+
10+
{
11+
match a {
12+
#![attr1]
13+
#![attr2]
14+
#![attr3]
15+
_ => None,
16+
}
17+
}
18+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
pub fn main() {
2+
let a = Some(12)
3+
match a {
4+
#![attr1]
5+
#![attr2]
6+
#![attr3]
7+
_ => None,
8+
}
9+
10+
{
11+
match a {
12+
#![attr1]
13+
#![attr2]
14+
#![attr3]
15+
_ => None,
16+
}
17+
}
18+
}

0 commit comments

Comments
 (0)