-
Notifications
You must be signed in to change notification settings - Fork 5.4k
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
feat: add structured cloning to Deno.core #9458
feat: add structured cloning to Deno.core #9458
Conversation
Blocked on #9466 |
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, thanks @inteon, great work!
Before landing I'll wait for Ben's review
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, thanks!
struct SerializeDeserialize {} | ||
|
||
impl v8::ValueSerializerImpl for SerializeDeserialize { | ||
#[allow(unused_variables)] |
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.
What unused variables?
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.
This function is required by v8::ValueSerializerImpl
but is never used in core/bindings.rs
(yet I think)
Nice work @inteon - thanks! |
First step towards #3557, as discussed in #9323. Also includes some simple tests.