diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2022-07-22 17:54:22 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-22 17:54:22 +0530 |
commit | 03dc3b8972f460e40d0b75fc3207cae9fe4f60da (patch) | |
tree | 410bc92530e34ca2eee8a154f705be85ae9641b3 /core/lib.rs | |
parent | 244c00d95b7ec8f30a5e81b743b4b618049b6c37 (diff) |
feat(ops): V8 Fast Calls (#15122)
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'core/lib.rs')
-rw-r--r-- | core/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/lib.rs b/core/lib.rs index ab22392c4..a77705ff3 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -113,9 +113,12 @@ pub fn v8_version() -> &'static str { pub mod _ops { pub use super::bindings::throw_type_error; pub use super::error_codes::get_error_code; + pub use super::extensions::FastFunctionSignature; 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 |