diff options
Diffstat (limited to 'ops/optimizer_tests/op_state_generics.out')
-rw-r--r-- | ops/optimizer_tests/op_state_generics.out | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ops/optimizer_tests/op_state_generics.out b/ops/optimizer_tests/op_state_generics.out index 28315eb26..88eeefe14 100644 --- a/ops/optimizer_tests/op_state_generics.out +++ b/ops/optimizer_tests/op_state_generics.out @@ -64,14 +64,17 @@ impl<'scope, SP> deno_core::v8::fast_api::FastFunction for op_foo_fast<SP> where SP: SomePermission + 'static, { + #[inline(always)] fn function(&self) -> *const ::std::ffi::c_void { op_foo_fast_fn::<SP> 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, CallbackOptions] } + #[inline(always)] fn return_type(&self) -> deno_core::v8::fast_api::CType { deno_core::v8::fast_api::CType::Void } |