diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/bindings.rs | 2 |
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) } |