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

@@ -6,6 +6,9 @@
(import (web adapter-dom))
(import (web engine))
(import (hyperscript integration)) ;; end define-library
;; Re-export to global namespace for backward compatibility
(define-library
(web orchestration)
(export
@@ -626,7 +629,8 @@
(sx-hydrate-islands root)
(run-post-render-hooks)
(flush-collected-styles)
(process-elements root)))
(process-elements root)
(hs-boot-subtree! root)))
(define
process-settle-hooks
:effects (mutation io)
@@ -1632,7 +1636,6 @@
(do
(sx-process-scripts nil)
(sx-hydrate nil)
(process-elements nil)))))) ;; end define-library
(process-elements nil))))))
;; Re-export to global namespace for backward compatibility
(import (web orchestration))