slige/compiler/old/lib.ts
2025-01-22 13:53:05 +01:00

7 lines
241 B
TypeScript

import { Compiler, CompileResult } from "./compiler.ts";
export async function compileWithDebug(path: string): Promise<CompileResult> {
const { program, fnNames } = await new Compiler(path).compile();
return { program, fnNames };
}