-
Notifications
You must be signed in to change notification settings - Fork 668
V8: Enable as unstable, add syscalls, flesh out call_reducer, etc. #3276
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
Conversation
|
Is this meant to be reviewed or just here for a demo? |
It's meant to be reviewed. |
5e12f1a to
e5f893d
Compare
# Description of Changes Implements `Serialize` and `Deserialize` for tuples. Extracted from #3276. # API and ABI breaking changes None # Expected complexity level and risk 2 # Testing A test `roundtrip_tuples_in_different_data_formats` is added.
0454ff8 to
cfc090d
Compare
cfc090d to
e3b6a7b
Compare
coolreader18
left a comment
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.
LGTM!
8d9364c to
15c0871
Compare
bfops
left a comment
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.
My code-owned files LGTM
49251c9 to
5a9b6bc
Compare
# Description of Changes Extracted from #3276. # API and ABI breaking changes None # Expected complexity level and risk 1 # Testing Future work.
ff1fe7b to
a9e52b4
Compare
e4e65b3 to
9665f16
Compare
cli/publish: expose --js-path to publish js module
a9e52b4 to
5bd2dfc
Compare
Description of Changes
Update:
This PR did all of the below but was split. Now it just does:
unstablefeature flag on the host. To publish a JS module,--js-path path/to/module.jsThis PR:
unstablefeature flag on the host. To publish a JS module,--js-path path/to/module.jsneeds to be used.WasmInstanceEnvtoInstanceEnvand friends.create_instance,make_actor,call_reducerwith timeouts and long-running logs added as well.API and ABI breaking changes
None
Expected complexity level and risk
2? It's only available on unstable and mostly touches V8 stuff.
Testing
Follow up PRs will add unit tests for parts.
We'll also need to add integration tests for whole modules.