export OpCode

This commit is contained in:
Chris Wanstrath 2025-10-25 08:22:50 -07:00
parent 42c0e62597
commit 937861e27b

View File

@ -10,6 +10,7 @@ export async function run(bytecode: Bytecode, functions?: Record<string, TypeScr
export { type Bytecode, toBytecode, type ProgramItem } from "./bytecode" export { type Bytecode, toBytecode, type ProgramItem } from "./bytecode"
export { bytecodeToString } from "./format" export { bytecodeToString } from "./format"
export { wrapNative } from "./function" export { wrapNative } from "./function"
export { OpCode } from "./opcode"
export { Scope } from "./scope" export { Scope } from "./scope"
export type { Value, TypeScriptFunction, NativeFunction } from "./value" export type { Value, TypeScriptFunction, NativeFunction } from "./value"
export { toValue, toString, toNumber, fromValue, toNull } from "./value" export { toValue, toString, toNumber, fromValue, toNull } from "./value"