slige/compiler/parser/parser.ts

15 lines
294 B
TypeScript
Raw Normal View History

2025-01-22 21:40:29 +00:00
import { File } from "../ast/ast.ts";
import { File as CtxFile } from "../ctx.ts";
import { todo } from "../util.ts";
export class Parser {
public constructor(
private file: CtxFile,
private text: string,
) {}
public parse(): File {
return todo();
}
}