diff --git a/shared/static/scripts/sx-browser.js b/shared/static/scripts/sx-browser.js index 2aa1df1..da8d59d 100644 --- a/shared/static/scripts/sx-browser.js +++ b/shared/static/scripts/sx-browser.js @@ -14,7 +14,7 @@ // ========================================================================= var NIL = Object.freeze({ _nil: true, toString: function() { return "nil"; } }); - var SX_VERSION = "2026-03-24T02:21:48Z"; + var SX_VERSION = "2026-03-24T02:56:45Z"; function isNil(x) { return x === NIL || x === null || x === undefined; } function isSxTruthy(x) { return x !== false && !isNil(x); } @@ -521,6 +521,8 @@ PRIMITIVES["scope-emit!"] = scopeEmit; PRIMITIVES["scope-peek"] = scopePeek; PRIMITIVES["scope-emitted"] = sxEmitted; + PRIMITIVES["scope-collected"] = sxCollected; + PRIMITIVES["scope-clear-collected!"] = sxClearCollected; // ---- VM stack primitives ---- // The VM spec (vm.sx) requires these array-like operations.