-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MERGE #3608 @Penguinwizzard] Add a flag to use a stronger array sort…
… for bug analysis. Merge pull request #3608 from Penguinwizzard:strongArraySort The default JS sort often results in an implementation-defined order. This is not generally a problem, and helps improve our perf. However, there are cases where our ordering depends on the internal structure, not the user-visible structure, of the array. This change adds a flag to make this ordering more consistent, which should help identify our bugs where the issue is just our sort orders being inconsistent.
- Loading branch information
Showing
2 changed files
with
45 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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 file contains 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