From 364715928613e907d911db499347a26088b0adb3 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Wed, 29 Oct 2025 14:57:28 -0700 Subject: [PATCH] remove old imports --- src/vm.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vm.ts b/src/vm.ts index bfccc5c..fcd8db0 100644 --- a/src/vm.ts +++ b/src/vm.ts @@ -5,7 +5,7 @@ import { OpCode } from "./opcode" import { Scope } from "./scope" import type { Value, NativeFunction, TypeScriptFunction } 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 { pc = 0