parjs
Version:
A parser-combinator library for JavaScript.
56 lines (55 loc) • 2 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Implementations of individual building-block parsers.
* @module parjs
* @preferred
*/ /** */
var char_code_where_1 = require("./char-code-where");
exports.charCodeWhere = char_code_where_1.charCodeWhere;
var char_where_1 = require("./char-where");
exports.charWhere = char_where_1.charWhere;
var eof_1 = require("./eof");
exports.eof = eof_1.eof;
var fail_1 = require("./fail");
exports.fail = fail_1.fail;
var float_1 = require("./float");
exports.float = float_1.float;
var int_1 = require("./int");
exports.int = int_1.int;
var newline_1 = require("./newline");
exports.newline = newline_1.newline;
exports.uniNewline = newline_1.uniNewline;
var position_1 = require("./position");
exports.position = position_1.position;
var regexp_1 = require("./regexp");
exports.regexp = regexp_1.regexp;
var rest_1 = require("./rest");
exports.rest = rest_1.rest;
var result_1 = require("./result");
exports.result = result_1.result;
var state_1 = require("./state");
exports.state = state_1.state;
var string_1 = require("./string");
exports.string = string_1.string;
var string_len_1 = require("./string-len");
exports.stringLen = string_len_1.stringLen;
var string_of_1 = require("./string-of");
exports.anyStringOf = string_of_1.anyStringOf;
var char_types_1 = require("./char-types");
exports.anyChar = char_types_1.anyChar;
exports.anyCharOf = char_types_1.anyCharOf;
exports.noCharOf = char_types_1.noCharOf;
exports.whitespace = char_types_1.whitespace;
exports.uniLower = char_types_1.uniLower;
exports.uniDecimal = char_types_1.uniDecimal;
exports.uniUpper = char_types_1.uniUpper;
exports.digit = char_types_1.digit;
exports.hex = char_types_1.hex;
exports.letter = char_types_1.letter;
exports.lower = char_types_1.lower;
exports.space = char_types_1.space;
exports.spaces1 = char_types_1.spaces1;
exports.uniLetter = char_types_1.uniLetter;
exports.upper = char_types_1.upper;
//# sourceMappingURL=index.js.map