From 727546ce6d8cb4a12294d63da5f9cb43ee19443f Mon Sep 17 00:00:00 2001 From: Tianyi Cui <53024+tianyicui@users.noreply.github.com> Date: Wed, 29 Jul 2026 12:59:49 +0800 Subject: [PATCH] fix(code-runtime): bound every subprocess frame hop --- packages/code-runtime/code-runtime-worker/src/runtime-host.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/code-runtime/code-runtime-worker/src/runtime-host.ts b/packages/code-runtime/code-runtime-worker/src/runtime-host.ts index 474a058e9f..d2bb1082b8 100644 --- a/packages/code-runtime/code-runtime-worker/src/runtime-host.ts +++ b/packages/code-runtime/code-runtime-worker/src/runtime-host.ts @@ -223,4 +223,5 @@ export class RuntimeOutputLedger { } export { decodeWorkerJson, encodeWorkerJson, snapshotCodeJsonValue } from './worker-json.ts' +export { jsonValueBytesUpTo } from './output-json.ts' export type { WorkerJsonWire } from './worker-json.ts'