@fabric_v1/compiler
Version:
Fabric DSL compiler (parser, checker, IR & backends)
1,471 lines (1,470 loc) • 341 kB
JavaScript
"use strict";
// @ts-nocheck
Object.defineProperty(exports, "__esModule", { value: true });
exports.SyntaxError = peg$SyntaxError;
exports.parse = peg$parse;
// Generated by Peggy 2.0.1.
//
// https://peggyjs.org/
function peg$subclass(child, parent) {
function C() { this.constructor = child; }
C.prototype = parent.prototype;
child.prototype = new C();
}
function peg$SyntaxError(message, expected, found, location) {
var self = Error.call(this, message);
// istanbul ignore next Check is a necessary evil to support older environments
if (Object.setPrototypeOf) {
Object.setPrototypeOf(self, peg$SyntaxError.prototype);
}
self.expected = expected;
self.found = found;
self.location = location;
self.name = "SyntaxError";
return self;
}
peg$subclass(peg$SyntaxError, Error);
function peg$padEnd(str, targetLength, padString) {
// padString = padString || " ";
if (str.length > targetLength) {
return str;
}
targetLength -= str.length;
padString += padString.repeat(targetLength);
return str + padString.slice(0, targetLength);
}
peg$SyntaxError.prototype.format = function (sources) {
var str = "Error: " + this.message;
if (this.location) {
var src = null;
var k;
for (k = 0; k < sources.length; k++) {
if (sources[k].source === this.location.source) {
// src = sources[k].text.split(/\r\n|\n|\r/g);
break;
}
}
var s = this.location.start;
var loc = this.location.source + ":" + s.line + ":" + s.column;
if (src) {
var e = this.location.end;
var filler = peg$padEnd("", s.line.toString().length, ' ');
var line = src[s.line - 1];
var last = s.line === e.line ? e.column : line.length + 1;
var hatLen = (last - s.column) || 1;
str += "\n --> " + loc + "\n"
+ filler + " |\n"
+ s.line + " | " + line + "\n"
+ filler + " | " + peg$padEnd("", s.column - 1, ' ')
+ peg$padEnd("", hatLen, "^");
}
else {
str += "\n at " + loc;
}
}
return str;
};
peg$SyntaxError.buildMessage = function (expected, found) {
var DESCRIBE_EXPECTATION_FNS = {
literal: function (expectation) {
return "\"" + literalEscape(expectation.text) + "\"";
},
class: function (expectation) {
var escapedParts = expectation.parts.map(function (part) {
return Array.isArray(part)
? classEscape(part[0]) + "-" + classEscape(part[1])
: classEscape(part);
});
return "[" + (expectation.inverted ? "^" : "") + escapedParts.join("") + "]";
},
any: function () {
return "any character";
},
end: function () {
return "end of input";
},
other: function (expectation) {
return expectation.description;
}
};
function hex(ch) {
return ch.charCodeAt(0).toString(16).toUpperCase();
}
function literalEscape(s) {
return s
.replace(/\\/g, "\\\\")
.replace(/"/g, "\\\"")
.replace(/\0/g, "\\0")
.replace(/\t/g, "\\t")
.replace(/\n/g, "\\n")
.replace(/\r/g, "\\r")
.replace(/[\x00-\x0F]/g, function (ch) { return "\\x0" + hex(ch); })
.replace(/[\x10-\x1F\x7F-\x9F]/g, function (ch) { return "\\x" + hex(ch); });
}
function classEscape(s) {
return s
.replace(/\\/g, "\\\\")
.replace(/\]/g, "\\]")
.replace(/\^/g, "\\^")
.replace(/-/g, "\\-")
.replace(/\0/g, "\\0")
.replace(/\t/g, "\\t")
.replace(/\n/g, "\\n")
.replace(/\r/g, "\\r")
.replace(/[\x00-\x0F]/g, function (ch) { return "\\x0" + hex(ch); })
.replace(/[\x10-\x1F\x7F-\x9F]/g, function (ch) { return "\\x" + hex(ch); });
}
function describeExpectation(expectation) {
return DESCRIBE_EXPECTATION_FNS[expectation.type](expectation);
}
function describeExpected(expected) {
var descriptions = expected.map(describeExpectation);
var i, j;
descriptions.sort();
if (descriptions.length > 0) {
for (i = 1, j = 1; i < descriptions.length; i++) {
if (descriptions[i - 1] !== descriptions[i]) {
descriptions[j] = descriptions[i];
j++;
}
}
descriptions.length = j;
}
switch (descriptions.length) {
case 1:
return descriptions[0];
case 2:
return descriptions[0] + " or " + descriptions[1];
default:
return descriptions.slice(0, -1).join(", ")
+ ", or "
+ descriptions[descriptions.length - 1];
}
}
function describeFound(found) {
return found ? "\"" + literalEscape(found) + "\"" : "end of input";
}
return "Expected " + describeExpected(expected) + " but " + describeFound(found) + " found.";
};
function peg$parse(input, options) {
// options = options !== undefined ? options : {};
var peg$FAILED = {};
var peg$source = options.grammarSource;
var peg$startRuleFunctions = { WS: peg$parseWS };
var peg$startRuleFunction = peg$parseWS;
var peg$c0 = "//";
var peg$c1 = "/";
var peg$c2 = "\"";
var peg$c3 = "\"\"\"";
var peg$c4 = ".";
var peg$c5 = "-";
var peg$c6 = "T";
var peg$c7 = ":";
var peg$c8 = "Z";
var peg$c9 = "+";
var peg$c10 = "module";
var peg$c11 = "import";
var peg$c12 = "device";
var peg$c13 = "policy";
var peg$c14 = "goal";
var peg$c15 = "type";
var peg$c16 = "agent";
var peg$c17 = "executionBlock";
var peg$c18 = "polyBlock";
var peg$c19 = "workflow";
var peg$c20 = "coordinationBlock";
var peg$c21 = "auditTrail";
var peg$c22 = "{";
var peg$c23 = "}";
var peg$c24 = ";";
var peg$c25 = ",";
var peg$c26 = "caps";
var peg$c27 = "[";
var peg$c28 = "]";
var peg$c29 = "@";
var peg$c30 = "privacy";
var peg$c31 = "energy_budget";
var peg$c32 = "per_";
var peg$c33 = "fairness";
var peg$c34 = "weighted";
var peg$c35 = "(";
var peg$c36 = ")";
var peg$c37 = "consentRequired";
var peg$c38 = "true";
var peg$c39 = "false";
var peg$c40 = "purpose";
var peg$c41 = "dpia";
var peg$c42 = "dpiaReport";
var peg$c43 = "constraints";
var peg$c44 = "<=";
var peg$c45 = ">=";
var peg$c46 = "<";
var peg$c47 = ">";
var peg$c48 = "==";
var peg$c49 = "optimize";
var peg$c50 = "for";
var peg$c51 = "=";
var peg$c52 = "union";
var peg$c53 = "id";
var peg$c54 = "model_id";
var peg$c55 = "created_by";
var peg$c56 = "timestamp";
var peg$c57 = "inputs";
var peg$c58 = "outputs";
var peg$c59 = "learns";
var peg$c60 = "continuous";
var peg$c61 = "explain";
var peg$c62 = "any";
var peg$c63 = "fallback";
var peg$c64 = "state";
var peg$c65 = "block";
var peg$c66 = "entry";
var peg$c67 = "lang";
var peg$c68 = "code";
var peg$c69 = "container";
var peg$c70 = "plan";
var peg$c71 = "coordination";
var peg$c72 = "feedback";
var peg$c73 = "->";
var peg$c74 = "consensus";
var peg$c75 = "conflict";
var peg$c76 = "metrics";
var peg$c77 = "interval";
var peg$c78 = "onError";
var peg$c79 = "retry";
var peg$c80 = "times";
var peg$c81 = "with";
var peg$c82 = "backoff";
var peg$c83 = "schedule";
var peg$c84 = "cron";
var peg$c85 = "backfill";
var peg$c86 = "window";
var peg$c87 = "alert";
var peg$c88 = "if";
var peg$c89 = "then";
var peg$c90 = "notify";
var peg$c91 = "agents";
var peg$c92 = "protocol";
var peg$c93 = "on_commit";
var peg$c94 = "snapshotOn";
var peg$c95 = "store";
var peg$r0 = /^[ \t\r\n]/;
var peg$r1 = /^[\\r\\n]/;
var peg$r2 = /^[A-Za-z_]/;
var peg$r3 = /^[A-Za-z0-9_]/;
var peg$r4 = /^[0-9]/;
var peg$r5 = /^[0-9a-fA-F]/;
var peg$e0 = peg$classExpectation([" ", "\t", "\r", "\n"], false, false);
var peg$e1 = peg$literalExpectation("//", false);
var peg$e2 = peg$classExpectation(["\\", "r", "\\", "n"], false, false);
var peg$e3 = peg$anyExpectation();
var peg$e4 = peg$literalExpectation("/", false);
var peg$e5 = peg$classExpectation([["A", "Z"], ["a", "z"], "_"], false, false);
var peg$e6 = peg$classExpectation([["A", "Z"], ["a", "z"], ["0", "9"], "_"], false, false);
var peg$e7 = peg$literalExpectation("\"", false);
var peg$e8 = peg$literalExpectation("\"\"\"", false);
var peg$e9 = peg$classExpectation([["0", "9"]], false, false);
var peg$e10 = peg$literalExpectation(".", false);
var peg$e11 = peg$literalExpectation("-", false);
var peg$e12 = peg$classExpectation([["0", "9"], ["a", "f"], ["A", "F"]], false, false);
var peg$e13 = peg$literalExpectation("T", false);
var peg$e14 = peg$literalExpectation(":", false);
var peg$e15 = peg$literalExpectation("Z", false);
var peg$e16 = peg$literalExpectation("+", false);
var peg$e17 = peg$literalExpectation("module", false);
var peg$e18 = peg$literalExpectation("import", false);
var peg$e19 = peg$literalExpectation("device", false);
var peg$e20 = peg$literalExpectation("policy", false);
var peg$e21 = peg$literalExpectation("goal", false);
var peg$e22 = peg$literalExpectation("type", false);
var peg$e23 = peg$literalExpectation("agent", false);
var peg$e24 = peg$literalExpectation("executionBlock", false);
var peg$e25 = peg$literalExpectation("polyBlock", false);
var peg$e26 = peg$literalExpectation("workflow", false);
var peg$e27 = peg$literalExpectation("coordinationBlock", false);
var peg$e28 = peg$literalExpectation("auditTrail", false);
var peg$e29 = peg$literalExpectation("{", false);
var peg$e30 = peg$literalExpectation("}", false);
var peg$e31 = peg$literalExpectation(";", false);
var peg$e32 = peg$literalExpectation(",", false);
var peg$e33 = peg$literalExpectation("caps", false);
var peg$e34 = peg$literalExpectation("[", false);
var peg$e35 = peg$literalExpectation("]", false);
var peg$e36 = peg$literalExpectation("@", false);
var peg$e37 = peg$literalExpectation("privacy", false);
var peg$e38 = peg$literalExpectation("energy_budget", false);
var peg$e39 = peg$literalExpectation("per_", false);
var peg$e40 = peg$literalExpectation("fairness", false);
var peg$e41 = peg$literalExpectation("weighted", false);
var peg$e42 = peg$literalExpectation("(", false);
var peg$e43 = peg$literalExpectation(")", false);
var peg$e44 = peg$literalExpectation("consentRequired", false);
var peg$e45 = peg$literalExpectation("true", false);
var peg$e46 = peg$literalExpectation("false", false);
var peg$e47 = peg$literalExpectation("purpose", false);
var peg$e48 = peg$literalExpectation("dpia", false);
var peg$e49 = peg$literalExpectation("dpiaReport", false);
var peg$e50 = peg$literalExpectation("constraints", false);
var peg$e51 = peg$literalExpectation("<=", false);
var peg$e52 = peg$literalExpectation(">=", false);
var peg$e53 = peg$literalExpectation("<", false);
var peg$e54 = peg$literalExpectation(">", false);
var peg$e55 = peg$literalExpectation("==", false);
var peg$e56 = peg$literalExpectation("optimize", false);
var peg$e57 = peg$literalExpectation("for", false);
var peg$e58 = peg$literalExpectation("=", false);
var peg$e59 = peg$literalExpectation("union", false);
var peg$e60 = peg$literalExpectation("id", false);
var peg$e61 = peg$literalExpectation("model_id", false);
var peg$e62 = peg$literalExpectation("created_by", false);
var peg$e63 = peg$literalExpectation("timestamp", false);
var peg$e64 = peg$literalExpectation("inputs", false);
var peg$e65 = peg$literalExpectation("outputs", false);
var peg$e66 = peg$literalExpectation("learns", false);
var peg$e67 = peg$literalExpectation("continuous", false);
var peg$e68 = peg$literalExpectation("explain", false);
var peg$e69 = peg$literalExpectation("any", false);
var peg$e70 = peg$literalExpectation("fallback", false);
var peg$e71 = peg$literalExpectation("state", false);
var peg$e72 = peg$literalExpectation("block", false);
var peg$e73 = peg$literalExpectation("entry", false);
var peg$e74 = peg$literalExpectation("lang", false);
var peg$e75 = peg$literalExpectation("code", false);
var peg$e76 = peg$literalExpectation("container", false);
var peg$e77 = peg$literalExpectation("plan", false);
var peg$e78 = peg$literalExpectation("coordination", false);
var peg$e79 = peg$literalExpectation("feedback", false);
var peg$e80 = peg$literalExpectation("->", false);
var peg$e81 = peg$literalExpectation("consensus", false);
var peg$e82 = peg$literalExpectation("conflict", false);
var peg$e83 = peg$literalExpectation("metrics", false);
var peg$e84 = peg$literalExpectation("interval", false);
var peg$e85 = peg$literalExpectation("onError", false);
var peg$e86 = peg$literalExpectation("retry", false);
var peg$e87 = peg$literalExpectation("times", false);
var peg$e88 = peg$literalExpectation("with", false);
var peg$e89 = peg$literalExpectation("backoff", false);
var peg$e90 = peg$literalExpectation("schedule", false);
var peg$e91 = peg$literalExpectation("cron", false);
var peg$e92 = peg$literalExpectation("backfill", false);
var peg$e93 = peg$literalExpectation("window", false);
var peg$e94 = peg$literalExpectation("alert", false);
var peg$e95 = peg$literalExpectation("if", false);
var peg$e96 = peg$literalExpectation("then", false);
var peg$e97 = peg$literalExpectation("notify", false);
var peg$e98 = peg$literalExpectation("agents", false);
var peg$e99 = peg$literalExpectation("protocol", false);
var peg$e100 = peg$literalExpectation("on_commit", false);
var peg$e101 = peg$literalExpectation("snapshotOn", false);
var peg$e102 = peg$literalExpectation("store", false);
var peg$currPos = 0;
var peg$savedPos = 0;
var peg$posDetailsCache = [{ line: 1, column: 1 }];
var peg$maxFailPos = 0;
var peg$maxFailExpected = [];
var peg$silentFails = 0;
var peg$result;
if ("startRule" in options) {
if (!(options.startRule in peg$startRuleFunctions)) {
throw new Error("Can't start parsing from rule \"" + options.startRule + "\".");
}
peg$startRuleFunction = peg$startRuleFunctions[options.startRule];
}
function text() {
return input.substring(peg$savedPos, peg$currPos);
}
function offset() {
return peg$savedPos;
}
function range() {
return {
source: peg$source,
start: peg$savedPos,
end: peg$currPos
};
}
function location() {
return peg$computeLocation(peg$savedPos, peg$currPos);
}
function expected(description, location) {
location: peg$computeLocation(peg$savedPos, peg$currPos);
throw peg$buildStructuredError([peg$otherExpectation(description)], input.substring(peg$savedPos, peg$currPos), location);
}
function error(message, location) {
location: peg$computeLocation(peg$savedPos, peg$currPos);
throw peg$buildSimpleError(message, location);
}
function peg$literalExpectation(text, ignoreCase) {
return { type: "literal", text: text, ignoreCase: ignoreCase };
}
function peg$classExpectation(parts, inverted, ignoreCase) {
return { type: "class", parts: parts, inverted: inverted, ignoreCase: ignoreCase };
}
function peg$anyExpectation() {
return { type: "any" };
}
function peg$endExpectation() {
return { type: "end" };
}
function peg$otherExpectation(description) {
return { type: "other", description: description };
}
function peg$computePosDetails(pos) {
var details = peg$posDetailsCache[pos];
var p;
if (details) {
return details;
}
else {
// p = pos - 1;
while (!peg$posDetailsCache[p]) {
p--;
}
// details = peg$posDetailsCache[p];
// details = {
line: details.line,
column;
details.column;
}
;
while (p < pos) {
if (input.charCodeAt(p) === 10) {
details.line++;
details.column = 1;
}
else {
details.column++;
}
p++;
}
peg$posDetailsCache[pos] = details;
return details;
}
}
function peg$computeLocation(startPos, endPos) {
var startPosDetails = peg$computePosDetails(startPos);
var endPosDetails = peg$computePosDetails(endPos);
return {
source: peg$source,
start: {
offset: startPos,
line: startPosDetails.line,
column: startPosDetails.column
},
end: {
offset: endPos,
line: endPosDetails.line,
column: endPosDetails.column
}
};
}
function peg$fail(expected) {
if (peg$currPos < peg$maxFailPos) {
return;
}
if (peg$currPos > peg$maxFailPos) {
peg$maxFailPos = peg$currPos;
peg$maxFailExpected = [];
}
peg$maxFailExpected.push(expected);
}
function peg$buildSimpleError(message, location) {
return new peg$SyntaxError(message, null, null, location);
}
function peg$buildStructuredError(expected, found, location) {
return new peg$SyntaxError(peg$SyntaxError.buildMessage(expected, found), expected, found, location);
}
function peg$parseWS() {
var s0, s1;
// s0 = [];
if (peg$r0.test(input.charAt(peg$currPos))) {
// s1 = input.charAt(peg$currPos);
peg$currPos++;
}
else {
// s1 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e0);
}
}
if (s1 !== peg$FAILED) {
while (s1 !== peg$FAILED) {
s0.push(s1);
if (peg$r0.test(input.charAt(peg$currPos))) {
// s1 = input.charAt(peg$currPos);
peg$currPos++;
}
else {
// s1 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e0);
}
}
}
}
else {
// s0 = peg$FAILED;
}
return s0;
}
function peg$parseCOMMENT() {
var s0, s1, s2, s3, s4, s5;
// s0 = peg$currPos;
if (input.substr(peg$currPos, 2) === peg$c0) {
// s1 = peg$c0;
peg$currPos += 2;
}
else {
// s1 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e1);
}
}
if (s1 !== peg$FAILED) {
// s2 = [];
// s3 = peg$currPos;
// s4 = peg$currPos;
peg$silentFails++;
if (peg$r1.test(input.charAt(peg$currPos))) {
// s5 = input.charAt(peg$currPos);
peg$currPos++;
}
else {
// s5 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e2);
}
}
peg$silentFails--;
if (s5 === peg$FAILED) {
// s4 = undefined;
}
else {
peg$currPos = s4;
// s4 = peg$FAILED;
}
if (s4 !== peg$FAILED) {
if (input.length > peg$currPos) {
// s5 = input.charAt(peg$currPos);
peg$currPos++;
}
else {
// s5 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e3);
}
}
if (s5 !== peg$FAILED) {
// s4 = [s4, s5];
// s3 = s4;
}
else {
peg$currPos = s3;
// s3 = peg$FAILED;
}
}
else {
peg$currPos = s3;
// s3 = peg$FAILED;
}
while (s3 !== peg$FAILED) {
s2.push(s3);
// s3 = peg$currPos;
// s4 = peg$currPos;
peg$silentFails++;
if (peg$r1.test(input.charAt(peg$currPos))) {
// s5 = input.charAt(peg$currPos);
peg$currPos++;
}
else {
// s5 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e2);
}
}
peg$silentFails--;
if (s5 === peg$FAILED) {
// s4 = undefined;
}
else {
peg$currPos = s4;
// s4 = peg$FAILED;
}
if (s4 !== peg$FAILED) {
if (input.length > peg$currPos) {
// s5 = input.charAt(peg$currPos);
peg$currPos++;
}
else {
// s5 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e3);
}
}
if (s5 !== peg$FAILED) {
// s4 = [s4, s5];
// s3 = s4;
}
else {
peg$currPos = s3;
// s3 = peg$FAILED;
}
}
else {
peg$currPos = s3;
// s3 = peg$FAILED;
}
}
// s1 = [s1, s2];
// s0 = s1;
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
return s0;
}
function peg$parseBLOCK_COMMENT() {
var s0, s1, s2, s3, s4, s5;
// s0 = peg$currPos;
if (input.charCodeAt(peg$currPos) === 47) {
// s1 = peg$c1;
peg$currPos++;
}
else {
// s1 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e4);
}
}
if (s1 !== peg$FAILED) {
// s2 = [];
// s3 = peg$currPos;
// s4 = peg$currPos;
peg$silentFails++;
if (input.charCodeAt(peg$currPos) === 47) {
// s5 = peg$c1;
peg$currPos++;
}
else {
// s5 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e4);
}
}
peg$silentFails--;
if (s5 === peg$FAILED) {
// s4 = undefined;
}
else {
peg$currPos = s4;
// s4 = peg$FAILED;
}
if (s4 !== peg$FAILED) {
if (input.length > peg$currPos) {
// s5 = input.charAt(peg$currPos);
peg$currPos++;
}
else {
// s5 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e3);
}
}
if (s5 !== peg$FAILED) {
// s4 = [s4, s5];
// s3 = s4;
}
else {
peg$currPos = s3;
// s3 = peg$FAILED;
}
}
else {
peg$currPos = s3;
// s3 = peg$FAILED;
}
while (s3 !== peg$FAILED) {
s2.push(s3);
// s3 = peg$currPos;
// s4 = peg$currPos;
peg$silentFails++;
if (input.charCodeAt(peg$currPos) === 47) {
// s5 = peg$c1;
peg$currPos++;
}
else {
// s5 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e4);
}
}
peg$silentFails--;
if (s5 === peg$FAILED) {
// s4 = undefined;
}
else {
peg$currPos = s4;
// s4 = peg$FAILED;
}
if (s4 !== peg$FAILED) {
if (input.length > peg$currPos) {
// s5 = input.charAt(peg$currPos);
peg$currPos++;
}
else {
// s5 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e3);
}
}
if (s5 !== peg$FAILED) {
// s4 = [s4, s5];
// s3 = s4;
}
else {
peg$currPos = s3;
// s3 = peg$FAILED;
}
}
else {
peg$currPos = s3;
// s3 = peg$FAILED;
}
}
if (input.charCodeAt(peg$currPos) === 47) {
// s3 = peg$c1;
peg$currPos++;
}
else {
// s3 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e4);
}
}
if (s3 !== peg$FAILED) {
// s1 = [s1, s2, s3];
// s0 = s1;
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
return s0;
}
function peg$parse_() {
var s0, s1;
// s0 = [];
// s1 = peg$parseWS();
if (s1 === peg$FAILED) {
// s1 = peg$parseCOMMENT();
if (s1 === peg$FAILED) {
// s1 = peg$parseBLOCK_COMMENT();
}
}
while (s1 !== peg$FAILED) {
s0.push(s1);
// s1 = peg$parseWS();
if (s1 === peg$FAILED) {
// s1 = peg$parseCOMMENT();
if (s1 === peg$FAILED) {
// s1 = peg$parseBLOCK_COMMENT();
}
}
}
return s0;
}
function peg$parseIdentifier() {
var s0, s1, s2, s3, s4;
// s0 = peg$currPos;
// s1 = peg$currPos;
peg$silentFails++;
// s2 = peg$parseReserved();
peg$silentFails--;
if (s2 === peg$FAILED) {
// s1 = undefined;
}
else {
peg$currPos = s1;
// s1 = peg$FAILED;
}
if (s1 !== peg$FAILED) {
if (peg$r2.test(input.charAt(peg$currPos))) {
// s2 = input.charAt(peg$currPos);
peg$currPos++;
}
else {
// s2 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e5);
}
}
if (s2 !== peg$FAILED) {
// s3 = [];
if (peg$r3.test(input.charAt(peg$currPos))) {
// s4 = input.charAt(peg$currPos);
peg$currPos++;
}
else {
// s4 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e6);
}
}
while (s4 !== peg$FAILED) {
s3.push(s4);
if (peg$r3.test(input.charAt(peg$currPos))) {
// s4 = input.charAt(peg$currPos);
peg$currPos++;
}
else {
// s4 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e6);
}
}
}
// s1 = [s1, s2, s3];
// s0 = s1;
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
return s0;
}
function peg$parseStringLiteral() {
var s0, s1, s2, s3, s4, s5;
// s0 = peg$currPos;
if (input.charCodeAt(peg$currPos) === 34) {
// s1 = peg$c2;
peg$currPos++;
}
else {
// s1 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e7);
}
}
if (s1 !== peg$FAILED) {
// s2 = [];
// s3 = peg$currPos;
// s4 = peg$currPos;
peg$silentFails++;
if (input.charCodeAt(peg$currPos) === 34) {
// s5 = peg$c2;
peg$currPos++;
}
else {
// s5 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e7);
}
}
peg$silentFails--;
if (s5 === peg$FAILED) {
// s4 = undefined;
}
else {
peg$currPos = s4;
// s4 = peg$FAILED;
}
if (s4 !== peg$FAILED) {
if (input.length > peg$currPos) {
// s5 = input.charAt(peg$currPos);
peg$currPos++;
}
else {
// s5 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e3);
}
}
if (s5 !== peg$FAILED) {
// s4 = [s4, s5];
// s3 = s4;
}
else {
peg$currPos = s3;
// s3 = peg$FAILED;
}
}
else {
peg$currPos = s3;
// s3 = peg$FAILED;
}
while (s3 !== peg$FAILED) {
s2.push(s3);
// s3 = peg$currPos;
// s4 = peg$currPos;
peg$silentFails++;
if (input.charCodeAt(peg$currPos) === 34) {
// s5 = peg$c2;
peg$currPos++;
}
else {
// s5 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e7);
}
}
peg$silentFails--;
if (s5 === peg$FAILED) {
// s4 = undefined;
}
else {
peg$currPos = s4;
// s4 = peg$FAILED;
}
if (s4 !== peg$FAILED) {
if (input.length > peg$currPos) {
// s5 = input.charAt(peg$currPos);
peg$currPos++;
}
else {
// s5 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e3);
}
}
if (s5 !== peg$FAILED) {
// s4 = [s4, s5];
// s3 = s4;
}
else {
peg$currPos = s3;
// s3 = peg$FAILED;
}
}
else {
peg$currPos = s3;
// s3 = peg$FAILED;
}
}
if (input.charCodeAt(peg$currPos) === 34) {
// s3 = peg$c2;
peg$currPos++;
}
else {
// s3 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e7);
}
}
if (s3 !== peg$FAILED) {
// s1 = [s1, s2, s3];
// s0 = s1;
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
if (s0 === peg$FAILED) {
// s0 = peg$currPos;
if (input.substr(peg$currPos, 3) === peg$c3) {
// s1 = peg$c3;
peg$currPos += 3;
}
else {
// s1 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e8);
}
}
if (s1 !== peg$FAILED) {
// s2 = [];
// s3 = peg$currPos;
// s4 = peg$currPos;
peg$silentFails++;
if (input.substr(peg$currPos, 3) === peg$c3) {
// s5 = peg$c3;
peg$currPos += 3;
}
else {
// s5 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e8);
}
}
peg$silentFails--;
if (s5 === peg$FAILED) {
// s4 = undefined;
}
else {
peg$currPos = s4;
// s4 = peg$FAILED;
}
if (s4 !== peg$FAILED) {
if (input.length > peg$currPos) {
// s5 = input.charAt(peg$currPos);
peg$currPos++;
}
else {
// s5 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e3);
}
}
if (s5 !== peg$FAILED) {
// s4 = [s4, s5];
// s3 = s4;
}
else {
peg$currPos = s3;
// s3 = peg$FAILED;
}
}
else {
peg$currPos = s3;
// s3 = peg$FAILED;
}
while (s3 !== peg$FAILED) {
s2.push(s3);
// s3 = peg$currPos;
// s4 = peg$currPos;
peg$silentFails++;
if (input.substr(peg$currPos, 3) === peg$c3) {
// s5 = peg$c3;
peg$currPos += 3;
}
else {
// s5 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e8);
}
}
peg$silentFails--;
if (s5 === peg$FAILED) {
// s4 = undefined;
}
else {
peg$currPos = s4;
// s4 = peg$FAILED;
}
if (s4 !== peg$FAILED) {
if (input.length > peg$currPos) {
// s5 = input.charAt(peg$currPos);
peg$currPos++;
}
else {
// s5 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e3);
}
}
if (s5 !== peg$FAILED) {
// s4 = [s4, s5];
// s3 = s4;
}
else {
peg$currPos = s3;
// s3 = peg$FAILED;
}
}
else {
peg$currPos = s3;
// s3 = peg$FAILED;
}
}
if (input.substr(peg$currPos, 3) === peg$c3) {
// s3 = peg$c3;
peg$currPos += 3;
}
else {
// s3 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e8);
}
}
if (s3 !== peg$FAILED) {
// s1 = [s1, s2, s3];
// s0 = s1;
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
}
return s0;
}
function peg$parseNumberLiteral() {
var s0, s1, s2, s3, s4, s5;
// s0 = peg$currPos;
// s1 = [];
if (peg$r4.test(input.charAt(peg$currPos))) {
// s2 = input.charAt(peg$currPos);
peg$currPos++;
}
else {
// s2 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e9);
}
}
if (s2 !== peg$FAILED) {
while (s2 !== peg$FAILED) {
s1.push(s2);
if (peg$r4.test(input.charAt(peg$currPos))) {
// s2 = input.charAt(peg$currPos);
peg$currPos++;
}
else {
// s2 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e9);
}
}
}
}
else {
// s1 = peg$FAILED;
}
if (s1 !== peg$FAILED) {
// s2 = peg$currPos;
if (input.charCodeAt(peg$currPos) === 46) {
// s3 = peg$c4;
peg$currPos++;
}
else {
// s3 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e10);
}
}
if (s3 !== peg$FAILED) {
// s4 = [];
if (peg$r4.test(input.charAt(peg$currPos))) {
// s5 = input.charAt(peg$currPos);
peg$currPos++;
}
else {
// s5 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e9);
}
}
if (s5 !== peg$FAILED) {
while (s5 !== peg$FAILED) {
s4.push(s5);
if (peg$r4.test(input.charAt(peg$currPos))) {
// s5 = input.charAt(peg$currPos);
peg$currPos++;
}
else {
// s5 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e9);
}
}
}
}
else {
// s4 = peg$FAILED;
}
if (s4 !== peg$FAILED) {
// s3 = [s3, s4];
// s2 = s3;
}
else {
peg$currPos = s2;
// s2 = peg$FAILED;
}
}
else {
peg$currPos = s2;
// s2 = peg$FAILED;
}
if (s2 === peg$FAILED) {
// s2 = null;
}
// s1 = [s1, s2];
// s0 = s1;
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
return s0;
}
function peg$parseUUID() {
var s0, s1, s2, s3, s4, s5, s6, s7, s8, s9;
// s0 = peg$currPos;
// s1 = peg$parsehex8();
if (s1 !== peg$FAILED) {
if (input.charCodeAt(peg$currPos) === 45) {
// s2 = peg$c5;
peg$currPos++;
}
else {
// s2 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e11);
}
}
if (s2 !== peg$FAILED) {
// s3 = peg$parsehex4();
if (s3 !== peg$FAILED) {
if (input.charCodeAt(peg$currPos) === 45) {
// s4 = peg$c5;
peg$currPos++;
}
else {
// s4 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e11);
}
}
if (s4 !== peg$FAILED) {
// s5 = peg$parsehex4();
if (s5 !== peg$FAILED) {
if (input.charCodeAt(peg$currPos) === 45) {
// s6 = peg$c5;
peg$currPos++;
}
else {
// s6 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e11);
}
}
if (s6 !== peg$FAILED) {
// s7 = peg$parsehex4();
if (s7 !== peg$FAILED) {
if (input.charCodeAt(peg$currPos) === 45) {
// s8 = peg$c5;
peg$currPos++;
}
else {
// s8 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e11);
}
}
if (s8 !== peg$FAILED) {
// s9 = peg$parsehex12();
if (s9 !== peg$FAILED) {
// s1 = [s1, s2, s3, s4, s5, s6, s7, s8, s9];
// s0 = s1;
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
return s0;
}
function peg$parsehex() {
var s0;
if (peg$r5.test(input.charAt(peg$currPos))) {
// s0 = input.charAt(peg$currPos);
peg$currPos++;
}
else {
// s0 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e12);
}
}
return s0;
}
function peg$parsehex4() {
var s0, s1, s2, s3, s4;
// s0 = peg$currPos;
// s1 = peg$parsehex();
if (s1 !== peg$FAILED) {
// s2 = peg$parsehex();
if (s2 !== peg$FAILED) {
// s3 = peg$parsehex();
if (s3 !== peg$FAILED) {
// s4 = peg$parsehex();
if (s4 !== peg$FAILED) {
// s1 = [s1, s2, s3, s4];
// s0 = s1;
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
return s0;
}
function peg$parsehex8() {
var s0, s1, s2;
// s0 = peg$currPos;
// s1 = peg$parsehex4();
if (s1 !== peg$FAILED) {
// s2 = peg$parsehex4();
if (s2 !== peg$FAILED) {
// s1 = [s1, s2];
// s0 = s1;
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
return s0;
}
function peg$parsehex12() {
var s0, s1, s2, s3;
// s0 = peg$currPos;
// s1 = peg$parsehex4();
if (s1 !== peg$FAILED) {
// s2 = peg$parsehex4();
if (s2 !== peg$FAILED) {
// s3 = peg$parsehex4();
if (s3 !== peg$FAILED) {
// s1 = [s1, s2, s3];
// s0 = s1;
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
}
else {
peg$currPos = s0;
// s0 = peg$FAILED;
}
return s0;
}
function peg$parseTimestamp() {
var s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, s11, s12, s13, s14, s15, s16, s17, s18, s19, s20, s21, s22, s23, s24, s25, s26;
// s0 = peg$currPos;
// s1 = peg$parsedigit();
if (s1 !== peg$FAILED) {
// s2 = peg$parsedigit();
if (s2 !== peg$FAILED) {
// s3 = peg$parsedigit();
if (s3 !== peg$FAILED) {
// s4 = peg$parsedigit();
if (s4 !== peg$FAILED) {
if (input.charCodeAt(peg$currPos) === 45) {
// s5 = peg$c5;
peg$currPos++;
}
else {
// s5 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e11);
}
}
if (s5 !== peg$FAILED) {
// s6 = peg$parsedigit();
if (s6 !== peg$FAILED) {
// s7 = peg$parsedigit();
if (s7 !== peg$FAILED) {
if (input.charCodeAt(peg$currPos) === 45) {
// s8 = peg$c5;
peg$currPos++;
}
else {
// s8 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e11);
}
}
if (s8 !== peg$FAILED) {
// s9 = peg$parsedigit();
if (s9 !== peg$FAILED) {
// s10 = peg$parsedigit();
if (s10 !== peg$FAILED) {
if (input.charCodeAt(peg$currPos) === 84) {
// s11 = peg$c6;
peg$currPos++;
}
else {
// s11 = peg$FAILED;
if (peg$silentFails === 0) {
peg$fail(peg$e13);
}
}
if (s11 !== peg$FAILED) {
// s12 = peg$parsedigit();
if (s12 !== peg$FAILED) {
// s13 = peg$parsedigit();
if (s13 !== peg$FAILED) {
if (input.charCodeAt(peg$currPos) === 58) {
// s14 = peg$c7;