macroforge_ts 0.1.80

TypeScript macro expansion engine - write compile-time macros in Rust
Documentation
1
2
3
4
5
6
7
8
9
//! Backend implementations of [`BuildtimeSandbox`].
//!
//! Only the Boa backend ships today — pure Rust, compiles for native
//! + wasm32, no C toolchain required.
//!
//! [`BuildtimeSandbox`]: crate::host::buildtime::sandbox::BuildtimeSandbox

#[cfg(feature = "buildtime-boa")]
pub mod boa;