mirror of
https://git.sfja.dk/Mikkel/slige.git
synced 2025-01-31 01:50:51 +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();
|
|
}
|
|
}
|