diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2022-07-22 19:06:32 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-22 19:06:32 +0530 |
commit | 4db650ddd57b85475d71c0b9fc84d37becab9d6a (patch) | |
tree | e32602ab92d4c117dbbd72ea9c7436964466187d /core/lib.rs | |
parent | 03dc3b8972f460e40d0b75fc3207cae9fe4f60da (diff) |
Revert "feat(ops): V8 Fast Calls (#15122)" (#15276)
This reverts commit 03dc3b8972f460e40d0b75fc3207cae9fe4f60da.
Diffstat (limited to 'core/lib.rs')
-rw-r--r-- | core/lib.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/core/lib.rs b/core/lib.rs index a77705ff3..ab22392c4 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -113,12 +113,9 @@ 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 |