v8x 149.4.0-rc.1

Engine agnostic JavaScript
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Runtime / platform-level v8 C-ABI shims for the QuickJS backend.
//!
//! These cover V8/platform bring-up entry points that have no QuickJS analogue
//! and are safe to treat as inert (init/dispose/diagnostic registration).
//! Real, behaviour-bearing impls live in the per-domain modules; this file is for
//! the no-op-but-must-exist surface that Deno calls during boot.

#![allow(non_snake_case)]

use std::os::raw::c_void;

#[unsafe(no_mangle)]
pub extern "C" fn v8__V8__SetFatalErrorHandler(_that: *const c_void) {}