-
-
Notifications
You must be signed in to change notification settings - Fork 407
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
Implement SharedArrayBuffer
#3384
Conversation
c5a9398
to
d73cf5f
Compare
Test262 conformance changes
Fixed tests (330):
|
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #3384 +/- ##
==========================================
- Coverage 46.05% 45.72% -0.34%
==========================================
Files 474 482 +8
Lines 48742 49171 +429
==========================================
+ Hits 22450 22485 +35
- Misses 26292 26686 +394
☔ 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.
Really nice work. I really like the refactor of the typed array kinds!
I still have to go through some of the unsafe call sites to review the invariants.
For others reviewing; it makes sense to compare the old boa_engine/src/builtins/typed_array/mod.rs
to the new boa_engine/src/builtins/typed_array/builtin.rs
since most of the contents are moved.
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.
Really nice work!
just some minor nitpicks that don't block merging :)
* Implement `SharedArrayBuffer` * Add small documentation * Fix docs * Apply review
I'll follow up this PR with some others implementing Atomics, adding the missing example/example docs and adding the missing
agent
object.