Rebuild WASM: bytecode with pending_cek snapshot fix

All .sxbc recompiled with fixed sx_vm.ml. 32/32 WASM tests, 4/4
bytecode regression tests. hs-repeat-times correctly does 6 io-sleep
suspensions in bytecode mode.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-08 21:44:58 +00:00
parent ddc48c6d48
commit 5e708e1b20
24 changed files with 379 additions and 110 deletions

View File

@@ -797,7 +797,8 @@
"sx dom",
"sx browser",
"web adapter-dom",
"web engine"
"web engine",
"hyperscript integration"
],
"exports": [
"_preload-cache",
@@ -861,6 +862,89 @@
"engine-init"
]
},
"hyperscript tokenizer": {
"file": "hs-tokenizer.sxbc",
"deps": [],
"exports": [
"hs-tokenize",
"hs-make-token",
"hs-keywords",
"hs-keyword?",
"hs-digit?",
"hs-letter?",
"hs-ident-start?",
"hs-ident-char?",
"hs-ws?"
]
},
"hyperscript parser": {
"file": "hs-parser.sxbc",
"deps": [
"hyperscript tokenizer"
],
"exports": [
"hs-parse",
"hs-compile"
]
},
"hyperscript compiler": {
"file": "hs-compiler.sxbc",
"deps": [
"hyperscript parser"
],
"exports": [
"hs-to-sx",
"hs-to-sx-from-source"
]
},
"hyperscript runtime": {
"file": "hs-runtime.sxbc",
"deps": [
"sx dom",
"sx browser"
],
"exports": [
"hs-on",
"hs-on-every",
"hs-init",
"hs-wait",
"hs-wait-for",
"hs-settle",
"hs-toggle-class!",
"hs-toggle-between!",
"hs-take!",
"hs-put!",
"hs-navigate!",
"hs-next",
"hs-previous",
"hs-query-first",
"hs-query-last",
"hs-first",
"hs-last",
"hs-repeat-times",
"hs-repeat-forever",
"hs-fetch",
"hs-coerce",
"hs-make",
"hs-install",
"hs-measure",
"hs-transition"
]
},
"hyperscript integration": {
"file": "hs-integration.sxbc",
"deps": [
"hyperscript compiler",
"hyperscript runtime",
"sx dom"
],
"exports": [
"hs-handler",
"hs-activate!",
"hs-boot!",
"hs-boot-subtree!"
]
},
"_entry": {
"file": "boot.sxbc",
"deps": [