Skip to content

Commit d359679

Browse files
committed
wrap else { for long, single-lined initializer expressions
This helps to prevent max width errors.
1 parent a80e63a commit d359679

File tree

3 files changed

+20
-16
lines changed

3 files changed

+20
-16
lines changed

src/items.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,10 @@ fn same_line_else_kw_and_brace(
175175
init_shape: Shape,
176176
) -> bool {
177177
if !init_str.contains('\n') {
178-
// initializer expression is single lined so the "else {" should be placed on the same line
179-
return true;
178+
// initializer expression is single lined. The "else {" can only be placed on the same line
179+
// as the initializer expression if there is enough room for it.
180+
// 7 = ` else {`
181+
return init_shape.width.saturating_sub(init_str.len()) >= 7;
180182
}
181183

182184
// 1. The initializer expression ends with one or more `)`, `]`, `}`.

tests/source/let_else.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -79,27 +79,27 @@ fn unbreakable_initializer_expr_pre_formatting_let_else_length_near_max_width()
7979

8080
fn unbreakable_initializer_expr_pre_formatting_length_up_to_opening_brace_near_max_width() {
8181
// Pre Formatting:
82-
// The length of `(indent)let pat = init else {` is 100 (max_width)
82+
// The length of `(indent)let pat = init else {` is 99 (< max_width)
8383
// Post Formatting:
8484
// The else keyword and opening brace remain on the same line as the initializer expr,
8585
// and the else block is formatted over multiple lines because we can't fit the
8686
// else block on the same line as the initializer expr.
87-
let Some(x) = some_really_really_really_really_really_really_really_really_long_name____E else {return};
87+
let Some(x) = some_really_really_really_really_really_really_really_really_long_name___E else {return};
8888

8989
// Pre Formatting:
9090
// The length of `(indent)let pat = init else {` is 101 (> max_width)
9191
// Post Formatting:
92-
// The else keyword and opening brace remain on the same line as the initializer expr,
93-
// which leads to the `{` exceeding the max width
92+
// The else keyword and opening brace cannot fit on the same line as the initializer expr.
93+
// They are formatted on the next line.
9494
let Some(x) = some_really_really_really_really_really_really_really_really_long_name_____F else {return};
9595
}
9696

9797
fn unbreakable_initializer_expr_pre_formatting_length_through_initializer_expr_near_max_width() {
9898
// Pre Formatting:
9999
// The length of `(indent)let pat = init` is 99 (< max_width)
100100
// Post Formatting:
101-
// The else keyword and opening brace remain on the same line as the initializer expr,
102-
// which leads to the `else {` exceeding the max width
101+
// The else keyword and opening brace cannot fit on the same line as the initializer expr.
102+
// They are formatted on the next line.
103103
let Some(x) = some_really_really_really_really_really_really_really_really_really_long_name___G else {return};
104104

105105
// Pre Formatting:

tests/target/let_else.rs

+10-8
Original file line numberDiff line numberDiff line change
@@ -130,21 +130,22 @@ fn unbreakable_initializer_expr_pre_formatting_let_else_length_near_max_width()
130130

131131
fn unbreakable_initializer_expr_pre_formatting_length_up_to_opening_brace_near_max_width() {
132132
// Pre Formatting:
133-
// The length of `(indent)let pat = init else {` is 100 (max_width)
133+
// The length of `(indent)let pat = init else {` is 99 (< max_width)
134134
// Post Formatting:
135135
// The else keyword and opening brace remain on the same line as the initializer expr,
136136
// and the else block is formatted over multiple lines because we can't fit the
137137
// else block on the same line as the initializer expr.
138-
let Some(x) = some_really_really_really_really_really_really_really_really_long_name____E else {
138+
let Some(x) = some_really_really_really_really_really_really_really_really_long_name___E else {
139139
return;
140140
};
141141

142142
// Pre Formatting:
143143
// The length of `(indent)let pat = init else {` is 101 (> max_width)
144144
// Post Formatting:
145-
// The else keyword and opening brace remain on the same line as the initializer expr,
146-
// which leads to the `{` exceeding the max width
147-
let Some(x) = some_really_really_really_really_really_really_really_really_long_name_____F else {
145+
// The else keyword and opening brace cannot fit on the same line as the initializer expr.
146+
// They are formatted on the next line.
147+
let Some(x) = some_really_really_really_really_really_really_really_really_long_name_____F
148+
else {
148149
return;
149150
};
150151
}
@@ -153,9 +154,10 @@ fn unbreakable_initializer_expr_pre_formatting_length_through_initializer_expr_n
153154
// Pre Formatting:
154155
// The length of `(indent)let pat = init` is 99 (< max_width)
155156
// Post Formatting:
156-
// The else keyword and opening brace remain on the same line as the initializer expr,
157-
// which leads to the `else {` exceeding the max width
158-
let Some(x) = some_really_really_really_really_really_really_really_really_really_long_name___G else {
157+
// The else keyword and opening brace cannot fit on the same line as the initializer expr.
158+
// They are formatted on the next line.
159+
let Some(x) = some_really_really_really_really_really_really_really_really_really_long_name___G
160+
else {
159161
return;
160162
};
161163

0 commit comments

Comments
 (0)