diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2022-08-21 17:37:53 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-21 17:37:53 +0530 |
commit | 906aa78af33c8405a47d5446d2a6fb3348c275bb (patch) | |
tree | c444e42b6bdfe4bad35634925829a1b1d190fa75 /core/lib.rs | |
parent | e39d4e3e7fb9815bf094e7321d1d73d00275831a (diff) |
feat(ops): V8 Fast Calls (#15291)
Diffstat (limited to 'core/lib.rs')
-rw-r--r-- | core/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/lib.rs b/core/lib.rs index 57e81ee7a..8043b5e95 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -118,6 +118,8 @@ pub mod _ops { pub use super::ops::to_op_result; pub use super::ops::OpCtx; pub use super::runtime::queue_async_op; + pub use super::runtime::V8_WRAPPER_OBJECT_INDEX; + pub use super::runtime::V8_WRAPPER_TYPE_INDEX; } /// A helper macro that will return a call site in Rust code. Should be |