comment -> spaces_middle

This commit is contained in:
Aidan 2024-07-29 10:01:48 -04:00
parent 125990855f
commit 91fdd903e7
35 changed files with 56 additions and 56 deletions

View file

@ -397,13 +397,13 @@ impl<'a> RemoveSpaces<'a> for ValueDef<'a> {
AnnotatedBody {
ann_pattern,
ann_type,
comment: _,
spaces_middle: _,
body_pattern,
body_expr,
} => AnnotatedBody {
ann_pattern: arena.alloc(ann_pattern.remove_spaces(arena)),
ann_type: arena.alloc(ann_type.remove_spaces(arena)),
comment: &[],
spaces_middle: &[],
body_pattern: arena.alloc(body_pattern.remove_spaces(arena)),
body_expr: arena.alloc(body_expr.remove_spaces(arena)),
},