@@ -56,7 +56,7 @@ impl AsRef<ListItem> for ListItem {
56
56
}
57
57
}
58
58
59
- #[ derive( PartialEq , Eq ) ]
59
+ #[ derive( PartialEq , Eq , Debug ) ]
60
60
pub enum ListItemCommentStyle {
61
61
// Try to keep the comment on the same line with the item.
62
62
SameLine ,
@@ -66,6 +66,7 @@ pub enum ListItemCommentStyle {
66
66
None ,
67
67
}
68
68
69
+ #[ derive( Debug ) ]
69
70
pub struct ListItem {
70
71
// None for comments mean that they are not present.
71
72
pub pre_comment : Option < String > ,
@@ -118,6 +119,18 @@ impl ListItem {
118
119
new_lines : false ,
119
120
}
120
121
}
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
+ }
121
134
}
122
135
123
136
/// The type of separator for lists.
@@ -220,6 +233,10 @@ where
220
233
item_last_line_width -= indent_str. len ( ) ;
221
234
}
222
235
236
+ if !item. is_substantial ( ) {
237
+ continue ;
238
+ }
239
+
223
240
match tactic {
224
241
DefinitiveListTactic :: Horizontal if !first => {
225
242
result. push ( ' ' ) ;
@@ -276,26 +293,28 @@ where
276
293
rewrite_comment ( comment, block_mode, formatting. shape , formatting. config ) ?;
277
294
result. push_str ( & comment) ;
278
295
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
+ }
285
315
} 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 {
292
316
result. push ( ' ' ) ;
293
- } else {
294
- result. push ( '\n' ) ;
295
- result. push_str ( indent_str) ;
296
317
}
297
- } else {
298
- result. push ( ' ' ) ;
299
318
}
300
319
item_max_width = None ;
301
320
}
@@ -304,7 +323,7 @@ where
304
323
result. push_str ( formatting. separator . trim ( ) ) ;
305
324
result. push ( ' ' ) ;
306
325
}
307
- result. push_str ( & inner_item[ .. ] ) ;
326
+ result. push_str ( inner_item) ;
308
327
309
328
// Post-comments
310
329
if tactic != DefinitiveListTactic :: Vertical && item. post_comment . is_some ( ) {
0 commit comments