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(); } }