@parser-generator/core
Version:
A Parser Generator that supports LL,SLR,LR1,LALR
18 lines • 807 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var first_follow_1 = require("./first-follow");
exports.FirstCalculator = first_follow_1.FirstCalculator;
exports.FollowCalculator = first_follow_1.FollowCalculator;
var slr_1 = require("./lr/slr");
exports.getSLRParsingTable = slr_1.getSLRParsingTable;
exports.getSLRAutomata = slr_1.getSLRAutomata;
var lr1_1 = require("./lr/lr1");
exports.getLR1ParsingTable = lr1_1.getLR1ParsingTable;
exports.getLR1Automata = lr1_1.getLR1Automata;
var definition_1 = require("./lr/definition");
exports.StateSet = definition_1.StateSet;
var ll_parser_1 = require("./ll/ll-parser");
exports.LLParser = ll_parser_1.LLParser;
var lr_parser_1 = require("./lr/lr-parser");
exports.LRParser = lr_parser_1.LRParser;
//# sourceMappingURL=index.js.map