Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(fmt): redundant newline insertions in commented code (FuelLabs#4472)
## Description closes FuelLabs#4473 This contains quite a big change for how we insert newlines into the formatted code - currently we would get a `Vec<NewlineSequence>` to insert into a span, and this PR changes this to just a `NewlineSequence`. The bug was a result of collecting this `Vec` stated above when **checking between the last unformatted leaf span and the end of code leaf span that was manually inserted**. We then end up inserting it all in one place - resulting in a bunch of newlines rather than just 1. The reason for changing this to just a single `NewlineSequence` is because IMO there isn't really a situation where we might have multiple newline sequences between 2 leaf spans such that we want to insert a `Vec<NewlineSequence>`, but it's causing problems when it comes to the situation described above. To get a look at how this situation looks like - the test case added shows an example of this. ## Checklist - [x] I have linked to any relevant issues. - [ ] I have commented my code, particularly in hard-to-understand areas. - [ ] I have updated the documentation where relevant (API docs, the reference, and the Sway book). - [x] I have added tests that prove my fix is effective or that my feature works. - [ ] I have added (or requested a maintainer to add) the necessary `Breaking*` or `New Feature` labels where relevant. - [ ] I have done my best to ensure that my PR adheres to [the Fuel Labs Code Review Standards](https://github.com/FuelLabs/rfcs/blob/master/text/code-standards/external-contributors.md). - [x] I have requested a review from the relevant team or maintainers. Co-authored-by: Kaya Gökalp <[email protected]> Co-authored-by: Joshua Batty <[email protected]>
- Loading branch information