-
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(ops): V8 Fast Calls #15122
feat(ops): V8 Fast Calls #15122
Conversation
Ooooh yes, I was waiting for this! |
ops/lib.rs
Outdated
|
||
let args = args | ||
.iter() | ||
.fold(quote! {}, |acc, new| quote! { #acc, #new }); |
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.
Does a join()
exist for TokenStream2's? Also, does this actually work properly? I would naively read this to become ", arg1, arg2"
.
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.
Why update std
submodule?
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
This reverts commit 03dc3b8.
auto fast api impl generation for worthy ops 🪄