parjs
Version:
A parser-combinator library for JavaScript.
24 lines (23 loc) • 933 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Implementations of the parser system and individual parsers.
* @module parjs/internal
* @preferred
*/ /** */
var parser_1 = require("./parser");
exports.ParjserBase = parser_1.ParjserBase;
var string_1 = require("./parsers/string");
exports.string = string_1.string;
var state_1 = require("./state");
exports.BasicParsingState = state_1.BasicParsingState;
var state_2 = require("./state");
exports.FAIL_RESULT = state_2.FAIL_RESULT;
var state_3 = require("./state");
exports.UNINITIALIZED_RESULT = state_3.UNINITIALIZED_RESULT;
var combinators_1 = require("./combinators");
exports.composeCombinator = combinators_1.composeCombinator;
exports.defineCombinator = combinators_1.defineCombinator;
var scalar_converter_1 = require("./scalar-converter");
exports.ScalarConverter = scalar_converter_1.ScalarConverter;
//# sourceMappingURL=index.js.map