mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
26 lines
866 B
Text
26 lines
866 B
Text
struct op_is_proxy_fast {
|
|
_phantom: ::std::marker::PhantomData<()>,
|
|
}
|
|
impl<'scope> deno_core::v8::fast_api::FastFunction for op_is_proxy_fast {
|
|
fn function(&self) -> *const ::std::ffi::c_void {
|
|
op_is_proxy_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, V8Value]
|
|
}
|
|
fn return_type(&self) -> deno_core::v8::fast_api::CType {
|
|
deno_core::v8::fast_api::CType::Bool
|
|
}
|
|
}
|
|
fn op_is_proxy_fast_fn<'scope>(
|
|
_: deno_core::v8::Local<deno_core::v8::Object>,
|
|
value: deno_core::v8::Local<v8::Value>,
|
|
) -> bool {
|
|
use deno_core::v8;
|
|
use deno_core::_ops;
|
|
let value = serde_v8::Value { v8_value: value };
|
|
let result = op_is_proxy::call(value);
|
|
result
|
|
}
|