UNPKG

pegisland

Version:

General PEG-based parser supporting island grammars with lake symbols

13 lines 394 B
import { Rule } from './Rule'; import { SimpleTree } from './PegParser'; export declare class InitialPegBuilder { rules: Map<string, Rule>; build(peg: { [name: string]: SimpleTree; }): Map<string, Rule>; private compileExpression; private compileOperator; private compileTerminal; private compileNonterminal; } //# sourceMappingURL=InitialPegBuilder.d.ts.map