Expand description
Portable timing abstraction for the evaluation engine.
- Default / native / portable-wasm: wraps
std::time::Instant(zero JS deps). js-runtimefeature (browser WASM via wasm-bindgen): wrapsweb_time::Instant, which callsperformance.now()in the browser wherestd::time::Instantpanics.
All engine code should use FzInstant rather than either concrete type directly.