From b0ad0a07688f2a75fd80684fea7e3ef2888a8013 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath <2+defunkt@users.noreply.github.com> Date: Tue, 25 Nov 2025 16:57:43 -0800 Subject: [PATCH] you too --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 8de5373..bb20d1b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -95,7 +95,7 @@ export function compileCode(code: string, globals?: Record): Byteco return compiler.bytecode } -export function parseFile(path: string, globals?: Record): SyntaxNode { +export function parseFile(path: string, globals?: Record): Tree { const code = readFileSync(path, 'utf-8') return parseCode(code, globals) }