remove old imports

This commit is contained in:
Chris Wanstrath 2025-10-29 14:57:28 -07:00
parent 030eb74871
commit 3647159286

View File

@ -5,7 +5,7 @@ import { OpCode } from "./opcode"
import { Scope } from "./scope" import { Scope } from "./scope"
import type { Value, NativeFunction, TypeScriptFunction } from "./value" import type { Value, NativeFunction, TypeScriptFunction } from "./value"
import { toValue, toNumber, isTrue, isEqual, toString, fromValue, fnFromValue } from "./value" import { toValue, toNumber, isTrue, isEqual, toString, fromValue, fnFromValue } from "./value"
import { extractParamInfo, wrapNative, isWrapped, getOriginalFunction } from "./function" import { extractParamInfo, getOriginalFunction } from "./function"
export class VM { export class VM {
pc = 0 pc = 0