From 8379101e3b3b8ec8dae43187f89a860e2e9fba58 Mon Sep 17 00:00:00 2001 From: Tianyi Cui <53024+tianyicui@users.noreply.github.com> Date: Thu, 23 Jul 2026 01:35:33 +0800 Subject: [PATCH] fix(code-runtime): keep worker helper private --- packages/code-runtime/code-runtime-worker/src/bootstrap.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/code-runtime/code-runtime-worker/src/bootstrap.ts b/packages/code-runtime/code-runtime-worker/src/bootstrap.ts index 615a0d6ee9..3b0db6b59c 100644 --- a/packages/code-runtime/code-runtime-worker/src/bootstrap.ts +++ b/packages/code-runtime/code-runtime-worker/src/bootstrap.ts @@ -230,7 +230,7 @@ export type BindingErrorConstructor = new (memberName: string, message: string) * @param descriptor - program-global class name and member-name property. * @returns the constructor injected into the program and used for rejections. */ -export function makeBindingErrorClass( +function makeBindingErrorClass( descriptor: { name: string; memberNameProperty: string }, ): BindingErrorConstructor { return class BindingCallError extends Error {