summaryrefslogtreecommitdiff
path: root/ops/optimizer_tests/serde_v8_value.out
diff options
context:
space:
mode:
authorDivy Srivastava <dj.srivastava23@gmail.com>2022-11-10 03:53:31 -0800
committerGitHub <noreply@github.com>2022-11-10 17:23:31 +0530
commitbc33a4b2e06dd5518e0d1bbf7b538d0b00df214d (patch)
treee139e95178892521ecb5807959e324422ed29045 /ops/optimizer_tests/serde_v8_value.out
parent92764c0decb370b0f8a78770314ceda7228d315f (diff)
refactor(ops): Rewrite fast call optimizer and codegen (#16514)
Diffstat (limited to 'ops/optimizer_tests/serde_v8_value.out')
-rw-r--r--ops/optimizer_tests/serde_v8_value.out26
1 files changed, 26 insertions, 0 deletions
diff --git a/ops/optimizer_tests/serde_v8_value.out b/ops/optimizer_tests/serde_v8_value.out
new file mode 100644
index 000000000..8c7630547
--- /dev/null
+++ b/ops/optimizer_tests/serde_v8_value.out
@@ -0,0 +1,26 @@
+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
+}