UNPKG

bhai-lang-parser

Version:
13 lines (10 loc) 365 B
import { ASTNode } from './types/nodeTypes'; import TokenExecutor from './tokenExecutor'; import '../tokenizer/types'; declare class StatementList { private _tokenExecutor; constructor(tokenExecutor: TokenExecutor); getInitialStatementList(): ASTNode; getStatementList(stopLookaheadType: string): ASTNode[]; } export { StatementList as default };