summaryrefslogtreecommitdiff
path: root/core/bindings.rs
diff options
context:
space:
mode:
Diffstat (limited to 'core/bindings.rs')
-rw-r--r--core/bindings.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/bindings.rs b/core/bindings.rs
index 084d30a15..f84711abf 100644
--- a/core/bindings.rs
+++ b/core/bindings.rs
@@ -173,8 +173,8 @@ pub fn initialize_context<'s>(
// Bind functions to Deno.core.*
set_func(scope, core_val, "opcallSync", opcall_sync);
set_func(scope, core_val, "opcallAsync", opcall_async);
- set_func(scope, core_val, "refOp", ref_op);
- set_func(scope, core_val, "unrefOp", unref_op);
+ set_func(scope, core_val, "refOp_", ref_op);
+ set_func(scope, core_val, "unrefOp_", unref_op);
set_func(
scope,
core_val,