UNPKG

@fauton/cfg

Version:

A package to work with context free grammars and LL1 parsers

7 lines (6 loc) 266 B
import { Derivation, IContextFreeGrammarInput } from "./types"; export declare function parseWithLL1Table(inputCfg: IContextFreeGrammarInput, textContent: string): { parsed: boolean; derivations: Derivation[]; tree: import("./types").ParseTree; };