()
| 13 | static INIT_STARTED: AtomicBool = AtomicBool::new(false); |
| 14 | |
| 15 | fn engine() -> &'static mut EngineState { |
| 16 | unsafe { ENGINE.get_mut().expect("Engine not initialized") } |
| 17 | } |
| 18 | |
| 19 | /// Log to the browser console. |
| 20 | #[wasm_bindgen] |
no test coverage detected