UNPKG

@fauton/cfg

Version:

A package to work with context free grammars and LL1 parsers

7 lines (6 loc) 185 B
import { IContextFreeGrammar } from './types'; /** * Validates a cfg * @param cfg Input cfg to validate */ export declare function validateCfg(cfg: IContextFreeGrammar): void;