-
-
Notifications
You must be signed in to change notification settings - Fork 411
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix compilation for targets without AtomicU64
#3399
Conversation
Test262 conformance changes
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3399 +/- ##
========================================
Coverage 45.71% 45.72%
========================================
Files 482 483 +1
Lines 49182 49412 +230
========================================
+ Hits 22485 22594 +109
- Misses 26697 26818 +121
☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!!
)] | ||
|
||
#[cfg(not(target_has_atomic = "ptr"))] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the future we might want to create a symbol
feature, that requires this, so that users in platforms without this option can have most of JS working :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Besides the comment below, this looks good to me! :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks perfect to me! :)
* Fix compilation for targets without `AtomicU64` * Throw compilation error if `AtomicUsize` is not available * Apply review pt. 1 * Apply review pt. 2 * fix comment
Closes #2599
Also addresses the clippy lint that we had disabled temporarily.