struct op_add_4_fast { _phantom: ::std::marker::PhantomData<()>, } impl<'scope> deno_core::v8::fast_api::FastFunction for op_add_4_fast { fn function(&self) -> *const ::std::ffi::c_void { op_add_4_fast_fn as *const ::std::ffi::c_void } 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, Uint32, Uint32, Uint32, Uint32, CallbackOptions] } fn return_type(&self) -> deno_core::v8::fast_api::CType { deno_core::v8::fast_api::CType::Uint32 } } fn op_add_4_fast_fn<'scope>( _: deno_core::v8::Local, x1: u32, x2: u32, x3: u32, x4: u32, fast_api_callback_options: *mut deno_core::v8::fast_api::FastApiCallbackOptions, ) -> u32 { use deno_core::v8; use deno_core::_ops; let __opts: &mut v8::fast_api::FastApiCallbackOptions = unsafe { &mut *fast_api_callback_options }; let __ctx = unsafe { &*(v8::Local::::cast(unsafe { __opts.data.data }).value() as *const _ops::OpCtx) }; let op_state = &mut ::std::cell::RefCell::borrow_mut(&__ctx.state); let result = op_add_4::call(x1, x2, x3, x4); match result { Ok(result) => result, Err(err) => { op_state.last_fast_op_error.replace(err); __opts.fallback = true; Default::default() } } }