UNPKG

@parser-generator/core

Version:

A Parser Generator that supports LL,SLR,LR1,LALR

7 lines 357 B
export { FirstCalculator, FollowCalculator } from "./first-follow"; export { getSLRParsingTable, getSLRAutomata } from "./lr/slr"; export { getLR1ParsingTable, getLR1Automata } from "./lr/lr1"; export { StateSet } from "./lr/definition"; export { LLParser } from "./ll/ll-parser"; export { LRParser } from "./lr/lr-parser"; //# sourceMappingURL=index.js.map