Skip to content

Commit 078993e

Browse files
committed
Better handle comments and newlines around erased imports
1 parent f3cc76a commit 078993e

File tree

4 files changed

+66
-28
lines changed

4 files changed

+66
-28
lines changed

src/lists.rs

+38-19
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ impl AsRef<ListItem> for ListItem {
5656
}
5757
}
5858

59-
#[derive(PartialEq, Eq)]
59+
#[derive(PartialEq, Eq, Debug)]
6060
pub enum ListItemCommentStyle {
6161
// Try to keep the comment on the same line with the item.
6262
SameLine,
@@ -66,6 +66,7 @@ pub enum ListItemCommentStyle {
6666
None,
6767
}
6868

69+
#[derive(Debug)]
6970
pub struct ListItem {
7071
// None for comments mean that they are not present.
7172
pub pre_comment: Option<String>,
@@ -118,6 +119,18 @@ impl ListItem {
118119
new_lines: false,
119120
}
120121
}
122+
123+
// true if the item causes something to be written.
124+
fn is_substantial(&self) -> bool {
125+
fn empty(s: &Option<String>) -> bool {
126+
match *s {
127+
Some(ref s) if !s.is_empty() => false,
128+
_ => true,
129+
}
130+
}
131+
132+
!(empty(&self.pre_comment) && empty(&self.item) && empty(&self.post_comment))
133+
}
121134
}
122135

123136
/// The type of separator for lists.
@@ -220,6 +233,10 @@ where
220233
item_last_line_width -= indent_str.len();
221234
}
222235

236+
if !item.is_substantial() {
237+
continue;
238+
}
239+
223240
match tactic {
224241
DefinitiveListTactic::Horizontal if !first => {
225242
result.push(' ');
@@ -276,26 +293,28 @@ where
276293
rewrite_comment(comment, block_mode, formatting.shape, formatting.config)?;
277294
result.push_str(&comment);
278295

279-
if tactic == DefinitiveListTactic::Vertical {
280-
// We cannot keep pre-comments on the same line if the comment if normalized.
281-
let keep_comment = if formatting.config.normalize_comments()
282-
|| item.pre_comment_style == ListItemCommentStyle::DifferentLine
283-
{
284-
false
296+
if !inner_item.is_empty() {
297+
if tactic == DefinitiveListTactic::Vertical {
298+
// We cannot keep pre-comments on the same line if the comment if normalized.
299+
let keep_comment = if formatting.config.normalize_comments()
300+
|| item.pre_comment_style == ListItemCommentStyle::DifferentLine
301+
{
302+
false
303+
} else {
304+
// We will try to keep the comment on the same line with the item here.
305+
// 1 = ` `
306+
let total_width = total_item_width(item) + item_sep_len + 1;
307+
total_width <= formatting.shape.width
308+
};
309+
if keep_comment {
310+
result.push(' ');
311+
} else {
312+
result.push('\n');
313+
result.push_str(indent_str);
314+
}
285315
} else {
286-
// We will try to keep the comment on the same line with the item here.
287-
// 1 = ` `
288-
let total_width = total_item_width(item) + item_sep_len + 1;
289-
total_width <= formatting.shape.width
290-
};
291-
if keep_comment {
292316
result.push(' ');
293-
} else {
294-
result.push('\n');
295-
result.push_str(indent_str);
296317
}
297-
} else {
298-
result.push(' ');
299318
}
300319
item_max_width = None;
301320
}
@@ -304,7 +323,7 @@ where
304323
result.push_str(formatting.separator.trim());
305324
result.push(' ');
306325
}
307-
result.push_str(&inner_item[..]);
326+
result.push_str(inner_item);
308327

309328
// Post-comments
310329
if tactic != DefinitiveListTactic::Vertical && item.post_comment.is_some() {

src/missed_spans.rs

+27-8
Original file line numberDiff line numberDiff line change
@@ -104,19 +104,38 @@ impl<'a> FmtVisitor<'a> {
104104
}
105105

106106
fn push_vertical_spaces(&mut self, mut newline_count: usize) {
107-
// The buffer already has a trailing newline.
108-
let offset = if self.buffer.ends_with('\n') { 0 } else { 1 };
109-
let newline_upper_bound = self.config.blank_lines_upper_bound() + offset;
110-
let newline_lower_bound = self.config.blank_lines_lower_bound() + offset;
111-
if newline_count > newline_upper_bound {
112-
newline_count = newline_upper_bound;
113-
} else if newline_count < newline_lower_bound {
114-
newline_count = newline_lower_bound;
107+
let offset = self.count_trailing_newlines();
108+
let newline_upper_bound = self.config.blank_lines_upper_bound() + 1;
109+
let newline_lower_bound = self.config.blank_lines_lower_bound() + 1;
110+
111+
if newline_count + offset > newline_upper_bound {
112+
if offset >= newline_upper_bound {
113+
newline_count = 0;
114+
} else {
115+
newline_count = newline_upper_bound - offset;
116+
}
117+
} else if newline_count + offset < newline_lower_bound {
118+
if offset >= newline_lower_bound {
119+
newline_count = 0;
120+
} else {
121+
newline_count = newline_lower_bound - offset;
122+
}
115123
}
124+
116125
let blank_lines: String = repeat('\n').take(newline_count).collect();
117126
self.push_str(&blank_lines);
118127
}
119128

129+
fn count_trailing_newlines(&self) -> usize {
130+
let mut buf = &*self.buffer;
131+
let mut result = 0;
132+
while buf.ends_with('\n') {
133+
buf = &buf[..buf.len() - 1];
134+
result += 1;
135+
}
136+
result
137+
}
138+
120139
fn write_snippet<F>(&mut self, span: Span, process_last_snippet: F)
121140
where
122141
F: Fn(&mut FmtVisitor, &str, &str),

src/reorder.rs

+1
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ fn rewrite_reorderable_items(
121121
span.hi(),
122122
false,
123123
);
124+
124125
let mut item_pair_vec: Vec<_> = items.zip(reorderable_items.iter()).collect();
125126
item_pair_vec.sort_by(|a, b| compare_items(a.1, b.1));
126127
let item_vec: Vec<_> = item_pair_vec.into_iter().map(|pair| pair.0).collect();

tests/target/imports.rs

-1
Original file line numberDiff line numberDiff line change
@@ -85,5 +85,4 @@ use fooo::{bar, x, y, z,
8585
// nested imports with a single sub-tree.
8686
use a::b::c::d;
8787
use a::b::c::*;
88-
8988
use a::b::c::{xxx, yyy, zzz};

0 commit comments

Comments
 (0)