diff options
Diffstat (limited to 'ops/optimizer_tests/async_nop.out')
-rw-r--r-- | ops/optimizer_tests/async_nop.out | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/ops/optimizer_tests/async_nop.out b/ops/optimizer_tests/async_nop.out new file mode 100644 index 000000000..901b8a225 --- /dev/null +++ b/ops/optimizer_tests/async_nop.out @@ -0,0 +1,44 @@ +struct op_void_async_fast { + _phantom: ::std::marker::PhantomData<()>, +} +impl<'scope> deno_core::v8::fast_api::FastFunction for op_void_async_fast { + fn function(&self) -> *const ::std::ffi::c_void { + op_void_async_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, Int32, CallbackOptions] + } + fn return_type(&self) -> deno_core::v8::fast_api::CType { + deno_core::v8::fast_api::CType::Void + } +} +fn op_void_async_fast_fn<'scope>( + _: deno_core::v8::Local<deno_core::v8::Object>, + __promise_id: i32, + fast_api_callback_options: *mut deno_core::v8::fast_api::FastApiCallbackOptions, +) -> () { + 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::<v8::External>::cast(unsafe { __opts.data.data }).value() + as *const _ops::OpCtx) + }; + let op_state = __ctx.state.clone(); + let result = op_void_async::call(); + let __op_id = __ctx.id; + let __state = ::std::cell::RefCell::borrow(&__ctx.state); + __state.tracker.track_async(__op_id); + let result = _ops::queue_fast_async_op( + __ctx, + async move { + let result = result.await; + (__promise_id, __op_id, _ops::OpResult::Ok(result.into())) + }, + ); + result +} |