1 2 3 4 5 6 7 8
//! Data types, functions and traits for the `jsc` backend. pub(crate) mod entities; pub(crate) mod error; pub(crate) mod utils; pub(crate) mod vm; pub use entities::{engine::Engine as JSC, *};