parjs
Version:
A parser-combinator library for JavaScript.
15 lines (13 loc) • 482 B
text/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";