This repository was archived by the owner on Aug 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 653
perf(rome_formatter): Improve Printer source map performance #3104
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This PR improves the formatters performance by only adding unique source markers inside the printer and adding `take_*` methods to take the source markers to avoid the need to copy all markers to a new vec.
!bench_formatter |
Deploying with
|
Latest commit: |
86767e1
|
Status: | ✅ Deploy successful! |
Preview URL: | https://b7962fbb.tools-8rn.pages.dev |
Branch Preview URL: | https://perf-source-map-markers.tools-8rn.pages.dev |
Would it be possible to have the unit test here? |
I prefer not to or if it is a requirement, I will close this PR and include the change in the other PR. Main reason, writing these tests takes an awful lot of time and I already did it, I only created this PR to ease reviewing. |
Formatter Benchmark Results
|
OK. I removed myself as reviewer - not comfortable enough to approve it. Feel free to merge it if you want or close it |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This PR improves the formatters performance by only adding unique source markers inside the printer and adding
take_*
methods to take the source markers to avoid the need to copy all markers to a new vec.Test Plan
cargo test
. I added a new unit test for mapped markers in #3092 that verifies that only unique markers are added (and are mapped to the right location)