mirror of
https://git.sfja.dk/Mikkel/slige.git
synced 2025-01-31 05:00:52 +00:00
15 lines
294 B
TypeScript
15 lines
294 B
TypeScript
|
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();
|
||
|
}
|
||
|
}
|