UNPKG

@fauton/cfg

Version:

A package to work with context free grammars and LL1 parsers

5 lines (4 loc) 212 B
import { IContextFreeGrammar } from '../types'; export declare function removeProductionRules(cfg: Pick<IContextFreeGrammar, 'productionRules' | 'variables'> & { removedVariables: string[]; }): string[];