jz 0.4.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/module/timer.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Two host-mode lowerings:
5
5
  *
6
6
  * `host: 'js'` (default): emit `env.setTimeout(cb: f64, delay: f64, repeat: i32) -> f64`
7
- * and `env.clearTimeout(id: f64) -> f64`. The JS host (src/host.js) drives both
7
+ * and `env.clearTimeout(id: f64) -> f64`. The JS host (interop.js) drives both
8
8
  * via global setTimeout/setInterval and calls back into wasm through the
9
9
  * exported `__invoke_closure(clos: i64) -> f64` trampoline. No queue, no
10
10
  * polling — the host's event loop does the scheduling.