bhai-lang-parser
Version:
Parser for bhai-lang
13 lines (10 loc) • 306 B
TypeScript
import StatementList from './statementList';
import { ASTNode } from './types/nodeTypes';
import './tokenExecutor';
import '../tokenizer/types';
declare class Program {
private _statementList;
constructor(statementList: StatementList);
getProgram(): ASTNode;
}
export { Program as default };