refactor(str): re-order Ident trait impls#21250
Conversation
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Reorders Ident trait implementations in oxc_str to match the project’s standard ordering (stdlib traits first, then Oxc-specific traits), without changing behavior.
Changes:
- Moved
Send/Sync,Deref,AsRef,Clone/Copy, andEqimpl blocks to align with a consistent trait-impl ordering. - Relocated Oxc trait impls (
CloneIn,Dummy,FromIn,Equivalent) into the designated section.
Merging this PR will not alter performance
Comparing Footnotes
|
Merge activity
|
Pure refactor. Re-order trait impls for `Ident` to stardard order - stdlib traits first in order of importance, then Oxc traits (e.g. `CloneIn`, `FromIn`). The PR does not alter any code at all, just moves it.
f831d1c to
4a4850e
Compare

Pure refactor. Re-order trait impls for
Identto stardard order - stdlib traits first in order of importance, then Oxc traits (e.g.CloneIn,FromIn).The PR does not alter any code at all, just moves it.