Skip to content

Commit 7bedb9f

Browse files
authored
wrap macro line with width off by one char beyond max width (#5582)
Fix issue 3805
1 parent cedb7b5 commit 7bedb9f

File tree

3 files changed

+170
-4
lines changed

3 files changed

+170
-4
lines changed

src/macros.rs

+11-4
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ use crate::comment::{
2525
contains_comment, CharClasses, FindUncommented, FullCodeCharKind, LineClasses,
2626
};
2727
use crate::config::lists::*;
28+
use crate::config::Version;
2829
use crate::expr::{rewrite_array, rewrite_assign_rhs, RhsAssignKind};
2930
use crate::lists::{itemize_list, write_list, ListFormatting};
3031
use crate::overflow;
@@ -1245,8 +1246,16 @@ impl MacroBranch {
12451246
return None;
12461247
}
12471248

1248-
// 5 = " => {"
1249-
let mut result = format_macro_args(context, self.args.clone(), shape.sub_width(5)?)?;
1249+
let old_body = context.snippet(self.body).trim();
1250+
let has_block_body = old_body.starts_with('{');
1251+
let mut prefix_width = 5; // 5 = " => {"
1252+
if context.config.version() == Version::Two {
1253+
if has_block_body {
1254+
prefix_width = 6; // 6 = " => {{"
1255+
}
1256+
}
1257+
let mut result =
1258+
format_macro_args(context, self.args.clone(), shape.sub_width(prefix_width)?)?;
12501259

12511260
if multi_branch_style {
12521261
result += " =>";
@@ -1264,9 +1273,7 @@ impl MacroBranch {
12641273
// `$$`). We'll try and format like an AST node, but we'll substitute
12651274
// variables for new names with the same length first.
12661275

1267-
let old_body = context.snippet(self.body).trim();
12681276
let (body_str, substs) = replace_names(old_body)?;
1269-
let has_block_body = old_body.starts_with('{');
12701277

12711278
let mut config = context.config.clone();
12721279
config.set().show_parse_errors(false);

tests/source/issue-3805.rs

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
// rustfmt-version: Two
2+
// rustfmt-format_macro_matchers: true
3+
4+
// From original issue example - Line length 101
5+
macro_rules! test {
6+
($aasdfghj:expr, $qwertyuiop:expr, $zxcvbnmasdfghjkl:expr, $aeiouaeiouaeio:expr, $add:expr) => {{
7+
return;
8+
}};
9+
}
10+
11+
// Spaces between the `{` and `}`
12+
macro_rules! test {
13+
($aasdfghj:expr, $qwertyuiop:expr, $zxcvbnmasdfghjkl:expr, $aeiouaeiouaeio:expr, $add:expr) => { {
14+
return;
15+
} };
16+
}
17+
18+
// Multi `{}`
19+
macro_rules! test {
20+
($aasdfghj:expr, $qwertyuiop:expr, $zxcvbnmasdfghjkl:expr, $aeiouaeiouaeio:expr, $add:expr) => {{{{
21+
return;
22+
}}}};
23+
}
24+
25+
// Multi `{}` with spaces
26+
macro_rules! test {
27+
($aasdfghj:expr, $qwertyuiop:expr, $zxcvbnmasdfghjkl:expr, $aeiouaeiouaeio:expr, $add:expr) => { { { {
28+
return;
29+
} } } };
30+
}
31+
32+
// Line length 102
33+
macro_rules! test {
34+
($aasdfghj:expr, $qwertyuiop:expr, $zxcvbnmasdfghjkl:expr, $aeiouaeiouaeiou:expr, $add:expr) => {{
35+
return;
36+
}};
37+
}
38+
39+
// Line length 103
40+
macro_rules! test {
41+
($aasdfghj:expr, $qwertyuiop:expr, $zxcvbnmasdfghjkl:expr, $aeiouaeiouaeioua:expr, $add:expr) => {{
42+
return;
43+
}};
44+
}
45+
46+
// With extended macro body - Line length 101
47+
macro_rules! test {
48+
($aasdfghj:expr, $qwertyuiop:expr, $zxcvbnmasdfghjkl:expr, $aeiouaeiouaeio:expr, $add:expr) => {{
49+
let VAR = "VALUE"; return VAR;
50+
}};
51+
}
52+
53+
// With extended macro body - Line length 102
54+
macro_rules! test {
55+
($aasdfghj:expr, $qwertyuiop:expr, $zxcvbnmasdfghjkl:expr, $aeiouaeiouaeiou:expr, $add:expr) => {{
56+
let VAR = "VALUE"; return VAR;
57+
}};
58+
}
59+
60+
// With extended macro body - Line length 103
61+
macro_rules! test {
62+
($aasdfghj:expr, $qwertyuiop:expr, $zxcvbnmasdfghjkl:expr, $aeiouaeiouaeioua:expr, $add:expr) => {{
63+
let VAR = "VALUE"; return VAR;
64+
}};
65+
}

tests/target/issue-3805.rs

+94
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
// rustfmt-version: Two
2+
// rustfmt-format_macro_matchers: true
3+
4+
// From original issue example - Line length 101
5+
macro_rules! test {
6+
(
7+
$aasdfghj:expr, $qwertyuiop:expr, $zxcvbnmasdfghjkl:expr, $aeiouaeiouaeio:expr, $add:expr
8+
) => {{
9+
return;
10+
}};
11+
}
12+
13+
// Spaces between the `{` and `}`
14+
macro_rules! test {
15+
(
16+
$aasdfghj:expr, $qwertyuiop:expr, $zxcvbnmasdfghjkl:expr, $aeiouaeiouaeio:expr, $add:expr
17+
) => {{
18+
return;
19+
}};
20+
}
21+
22+
// Multi `{}`
23+
macro_rules! test {
24+
(
25+
$aasdfghj:expr, $qwertyuiop:expr, $zxcvbnmasdfghjkl:expr, $aeiouaeiouaeio:expr, $add:expr
26+
) => {{
27+
{
28+
{
29+
return;
30+
}
31+
}
32+
}};
33+
}
34+
35+
// Multi `{}` with spaces
36+
macro_rules! test {
37+
(
38+
$aasdfghj:expr, $qwertyuiop:expr, $zxcvbnmasdfghjkl:expr, $aeiouaeiouaeio:expr, $add:expr
39+
) => {{
40+
{
41+
{
42+
return;
43+
}
44+
}
45+
}};
46+
}
47+
48+
// Line length 102
49+
macro_rules! test {
50+
(
51+
$aasdfghj:expr, $qwertyuiop:expr, $zxcvbnmasdfghjkl:expr, $aeiouaeiouaeiou:expr, $add:expr
52+
) => {{
53+
return;
54+
}};
55+
}
56+
57+
// Line length 103
58+
macro_rules! test {
59+
(
60+
$aasdfghj:expr, $qwertyuiop:expr, $zxcvbnmasdfghjkl:expr, $aeiouaeiouaeioua:expr, $add:expr
61+
) => {{
62+
return;
63+
}};
64+
}
65+
66+
// With extended macro body - Line length 101
67+
macro_rules! test {
68+
(
69+
$aasdfghj:expr, $qwertyuiop:expr, $zxcvbnmasdfghjkl:expr, $aeiouaeiouaeio:expr, $add:expr
70+
) => {{
71+
let VAR = "VALUE";
72+
return VAR;
73+
}};
74+
}
75+
76+
// With extended macro body - Line length 102
77+
macro_rules! test {
78+
(
79+
$aasdfghj:expr, $qwertyuiop:expr, $zxcvbnmasdfghjkl:expr, $aeiouaeiouaeiou:expr, $add:expr
80+
) => {{
81+
let VAR = "VALUE";
82+
return VAR;
83+
}};
84+
}
85+
86+
// With extended macro body - Line length 103
87+
macro_rules! test {
88+
(
89+
$aasdfghj:expr, $qwertyuiop:expr, $zxcvbnmasdfghjkl:expr, $aeiouaeiouaeioua:expr, $add:expr
90+
) => {{
91+
let VAR = "VALUE";
92+
return VAR;
93+
}};
94+
}

0 commit comments

Comments
 (0)