diff options
Diffstat (limited to 'ops/optimizer_tests/serde_v8_value.out')
-rw-r--r-- | ops/optimizer_tests/serde_v8_value.out | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ops/optimizer_tests/serde_v8_value.out b/ops/optimizer_tests/serde_v8_value.out index 3ea0aacb3..6ee56d460 100644 --- a/ops/optimizer_tests/serde_v8_value.out +++ b/ops/optimizer_tests/serde_v8_value.out @@ -74,14 +74,17 @@ struct op_is_proxy_fast { _phantom: ::std::marker::PhantomData<()>, } impl<'scope> deno_core::v8::fast_api::FastFunction for op_is_proxy_fast { + #[inline(always)] fn function(&self) -> *const ::std::ffi::c_void { op_is_proxy_fast_fn as *const ::std::ffi::c_void } + #[inline(always)] fn args(&self) -> &'static [deno_core::v8::fast_api::Type] { use deno_core::v8::fast_api::Type::*; use deno_core::v8::fast_api::CType; &[V8Value, V8Value] } + #[inline(always)] fn return_type(&self) -> deno_core::v8::fast_api::CType { deno_core::v8::fast_api::CType::Bool } |