add snapshot test for suffixed expr

This commit is contained in:
Luke Boswell 2024-03-14 12:04:39 +11:00
parent 9bc0ab79af
commit 8bbbd768ec
No known key found for this signature in database
GPG key ID: F6DB3C9DB47377B0
11 changed files with 19 additions and 0 deletions

View file

@ -761,6 +761,7 @@ impl<'a> RemoveSpaces<'a> for Expr<'a> {
Expr::SpaceBefore(a, _) => a.remove_spaces(arena),
Expr::SpaceAfter(a, _) => a.remove_spaces(arena),
Expr::SingleQuote(a) => Expr::Num(a),
Expr::Suffixed(a) => a.remove_spaces(arena),
}
}
}