parjs
Version:
A parser-combinator library for JavaScript.
14 lines (13 loc) • 497 B
TypeScript
/**
* Implementations of the parser system and individual parsers.
* @module parjs/internal
* @preferred
*/ /** */
export { ParjserBase } from "./parser";
export { ParsingState } from "./state";
export { string } from "./parsers/string";
export { BasicParsingState } from "./state";
export { FAIL_RESULT } from "./state";
export { UNINITIALIZED_RESULT } from "./state";
export { composeCombinator, defineCombinator } from "./combinators";
export { ScalarConverter } from "./scalar-converter";