summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorDivy Srivastava <dj.srivastava23@gmail.com>2023-03-17 03:32:09 +0530
committerGitHub <noreply@github.com>2023-03-16 22:02:09 +0000
commit5a1d3ea6148dc40fad3dad5660118dd1882c97eb (patch)
tree4cdc504a7f02422849a9411b6383349d52015d13 /core
parent1300d6178e8863a220fa301e9fde8be3580d9b66 (diff)
chore: bump rusty_v8 to 0.65.0 (#18231)
Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com>
Diffstat (limited to 'core')
-rw-r--r--core/bindings.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/bindings.rs b/core/bindings.rs
index 12a2945eb..7970f9aab 100644
--- a/core/bindings.rs
+++ b/core/bindings.rs
@@ -207,7 +207,7 @@ fn add_op_to_deno_core_ops(
// Don't initialize fast ops when snapshotting, the external references count mismatch.
if !snapshot_options.will_snapshot() {
// TODO(@littledivy): Support fast api overloads in ops.
- builder.build_fast(scope, &**fast_function, None)
+ builder.build_fast(scope, &**fast_function, None, None, None)
} else {
builder.build(scope)
}