/* Do not edit this file directly. It is automatically generated from src/dust.pegjs */ (function(root, factory) { if (typeof define === "function" && define.amd && define.amd.dust === true) { define("dust.parse", ["dust.core"], function(dust) { return factory(dust).parse; }); } else if (typeof exports === 'object') { // in Node, require this file if we want to use the parser as a standalone module module.exports = factory(require('./dust')); // @see server file for parser methods exposed in node } else { // in the browser, store the factory output if we want to use the parser directly factory(root.dust); } }(this, function(dust) { var parser = (function() { "use strict"; /* * Generated by PEG.js 0.9.0. * * http://pegjs.org/ */ function peg$subclass(child, parent) { function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); } function peg$SyntaxError(message, expected, found, location) { this.message = message; this.expected = expected; this.found = found; this.location = location; this.name = "SyntaxError"; if (typeof Error.captureStackTrace === "function") { Error.captureStackTrace(this, peg$SyntaxError); } } peg$subclass(peg$SyntaxError, Error); function peg$parse(input) { var options = arguments.length > 1 ? arguments[1] : {}, parser = this, peg$FAILED = {}, peg$startRuleFunctions = { start: peg$parsestart }, peg$startRuleFunction = peg$parsestart, peg$c0 = function(p) { var body = ["body"].concat(p); return withPosition(body); }, peg$c1 = { type: "other", description: "section" }, peg$c2 = function(t, b, e, n) { if( (!n) || (t[1].text !== n.text) ) { error("Expected end tag for "+t[1].text+" but it was not found."); } return true; }, peg$c3 = function(t, b, e, n) { e.push(["param", ["literal", "block"], b]); t.push(e, ["filters"]); return withPosition(t) }, peg$c4 = "/", peg$c5 = { type: "literal", value: "/", description: "\"/\"" }, peg$c6 = function(t) { t.push(["bodies"], ["filters"]); return withPosition(t) }, peg$c7 = /^[#?\^<+@%]/, peg$c8 = { type: "class", value: "[#?^<+@%]", description: "[#?^<+@%]" }, peg$c9 = function(t, n, c, p) { return [t, n, c, p] }, peg$c10 = { type: "other", description: "end tag" }, peg$c11 = function(n) { return n }, peg$c12 = ":", peg$c13 = { type: "literal", value: ":", description: "\":\"" }, peg$c14 = function(n) {return n}, peg$c15 = function(n) { return n ? ["context", n] : ["context"] }, peg$c16 = { type: "other", description: "params" }, peg$c17 = "=", peg$c18 = { type: "literal", value: "=", description: "\"=\"" }, peg$c19 = function(k, v) {return ["param", ["literal", k], v]}, peg$c20 = function(p) { return ["params"].concat(p) }, peg$c21 = { type: "other", description: "bodies" }, peg$c22 = function(p) { return ["bodies"].concat(p) }, peg$c23 = { type: "other", description: "reference" }, peg$c24 = function(n, f) { return withPosition(["reference", n, f]) }, peg$c25 = { type: "other", description: "partial" }, peg$c26 = ">", peg$c27 = { type: "literal", value: ">", description: "\">\"" }, peg$c28 = "+", peg$c29 = { type: "literal", value: "+", description: "\"+\"" }, peg$c30 = function(s, k) {return ["literal", k]}, peg$c31 = function(s, n, c, p) { var key = (s === ">") ? "partial" : s; return withPosition([key, n, c, p]) }, peg$c32 = { type: "other", description: "filters" }, peg$c33 = "|", peg$c34 = { type: "literal", value: "|", description: "\"|\"" }, peg$c35 = function(f) { return ["filters"].concat(f) }, peg$c36 = { type: "other", description: "special" }, peg$c37 = "~", peg$c38 = { type: "literal", value: "~", description: "\"~\"" }, peg$c39 = function(k) { return withPosition(["special", k]) }, peg$c40 = { type: "other", description: "identifier" }, peg$c41 = function(p) { var arr = ["path"].concat(p); arr.text = p[1].join('.'); return arr; }, peg$c42 = function(k) { var arr = ["key", k]; arr.text = k; return arr; }, peg$c43 = { type: "other", description: "number" }, peg$c44 = function(n) { return ['literal', n]; }, peg$c45 = { type: "other", description: "float" }, peg$c46 = ".", peg$c47 = { type: "literal", value: ".", description: "\".\"" }, peg$c48 = function(l, r) { return parseFloat(l + "." + r); }, peg$c49 = { type: "other", description: "unsigned_integer" }, peg$c50 = /^[0-9]/, peg$c51 = { type: "class", value: "[0-9]", description: "[0-9]" }, peg$c52 = function(digits) { return makeInteger(digits); }, peg$c53 = { type: "other", description: "signed_integer" }, peg$c54 = "-", peg$c55 = { type: "literal", value: "-", description: "\"-\"" }, peg$c56 = function(sign, n) { return n * -1; }, peg$c57 = { type: "other", description: "integer" }, peg$c58 = { type: "other", description: "path" }, peg$c59 = function(k, d) { d = d[0]; if (k && d) { d.unshift(k); return withPosition([false, d]) } return withPosition([true, d]) }, peg$c60 = function(d) { if (d.length > 0) { return withPosition([true, d[0]]) } return withPosition([true, []]) }, peg$c61 = { type: "other", description: "key" }, peg$c62 = /^[a-zA-Z_$]/, peg$c63 = { type: "class", value: "[a-zA-Z_$]", description: "[a-zA-Z_$]" }, peg$c64 = /^[0-9a-zA-Z_$\-]/, peg$c65 = { type: "class", value: "[0-9a-zA-Z_$-]", description: "[0-9a-zA-Z_$-]" }, peg$c66 = function(h, t) { return h + t.join('') }, peg$c67 = { type: "other", description: "array" }, peg$c68 = function(n) {return n.join('')}, peg$c69 = function(a) {return a; }, peg$c70 = function(i, nk) { if(nk) { nk.unshift(i); } else {nk = [i] } return nk; }, peg$c71 = { type: "other", description: "array_part" }, peg$c72 = function(k) {return k}, peg$c73 = function(d, a) { if (a) { return d.concat(a); } else { return d; } }, peg$c74 = { type: "other", description: "inline" }, peg$c75 = "\"", peg$c76 = { type: "literal", value: "\"", description: "\"\\\"\"" }, peg$c77 = function() { return withPosition(["literal", ""]) }, peg$c78 = function(l) { return withPosition(["literal", l]) }, peg$c79 = function(p) { return withPosition(["body"].concat(p)) }, peg$c80 = function(l) { return ["buffer", l] }, peg$c81 = { type: "other", description: "buffer" }, peg$c82 = function(e, w) { return withPosition(["format", e, w.join('')]) }, peg$c83 = { type: "any", description: "any character" }, peg$c84 = function(c) {return c}, peg$c85 = function(b) { return withPosition(["buffer", b.join('')]) }, peg$c86 = { type: "other", description: "literal" }, peg$c87 = /^[^"]/, peg$c88 = { type: "class", value: "[^\"]", description: "[^\"]" }, peg$c89 = function(b) { return b.join('') }, peg$c90 = "\\\"", peg$c91 = { type: "literal", value: "\\\"", description: "\"\\\\\\\"\"" }, peg$c92 = function() { return '"' }, peg$c93 = { type: "other", description: "raw" }, peg$c94 = "{`", peg$c95 = { type: "literal", value: "{`", description: "\"{`\"" }, peg$c96 = "`}", peg$c97 = { type: "literal", value: "`}", description: "\"`}\"" }, peg$c98 = function(character) {return character}, peg$c99 = function(rawText) { return withPosition(["raw", rawText.join('')]) }, peg$c100 = { type: "other", description: "comment" }, peg$c101 = "{!", peg$c102 = { type: "literal", value: "{!", description: "\"{!\"" }, peg$c103 = "!}", peg$c104 = { type: "literal", value: "!}", description: "\"!}\"" }, peg$c105 = function(c) { return withPosition(["comment", c.join('')]) }, peg$c106 = /^[#?\^><+%:@\/~%]/, peg$c107 = { type: "class", value: "[#?^><+%:@/~%]", description: "[#?^><+%:@/~%]" }, peg$c108 = "{", peg$c109 = { type: "literal", value: "{", description: "\"{\"" }, peg$c110 = "}", peg$c111 = { type: "literal", value: "}", description: "\"}\"" }, peg$c112 = "[", peg$c113 = { type: "literal", value: "[", description: "\"[\"" }, peg$c114 = "]", peg$c115 = { type: "literal", value: "]", description: "\"]\"" }, peg$c116 = "\n", peg$c117 = { type: "literal", value: "\n", description: "\"\\n\"" }, peg$c118 = "\r\n", peg$c119 = { type: "literal", value: "\r\n", description: "\"\\r\\n\"" }, peg$c120 = "\r", peg$c121 = { type: "literal", value: "\r", description: "\"\\r\"" }, peg$c122 = "\u2028", peg$c123 = { type: "literal", value: "\u2028", description: "\"\\u2028\"" }, peg$c124 = "\u2029", peg$c125 = { type: "literal", value: "\u2029", description: "\"\\u2029\"" }, peg$c126 = /^[\t\x0B\f \xA0\uFEFF]/, peg$c127 = { type: "class", value: "[\\t\\v\\f \\u00A0\\uFEFF]", description: "[\\t\\v\\f \\u00A0\\uFEFF]" }, peg$currPos = 0, peg$savedPos = 0, peg$posDetailsCache = [{ line: 1, column: 1, seenCR: false }], peg$maxFailPos = 0, peg$maxFailExpected = [], peg$silentFails = 0, 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 location() { return peg$computeLocation(peg$savedPos, peg$currPos); } function expected(description) { throw peg$buildException( null, [{ type: "other", description: description }], input.substring(peg$savedPos, peg$currPos), peg$computeLocation(peg$savedPos, peg$currPos) ); } function error(message) { throw peg$buildException( message, null, input.substring(peg$savedPos, peg$currPos), peg$computeLocation(peg$savedPos, peg$currPos) ); } function peg$computePosDetails(pos) { var details = peg$posDetailsCache[pos], p, ch; if (details) { return details; } else { p = pos - 1; while (!peg$posDetailsCache[p]) { p--; } details = peg$posDetailsCache[p]; details = { line: details.line, column: details.column, seenCR: details.seenCR }; while (p < pos) { ch = input.charAt(p); if (ch === "\n") { if (!details.seenCR) { details.line++; } details.column = 1; details.seenCR = false; } else if (ch === "\r" || ch === "\u2028" || ch === "\u2029") { details.line++; details.column = 1; details.seenCR = true; } else { details.column++; details.seenCR = false; } p++; } peg$posDetailsCache[pos] = details; return details; } } function peg$computeLocation(startPos, endPos) { var startPosDetails = peg$computePosDetails(startPos), endPosDetails = peg$computePosDetails(endPos); return { 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$buildException(message, expected, found, location) { function cleanupExpected(expected) { var i = 1; expected.sort(function(a, b) { if (a.description < b.description) { return -1; } else if (a.description > b.description) { return 1; } else { return 0; } }); while (i < expected.length) { if (expected[i - 1] === expected[i]) { expected.splice(i, 1); } else { i++; } } } function buildMessage(expected, found) { function stringEscape(s) { function hex(ch) { return ch.charCodeAt(0).toString(16).toUpperCase(); } return s .replace(/\\/g, '\\\\') .replace(/"/g, '\\"') .replace(/\x08/g, '\\b') .replace(/\t/g, '\\t') .replace(/\n/g, '\\n') .replace(/\f/g, '\\f') .replace(/\r/g, '\\r') .replace(/[\x00-\x07\x0B\x0E\x0F]/g, function(ch) { return '\\x0' + hex(ch); }) .replace(/[\x10-\x1F\x80-\xFF]/g, function(ch) { return '\\x' + hex(ch); }) .replace(/[\u0100-\u0FFF]/g, function(ch) { return '\\u0' + hex(ch); }) .replace(/[\u1000-\uFFFF]/g, function(ch) { return '\\u' + hex(ch); }); } var expectedDescs = new Array(expected.length), expectedDesc, foundDesc, i; for (i = 0; i < expected.length; i++) { expectedDescs[i] = expected[i].description; } expectedDesc = expected.length > 1 ? expectedDescs.slice(0, -1).join(", ") + " or " + expectedDescs[expected.length - 1] : expectedDescs[0]; foundDesc = found ? "\"" + stringEscape(found) + "\"" : "end of input"; return "Expected " + expectedDesc + " but " + foundDesc + " found."; } if (expected !== null) { cleanupExpected(expected); } return new peg$SyntaxError( message !== null ? message : buildMessage(expected, found), expected, found, location ); } function peg$parsestart() { var s0; s0 = peg$parsebody(); return s0; } function peg$parsebody() { var s0, s1, s2; s0 = peg$currPos; s1 = []; s2 = peg$parsepart(); while (s2 !== peg$FAILED) { s1.push(s2); s2 = peg$parsepart(); } if (s1 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c0(s1); } s0 = s1; return s0; } function peg$parsepart() { var s0; s0 = peg$parseraw(); if (s0 === peg$FAILED) { s0 = peg$parsecomment(); if (s0 === peg$FAILED) { s0 = peg$parsesection(); if (s0 === peg$FAILED) { s0 = peg$parsepartial(); if (s0 === peg$FAILED) { s0 = peg$parsespecial(); if (s0 === peg$FAILED) { s0 = peg$parsereference(); if (s0 === peg$FAILED) { s0 = peg$parsebuffer(); } } } } } } return s0; } function peg$parsesection() { var s0, s1, s2, s3, s4, s5, s6, s7; peg$silentFails++; s0 = peg$currPos; s1 = peg$parsesec_tag_start(); if (s1 !== peg$FAILED) { s2 = []; s3 = peg$parsews(); while (s3 !== peg$FAILED) { s2.push(s3); s3 = peg$parsews(); } if (s2 !== peg$FAILED) { s3 = peg$parserd(); if (s3 !== peg$FAILED) { s4 = peg$parsebody(); if (s4 !== peg$FAILED) { s5 = peg$parsebodies(); if (s5 !== peg$FAILED) { s6 = peg$parseend_tag(); if (s6 === peg$FAILED) { s6 = null; } if (s6 !== peg$FAILED) { peg$savedPos = peg$currPos; s7 = peg$c2(s1, s4, s5, s6); if (s7) { s7 = void 0; } else { s7 = peg$FAILED; } if (s7 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c3(s1, s4, s5, s6); 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; } if (s0 === peg$FAILED) { s0 = peg$currPos; s1 = peg$parsesec_tag_start(); if (s1 !== peg$FAILED) { s2 = []; s3 = peg$parsews(); while (s3 !== peg$FAILED) { s2.push(s3); s3 = peg$parsews(); } if (s2 !== peg$FAILED) { if (input.charCodeAt(peg$currPos) === 47) { s3 = peg$c4; peg$currPos++; } else { s3 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c5); } } if (s3 !== peg$FAILED) { s4 = peg$parserd(); if (s4 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c6(s1); 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; } } peg$silentFails--; if (s0 === peg$FAILED) { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c1); } } return s0; } function peg$parsesec_tag_start() { var s0, s1, s2, s3, s4, s5, s6; s0 = peg$currPos; s1 = peg$parseld(); if (s1 !== peg$FAILED) { if (peg$c7.test(input.charAt(peg$currPos))) { s2 = input.charAt(peg$currPos); peg$currPos++; } else { s2 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c8); } } if (s2 !== peg$FAILED) { s3 = []; s4 = peg$parsews(); while (s4 !== peg$FAILED) { s3.push(s4); s4 = peg$parsews(); } if (s3 !== peg$FAILED) { s4 = peg$parseidentifier(); if (s4 !== peg$FAILED) { s5 = peg$parsecontext(); if (s5 !== peg$FAILED) { s6 = peg$parseparams(); if (s6 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c9(s2, s4, s5, s6); 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; } return s0; } function peg$parseend_tag() { var s0, s1, s2, s3, s4, s5, s6; peg$silentFails++; s0 = peg$currPos; s1 = peg$parseld(); if (s1 !== peg$FAILED) { if (input.charCodeAt(peg$currPos) === 47) { s2 = peg$c4; peg$currPos++; } else { s2 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c5); } } if (s2 !== peg$FAILED) { s3 = []; s4 = peg$parsews(); while (s4 !== peg$FAILED) { s3.push(s4); s4 = peg$parsews(); } if (s3 !== peg$FAILED) { s4 = peg$parseidentifier(); if (s4 !== peg$FAILED) { s5 = []; s6 = peg$parsews(); while (s6 !== peg$FAILED) { s5.push(s6); s6 = peg$parsews(); } if (s5 !== peg$FAILED) { s6 = peg$parserd(); if (s6 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c11(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; } } else { peg$currPos = s0; s0 = peg$FAILED; } } else { peg$currPos = s0; s0 = peg$FAILED; } peg$silentFails--; if (s0 === peg$FAILED) { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c10); } } return s0; } function peg$parsecontext() { var s0, s1, s2, s3; s0 = peg$currPos; s1 = peg$currPos; if (input.charCodeAt(peg$currPos) === 58) { s2 = peg$c12; peg$currPos++; } else { s2 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c13); } } if (s2 !== peg$FAILED) { s3 = peg$parseidentifier(); if (s3 !== peg$FAILED) { peg$savedPos = s1; s2 = peg$c14(s3); s1 = s2; } else { peg$currPos = s1; s1 = peg$FAILED; } } else { peg$currPos = s1; s1 = peg$FAILED; } if (s1 === peg$FAILED) { s1 = null; } if (s1 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c15(s1); } s0 = s1; return s0; } function peg$parseparams() { var s0, s1, s2, s3, s4, s5, s6; peg$silentFails++; s0 = peg$currPos; s1 = []; s2 = peg$currPos; s3 = []; s4 = peg$parsews(); if (s4 !== peg$FAILED) { while (s4 !== peg$FAILED) { s3.push(s4); s4 = peg$parsews(); } } else { s3 = peg$FAILED; } if (s3 !== peg$FAILED) { s4 = peg$parsekey(); if (s4 !== peg$FAILED) { if (input.charCodeAt(peg$currPos) === 61) { s5 = peg$c17; peg$currPos++; } else { s5 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c18); } } if (s5 !== peg$FAILED) { s6 = peg$parsenumber(); if (s6 === peg$FAILED) { s6 = peg$parseidentifier(); if (s6 === peg$FAILED) { s6 = peg$parseinline(); } } if (s6 !== peg$FAILED) { peg$savedPos = s2; s3 = peg$c19(s4, s6); s2 = s3; } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } while (s2 !== peg$FAILED) { s1.push(s2); s2 = peg$currPos; s3 = []; s4 = peg$parsews(); if (s4 !== peg$FAILED) { while (s4 !== peg$FAILED) { s3.push(s4); s4 = peg$parsews(); } } else { s3 = peg$FAILED; } if (s3 !== peg$FAILED) { s4 = peg$parsekey(); if (s4 !== peg$FAILED) { if (input.charCodeAt(peg$currPos) === 61) { s5 = peg$c17; peg$currPos++; } else { s5 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c18); } } if (s5 !== peg$FAILED) { s6 = peg$parsenumber(); if (s6 === peg$FAILED) { s6 = peg$parseidentifier(); if (s6 === peg$FAILED) { s6 = peg$parseinline(); } } if (s6 !== peg$FAILED) { peg$savedPos = s2; s3 = peg$c19(s4, s6); s2 = s3; } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } } if (s1 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c20(s1); } s0 = s1; peg$silentFails--; if (s0 === peg$FAILED) { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c16); } } return s0; } function peg$parsebodies() { var s0, s1, s2, s3, s4, s5, s6, s7; peg$silentFails++; s0 = peg$currPos; s1 = []; s2 = peg$currPos; s3 = peg$parseld(); if (s3 !== peg$FAILED) { if (input.charCodeAt(peg$currPos) === 58) { s4 = peg$c12; peg$currPos++; } else { s4 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c13); } } if (s4 !== peg$FAILED) { s5 = peg$parsekey(); if (s5 !== peg$FAILED) { s6 = peg$parserd(); if (s6 !== peg$FAILED) { s7 = peg$parsebody(); if (s7 !== peg$FAILED) { peg$savedPos = s2; s3 = peg$c19(s5, s7); s2 = s3; } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } while (s2 !== peg$FAILED) { s1.push(s2); s2 = peg$currPos; s3 = peg$parseld(); if (s3 !== peg$FAILED) { if (input.charCodeAt(peg$currPos) === 58) { s4 = peg$c12; peg$currPos++; } else { s4 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c13); } } if (s4 !== peg$FAILED) { s5 = peg$parsekey(); if (s5 !== peg$FAILED) { s6 = peg$parserd(); if (s6 !== peg$FAILED) { s7 = peg$parsebody(); if (s7 !== peg$FAILED) { peg$savedPos = s2; s3 = peg$c19(s5, s7); s2 = s3; } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } } if (s1 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c22(s1); } s0 = s1; peg$silentFails--; if (s0 === peg$FAILED) { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c21); } } return s0; } function peg$parsereference() { var s0, s1, s2, s3, s4; peg$silentFails++; s0 = peg$currPos; s1 = peg$parseld(); if (s1 !== peg$FAILED) { s2 = peg$parseidentifier(); if (s2 !== peg$FAILED) { s3 = peg$parsefilters(); if (s3 !== peg$FAILED) { s4 = peg$parserd(); if (s4 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c24(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; } } else { peg$currPos = s0; s0 = peg$FAILED; } peg$silentFails--; if (s0 === peg$FAILED) { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c23); } } return s0; } function peg$parsepartial() { var s0, s1, s2, s3, s4, s5, s6, s7, s8, s9; peg$silentFails++; s0 = peg$currPos; s1 = peg$parseld(); if (s1 !== peg$FAILED) { if (input.charCodeAt(peg$currPos) === 62) { s2 = peg$c26; peg$currPos++; } else { s2 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c27); } } if (s2 === peg$FAILED) { if (input.charCodeAt(peg$currPos) === 43) { s2 = peg$c28; peg$currPos++; } else { s2 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c29); } } } if (s2 !== peg$FAILED) { s3 = []; s4 = peg$parsews(); while (s4 !== peg$FAILED) { s3.push(s4); s4 = peg$parsews(); } if (s3 !== peg$FAILED) { s4 = peg$currPos; s5 = peg$parsekey(); if (s5 !== peg$FAILED) { peg$savedPos = s4; s5 = peg$c30(s2, s5); } s4 = s5; if (s4 === peg$FAILED) { s4 = peg$parseinline(); } if (s4 !== peg$FAILED) { s5 = peg$parsecontext(); if (s5 !== peg$FAILED) { s6 = peg$parseparams(); if (s6 !== peg$FAILED) { s7 = []; s8 = peg$parsews(); while (s8 !== peg$FAILED) { s7.push(s8); s8 = peg$parsews(); } if (s7 !== peg$FAILED) { if (input.charCodeAt(peg$currPos) === 47) { s8 = peg$c4; peg$currPos++; } else { s8 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c5); } } if (s8 !== peg$FAILED) { s9 = peg$parserd(); if (s9 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c31(s2, s4, s5, s6); 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; } peg$silentFails--; if (s0 === peg$FAILED) { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c25); } } return s0; } function peg$parsefilters() { var s0, s1, s2, s3, s4; peg$silentFails++; s0 = peg$currPos; s1 = []; s2 = peg$currPos; if (input.charCodeAt(peg$currPos) === 124) { s3 = peg$c33; peg$currPos++; } else { s3 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c34); } } if (s3 !== peg$FAILED) { s4 = peg$parsekey(); if (s4 !== peg$FAILED) { peg$savedPos = s2; s3 = peg$c14(s4); s2 = s3; } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } while (s2 !== peg$FAILED) { s1.push(s2); s2 = peg$currPos; if (input.charCodeAt(peg$currPos) === 124) { s3 = peg$c33; peg$currPos++; } else { s3 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c34); } } if (s3 !== peg$FAILED) { s4 = peg$parsekey(); if (s4 !== peg$FAILED) { peg$savedPos = s2; s3 = peg$c14(s4); s2 = s3; } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } } if (s1 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c35(s1); } s0 = s1; peg$silentFails--; if (s0 === peg$FAILED) { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c32); } } return s0; } function peg$parsespecial() { var s0, s1, s2, s3, s4; peg$silentFails++; s0 = peg$currPos; s1 = peg$parseld(); if (s1 !== peg$FAILED) { if (input.charCodeAt(peg$currPos) === 126) { s2 = peg$c37; peg$currPos++; } else { s2 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c38); } } if (s2 !== peg$FAILED) { s3 = peg$parsekey(); if (s3 !== peg$FAILED) { s4 = peg$parserd(); if (s4 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c39(s3); 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; } peg$silentFails--; if (s0 === peg$FAILED) { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c36); } } return s0; } function peg$parseidentifier() { var s0, s1; peg$silentFails++; s0 = peg$currPos; s1 = peg$parsepath(); if (s1 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c41(s1); } s0 = s1; if (s0 === peg$FAILED) { s0 = peg$currPos; s1 = peg$parsekey(); if (s1 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c42(s1); } s0 = s1; } peg$silentFails--; if (s0 === peg$FAILED) { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c40); } } return s0; } function peg$parsenumber() { var s0, s1; peg$silentFails++; s0 = peg$currPos; s1 = peg$parsefloat(); if (s1 === peg$FAILED) { s1 = peg$parseinteger(); } if (s1 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c44(s1); } s0 = s1; peg$silentFails--; if (s0 === peg$FAILED) { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c43); } } return s0; } function peg$parsefloat() { var s0, s1, s2, s3; peg$silentFails++; s0 = peg$currPos; s1 = peg$parseinteger(); if (s1 !== peg$FAILED) { if (input.charCodeAt(peg$currPos) === 46) { s2 = peg$c46; peg$currPos++; } else { s2 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c47); } } if (s2 !== peg$FAILED) { s3 = peg$parseunsigned_integer(); if (s3 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c48(s1, s3); s0 = s1; } else { peg$currPos = s0; s0 = peg$FAILED; } } else { peg$currPos = s0; s0 = peg$FAILED; } } else { peg$currPos = s0; s0 = peg$FAILED; } peg$silentFails--; if (s0 === peg$FAILED) { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c45); } } return s0; } function peg$parseunsigned_integer() { var s0, s1, s2; peg$silentFails++; s0 = peg$currPos; s1 = []; if (peg$c50.test(input.charAt(peg$currPos))) { s2 = input.charAt(peg$currPos); peg$currPos++; } else { s2 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c51); } } if (s2 !== peg$FAILED) { while (s2 !== peg$FAILED) { s1.push(s2); if (peg$c50.test(input.charAt(peg$currPos))) { s2 = input.charAt(peg$currPos); peg$currPos++; } else { s2 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c51); } } } } else { s1 = peg$FAILED; } if (s1 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c52(s1); } s0 = s1; peg$silentFails--; if (s0 === peg$FAILED) { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c49); } } return s0; } function peg$parsesigned_integer() { var s0, s1, s2; peg$silentFails++; s0 = peg$currPos; if (input.charCodeAt(peg$currPos) === 45) { s1 = peg$c54; peg$currPos++; } else { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c55); } } if (s1 !== peg$FAILED) { s2 = peg$parseunsigned_integer(); if (s2 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c56(s1, s2); s0 = s1; } else { peg$currPos = s0; s0 = peg$FAILED; } } else { peg$currPos = s0; s0 = peg$FAILED; } peg$silentFails--; if (s0 === peg$FAILED) { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c53); } } return s0; } function peg$parseinteger() { var s0, s1; peg$silentFails++; s0 = peg$parsesigned_integer(); if (s0 === peg$FAILED) { s0 = peg$parseunsigned_integer(); } peg$silentFails--; if (s0 === peg$FAILED) { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c57); } } return s0; } function peg$parsepath() { var s0, s1, s2, s3; peg$silentFails++; s0 = peg$currPos; s1 = peg$parsekey(); if (s1 === peg$FAILED) { s1 = null; } if (s1 !== peg$FAILED) { s2 = []; s3 = peg$parsearray_part(); if (s3 === peg$FAILED) { s3 = peg$parsearray(); } if (s3 !== peg$FAILED) { while (s3 !== peg$FAILED) { s2.push(s3); s3 = peg$parsearray_part(); if (s3 === peg$FAILED) { s3 = peg$parsearray(); } } } else { s2 = peg$FAILED; } if (s2 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c59(s1, s2); 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.charCodeAt(peg$currPos) === 46) { s1 = peg$c46; peg$currPos++; } else { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c47); } } if (s1 !== peg$FAILED) { s2 = []; s3 = peg$parsearray_part(); if (s3 === peg$FAILED) { s3 = peg$parsearray(); } while (s3 !== peg$FAILED) { s2.push(s3); s3 = peg$parsearray_part(); if (s3 === peg$FAILED) { s3 = peg$parsearray(); } } if (s2 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c60(s2); s0 = s1; } else { peg$currPos = s0; s0 = peg$FAILED; } } else { peg$currPos = s0; s0 = peg$FAILED; } } peg$silentFails--; if (s0 === peg$FAILED) { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c58); } } return s0; } function peg$parsekey() { var s0, s1, s2, s3; peg$silentFails++; s0 = peg$currPos; if (peg$c62.test(input.charAt(peg$currPos))) { s1 = input.charAt(peg$currPos); peg$currPos++; } else { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c63); } } if (s1 !== peg$FAILED) { s2 = []; if (peg$c64.test(input.charAt(peg$currPos))) { s3 = input.charAt(peg$currPos); peg$currPos++; } else { s3 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c65); } } while (s3 !== peg$FAILED) { s2.push(s3); if (peg$c64.test(input.charAt(peg$currPos))) { s3 = input.charAt(peg$currPos); peg$currPos++; } else { s3 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c65); } } } if (s2 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c66(s1, s2); s0 = s1; } else { peg$currPos = s0; s0 = peg$FAILED; } } else { peg$currPos = s0; s0 = peg$FAILED; } peg$silentFails--; if (s0 === peg$FAILED) { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c61); } } return s0; } function peg$parsearray() { var s0, s1, s2, s3, s4, s5; peg$silentFails++; s0 = peg$currPos; s1 = peg$currPos; s2 = peg$parselb(); if (s2 !== peg$FAILED) { s3 = peg$currPos; s4 = []; if (peg$c50.test(input.charAt(peg$currPos))) { s5 = input.charAt(peg$currPos); peg$currPos++; } else { s5 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c51); } } if (s5 !== peg$FAILED) { while (s5 !== peg$FAILED) { s4.push(s5); if (peg$c50.test(input.charAt(peg$currPos))) { s5 = input.charAt(peg$currPos); peg$currPos++; } else { s5 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c51); } } } } else { s4 = peg$FAILED; } if (s4 !== peg$FAILED) { peg$savedPos = s3; s4 = peg$c68(s4); } s3 = s4; if (s3 === peg$FAILED) { s3 = peg$parseidentifier(); } if (s3 !== peg$FAILED) { s4 = peg$parserb(); if (s4 !== peg$FAILED) { peg$savedPos = s1; s2 = peg$c69(s3); s1 = s2; } else { peg$currPos = s1; s1 = peg$FAILED; } } else { peg$currPos = s1; s1 = peg$FAILED; } } else { peg$currPos = s1; s1 = peg$FAILED; } if (s1 !== peg$FAILED) { s2 = peg$parsearray_part(); if (s2 === peg$FAILED) { s2 = null; } if (s2 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c70(s1, s2); s0 = s1; } else { peg$currPos = s0; s0 = peg$FAILED; } } else { peg$currPos = s0; s0 = peg$FAILED; } peg$silentFails--; if (s0 === peg$FAILED) { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c67); } } return s0; } function peg$parsearray_part() { var s0, s1, s2, s3, s4; peg$silentFails++; s0 = peg$currPos; s1 = []; s2 = peg$currPos; if (input.charCodeAt(peg$currPos) === 46) { s3 = peg$c46; peg$currPos++; } else { s3 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c47); } } if (s3 !== peg$FAILED) { s4 = peg$parsekey(); if (s4 !== peg$FAILED) { peg$savedPos = s2; s3 = peg$c72(s4); s2 = s3; } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } if (s2 !== peg$FAILED) { while (s2 !== peg$FAILED) { s1.push(s2); s2 = peg$currPos; if (input.charCodeAt(peg$currPos) === 46) { s3 = peg$c46; peg$currPos++; } else { s3 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c47); } } if (s3 !== peg$FAILED) { s4 = peg$parsekey(); if (s4 !== peg$FAILED) { peg$savedPos = s2; s3 = peg$c72(s4); s2 = s3; } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } } } else { s1 = peg$FAILED; } if (s1 !== peg$FAILED) { s2 = peg$parsearray(); if (s2 === peg$FAILED) { s2 = null; } if (s2 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c73(s1, s2); s0 = s1; } else { peg$currPos = s0; s0 = peg$FAILED; } } else { peg$currPos = s0; s0 = peg$FAILED; } peg$silentFails--; if (s0 === peg$FAILED) { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c71); } } return s0; } function peg$parseinline() { var s0, s1, s2, s3; peg$silentFails++; s0 = peg$currPos; if (input.charCodeAt(peg$currPos) === 34) { s1 = peg$c75; peg$currPos++; } else { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c76); } } if (s1 !== peg$FAILED) { if (input.charCodeAt(peg$currPos) === 34) { s2 = peg$c75; peg$currPos++; } else { s2 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c76); } } if (s2 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c77(); 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.charCodeAt(peg$currPos) === 34) { s1 = peg$c75; peg$currPos++; } else { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c76); } } if (s1 !== peg$FAILED) { s2 = peg$parseliteral(); if (s2 !== peg$FAILED) { if (input.charCodeAt(peg$currPos) === 34) { s3 = peg$c75; peg$currPos++; } else { s3 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c76); } } if (s3 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c78(s2); s0 = s1; } else { peg$currPos = s0; s0 = peg$FAILED; } } else { peg$currPos = s0; s0 = peg$FAILED; } } else { peg$currPos = s0; s0 = peg$FAILED; } if (s0 === peg$FAILED) { s0 = peg$currPos; if (input.charCodeAt(peg$currPos) === 34) { s1 = peg$c75; peg$currPos++; } else { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c76); } } if (s1 !== peg$FAILED) { s2 = []; s3 = peg$parseinline_part(); if (s3 !== peg$FAILED) { while (s3 !== peg$FAILED) { s2.push(s3); s3 = peg$parseinline_part(); } } else { s2 = peg$FAILED; } if (s2 !== peg$FAILED) { if (input.charCodeAt(peg$currPos) === 34) { s3 = peg$c75; peg$currPos++; } else { s3 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c76); } } if (s3 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c79(s2); s0 = s1; } else { peg$currPos = s0; s0 = peg$FAILED; } } else { peg$currPos = s0; s0 = peg$FAILED; } } else { peg$currPos = s0; s0 = peg$FAILED; } } } peg$silentFails--; if (s0 === peg$FAILED) { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c74); } } return s0; } function peg$parseinline_part() { var s0, s1; s0 = peg$parsespecial(); if (s0 === peg$FAILED) { s0 = peg$parsereference(); if (s0 === peg$FAILED) { s0 = peg$currPos; s1 = peg$parseliteral(); if (s1 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c80(s1); } s0 = s1; } } return s0; } function peg$parsebuffer() { var s0, s1, s2, s3, s4, s5, s6, s7; peg$silentFails++; s0 = peg$currPos; s1 = peg$parseeol(); if (s1 !== peg$FAILED) { s2 = []; s3 = peg$parsews(); while (s3 !== peg$FAILED) { s2.push(s3); s3 = peg$parsews(); } if (s2 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c82(s1, s2); s0 = s1; } else { peg$currPos = s0; s0 = peg$FAILED; } } else { peg$currPos = s0; s0 = peg$FAILED; } if (s0 === peg$FAILED) { s0 = peg$currPos; s1 = []; s2 = peg$currPos; s3 = peg$currPos; peg$silentFails++; s4 = peg$parsetag(); peg$silentFails--; if (s4 === peg$FAILED) { s3 = void 0; } else { peg$currPos = s3; s3 = peg$FAILED; } if (s3 !== peg$FAILED) { s4 = peg$currPos; peg$silentFails++; s5 = peg$parseraw(); peg$silentFails--; if (s5 === peg$FAILED) { s4 = void 0; } else { peg$currPos = s4; s4 = peg$FAILED; } if (s4 !== peg$FAILED) { s5 = peg$currPos; peg$silentFails++; s6 = peg$parsecomment(); peg$silentFails--; if (s6 === peg$FAILED) { s5 = void 0; } else { peg$currPos = s5; s5 = peg$FAILED; } if (s5 !== peg$FAILED) { s6 = peg$currPos; peg$silentFails++; s7 = peg$parseeol(); peg$silentFails--; if (s7 === peg$FAILED) { s6 = void 0; } else { peg$currPos = s6; s6 = peg$FAILED; } if (s6 !== peg$FAILED) { if (input.length > peg$currPos) { s7 = input.charAt(peg$currPos); peg$currPos++; } else { s7 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c83); } } if (s7 !== peg$FAILED) { peg$savedPos = s2; s3 = peg$c84(s7); s2 = s3; } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } if (s2 !== peg$FAILED) { while (s2 !== peg$FAILED) { s1.push(s2); s2 = peg$currPos; s3 = peg$currPos; peg$silentFails++; s4 = peg$parsetag(); peg$silentFails--; if (s4 === peg$FAILED) { s3 = void 0; } else { peg$currPos = s3; s3 = peg$FAILED; } if (s3 !== peg$FAILED) { s4 = peg$currPos; peg$silentFails++; s5 = peg$parseraw(); peg$silentFails--; if (s5 === peg$FAILED) { s4 = void 0; } else { peg$currPos = s4; s4 = peg$FAILED; } if (s4 !== peg$FAILED) { s5 = peg$currPos; peg$silentFails++; s6 = peg$parsecomment(); peg$silentFails--; if (s6 === peg$FAILED) { s5 = void 0; } else { peg$currPos = s5; s5 = peg$FAILED; } if (s5 !== peg$FAILED) { s6 = peg$currPos; peg$silentFails++; s7 = peg$parseeol(); peg$silentFails--; if (s7 === peg$FAILED) { s6 = void 0; } else { peg$currPos = s6; s6 = peg$FAILED; } if (s6 !== peg$FAILED) { if (input.length > peg$currPos) { s7 = input.charAt(peg$currPos); peg$currPos++; } else { s7 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c83); } } if (s7 !== peg$FAILED) { peg$savedPos = s2; s3 = peg$c84(s7); s2 = s3; } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } } } else { s1 = peg$FAILED; } if (s1 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c85(s1); } s0 = s1; } peg$silentFails--; if (s0 === peg$FAILED) { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c81); } } return s0; } function peg$parseliteral() { var s0, s1, s2, s3, s4; peg$silentFails++; s0 = peg$currPos; s1 = []; s2 = peg$currPos; s3 = peg$currPos; peg$silentFails++; s4 = peg$parsetag(); peg$silentFails--; if (s4 === peg$FAILED) { s3 = void 0; } else { peg$currPos = s3; s3 = peg$FAILED; } if (s3 !== peg$FAILED) { s4 = peg$parseesc(); if (s4 === peg$FAILED) { if (peg$c87.test(input.charAt(peg$currPos))) { s4 = input.charAt(peg$currPos); peg$currPos++; } else { s4 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c88); } } } if (s4 !== peg$FAILED) { peg$savedPos = s2; s3 = peg$c84(s4); s2 = s3; } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } if (s2 !== peg$FAILED) { while (s2 !== peg$FAILED) { s1.push(s2); s2 = peg$currPos; s3 = peg$currPos; peg$silentFails++; s4 = peg$parsetag(); peg$silentFails--; if (s4 === peg$FAILED) { s3 = void 0; } else { peg$currPos = s3; s3 = peg$FAILED; } if (s3 !== peg$FAILED) { s4 = peg$parseesc(); if (s4 === peg$FAILED) { if (peg$c87.test(input.charAt(peg$currPos))) { s4 = input.charAt(peg$currPos); peg$currPos++; } else { s4 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c88); } } } if (s4 !== peg$FAILED) { peg$savedPos = s2; s3 = peg$c84(s4); s2 = s3; } else { peg$currPos = s2; s2 = peg$FAILED; } } else { peg$currPos = s2; s2 = peg$FAILED; } } } else { s1 = peg$FAILED; } if (s1 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c89(s1); } s0 = s1; peg$silentFails--; if (s0 === peg$FAILED) { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c86); } } return s0; } function peg$parseesc() { var s0, s1; s0 = peg$currPos; if (input.substr(peg$currPos, 2) === peg$c90) { s1 = peg$c90; peg$currPos += 2; } else { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c91); } } if (s1 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c92(); } s0 = s1; return s0; } function peg$parseraw() { var s0, s1, s2, s3, s4, s5; peg$silentFails++; s0 = peg$currPos; if (input.substr(peg$currPos, 2) === peg$c94) { s1 = peg$c94; peg$currPos += 2; } else { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c95); } } if (s1 !== peg$FAILED) { s2 = []; s3 = peg$currPos; s4 = peg$currPos; peg$silentFails++; if (input.substr(peg$currPos, 2) === peg$c96) { s5 = peg$c96; peg$currPos += 2; } else { s5 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c97); } } peg$silentFails--; if (s5 === peg$FAILED) { s4 = void 0; } 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$c83); } } if (s5 !== peg$FAILED) { peg$savedPos = s3; s4 = peg$c98(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, 2) === peg$c96) { s5 = peg$c96; peg$currPos += 2; } else { s5 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c97); } } peg$silentFails--; if (s5 === peg$FAILED) { s4 = void 0; } 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$c83); } } if (s5 !== peg$FAILED) { peg$savedPos = s3; s4 = peg$c98(s5); s3 = s4; } else { peg$currPos = s3; s3 = peg$FAILED; } } else { peg$currPos = s3; s3 = peg$FAILED; } } if (s2 !== peg$FAILED) { if (input.substr(peg$currPos, 2) === peg$c96) { s3 = peg$c96; peg$currPos += 2; } else { s3 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c97); } } if (s3 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c99(s2); s0 = s1; } else { peg$currPos = s0; s0 = peg$FAILED; } } else { peg$currPos = s0; s0 = peg$FAILED; } } else { peg$currPos = s0; s0 = peg$FAILED; } peg$silentFails--; if (s0 === peg$FAILED) { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c93); } } return s0; } function peg$parsecomment() { var s0, s1, s2, s3, s4, s5; peg$silentFails++; s0 = peg$currPos; if (input.substr(peg$currPos, 2) === peg$c101) { s1 = peg$c101; peg$currPos += 2; } else { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c102); } } if (s1 !== peg$FAILED) { s2 = []; s3 = peg$currPos; s4 = peg$currPos; peg$silentFails++; if (input.substr(peg$currPos, 2) === peg$c103) { s5 = peg$c103; peg$currPos += 2; } else { s5 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c104); } } peg$silentFails--; if (s5 === peg$FAILED) { s4 = void 0; } 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$c83); } } if (s5 !== peg$FAILED) { peg$savedPos = s3; s4 = peg$c84(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, 2) === peg$c103) { s5 = peg$c103; peg$currPos += 2; } else { s5 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c104); } } peg$silentFails--; if (s5 === peg$FAILED) { s4 = void 0; } 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$c83); } } if (s5 !== peg$FAILED) { peg$savedPos = s3; s4 = peg$c84(s5); s3 = s4; } else { peg$currPos = s3; s3 = peg$FAILED; } } else { peg$currPos = s3; s3 = peg$FAILED; } } if (s2 !== peg$FAILED) { if (input.substr(peg$currPos, 2) === peg$c103) { s3 = peg$c103; peg$currPos += 2; } else { s3 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c104); } } if (s3 !== peg$FAILED) { peg$savedPos = s0; s1 = peg$c105(s2); s0 = s1; } else { peg$currPos = s0; s0 = peg$FAILED; } } else { peg$currPos = s0; s0 = peg$FAILED; } } else { peg$currPos = s0; s0 = peg$FAILED; } peg$silentFails--; if (s0 === peg$FAILED) { s1 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c100); } } return s0; } function peg$parsetag() { var s0, s1, s2, s3, s4, s5, s6, s7, s8, s9; s0 = peg$currPos; s1 = peg$parseld(); if (s1 !== peg$FAILED) { s2 = []; s3 = peg$parsews(); while (s3 !== peg$FAILED) { s2.push(s3); s3 = peg$parsews(); } if (s2 !== peg$FAILED) { if (peg$c106.test(input.charAt(peg$currPos))) { s3 = input.charAt(peg$currPos); peg$currPos++; } else { s3 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c107); } } if (s3 !== peg$FAILED) { s4 = []; s5 = peg$parsews(); while (s5 !== peg$FAILED) { s4.push(s5); s5 = peg$parsews(); } if (s4 !== peg$FAILED) { s5 = []; s6 = peg$currPos; s7 = peg$currPos; peg$silentFails++; s8 = peg$parserd(); peg$silentFails--; if (s8 === peg$FAILED) { s7 = void 0; } else { peg$currPos = s7; s7 = peg$FAILED; } if (s7 !== peg$FAILED) { s8 = peg$currPos; peg$silentFails++; s9 = peg$parseeol(); peg$silentFails--; if (s9 === peg$FAILED) { s8 = void 0; } else { peg$currPos = s8; s8 = peg$FAILED; } if (s8 !== peg$FAILED) { if (input.length > peg$currPos) { s9 = input.charAt(peg$currPos); peg$currPos++; } else { s9 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c83); } } if (s9 !== peg$FAILED) { s7 = [s7, s8, s9]; s6 = s7; } else { peg$currPos = s6; s6 = peg$FAILED; } } else { peg$currPos = s6; s6 = peg$FAILED; } } else { peg$currPos = s6; s6 = peg$FAILED; } if (s6 !== peg$FAILED) { while (s6 !== peg$FAILED) { s5.push(s6); s6 = peg$currPos; s7 = peg$currPos; peg$silentFails++; s8 = peg$parserd(); peg$silentFails--; if (s8 === peg$FAILED) { s7 = void 0; } else { peg$currPos = s7; s7 = peg$FAILED; } if (s7 !== peg$FAILED) { s8 = peg$currPos; peg$silentFails++; s9 = peg$parseeol(); peg$silentFails--; if (s9 === peg$FAILED) { s8 = void 0; } else { peg$currPos = s8; s8 = peg$FAILED; } if (s8 !== peg$FAILED) { if (input.length > peg$currPos) { s9 = input.charAt(peg$currPos); peg$currPos++; } else { s9 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c83); } } if (s9 !== peg$FAILED) { s7 = [s7, s8, s9]; s6 = s7; } else { peg$currPos = s6; s6 = peg$FAILED; } } else { peg$currPos = s6; s6 = peg$FAILED; } } else { peg$currPos = s6; s6 = peg$FAILED; } } } else { s5 = peg$FAILED; } if (s5 !== peg$FAILED) { s6 = []; s7 = peg$parsews(); while (s7 !== peg$FAILED) { s6.push(s7); s7 = peg$parsews(); } if (s6 !== peg$FAILED) { s7 = peg$parserd(); if (s7 !== peg$FAILED) { s1 = [s1, s2, s3, s4, s5, s6, s7]; 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; } if (s0 === peg$FAILED) { s0 = peg$parsereference(); } return s0; } function peg$parseld() { var s0; if (input.charCodeAt(peg$currPos) === 123) { s0 = peg$c108; peg$currPos++; } else { s0 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c109); } } return s0; } function peg$parserd() { var s0; if (input.charCodeAt(peg$currPos) === 125) { s0 = peg$c110; peg$currPos++; } else { s0 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c111); } } return s0; } function peg$parselb() { var s0; if (input.charCodeAt(peg$currPos) === 91) { s0 = peg$c112; peg$currPos++; } else { s0 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c113); } } return s0; } function peg$parserb() { var s0; if (input.charCodeAt(peg$currPos) === 93) { s0 = peg$c114; peg$currPos++; } else { s0 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c115); } } return s0; } function peg$parseeol() { var s0; if (input.charCodeAt(peg$currPos) === 10) { s0 = peg$c116; peg$currPos++; } else { s0 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c117); } } if (s0 === peg$FAILED) { if (input.substr(peg$currPos, 2) === peg$c118) { s0 = peg$c118; peg$currPos += 2; } else { s0 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c119); } } if (s0 === peg$FAILED) { if (input.charCodeAt(peg$currPos) === 13) { s0 = peg$c120; peg$currPos++; } else { s0 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c121); } } if (s0 === peg$FAILED) { if (input.charCodeAt(peg$currPos) === 8232) { s0 = peg$c122; peg$currPos++; } else { s0 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c123); } } if (s0 === peg$FAILED) { if (input.charCodeAt(peg$currPos) === 8233) { s0 = peg$c124; peg$currPos++; } else { s0 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c125); } } } } } } return s0; } function peg$parsews() { var s0; if (peg$c126.test(input.charAt(peg$currPos))) { s0 = input.charAt(peg$currPos); peg$currPos++; } else { s0 = peg$FAILED; if (peg$silentFails === 0) { peg$fail(peg$c127); } } if (s0 === peg$FAILED) { s0 = peg$parseeol(); } return s0; } function makeInteger(arr) { return parseInt(arr.join(''), 10); } function withPosition(arr) { arr.location = location(); return arr; } peg$result = peg$startRuleFunction(); if (peg$result !== peg$FAILED && peg$currPos === input.length) { return peg$result; } else { if (peg$result !== peg$FAILED && peg$currPos < input.length) { peg$fail({ type: "end", description: "end of input" }); } throw peg$buildException( null, peg$maxFailExpected, peg$maxFailPos < input.length ? input.charAt(peg$maxFailPos) : null, peg$maxFailPos < input.length ? peg$computeLocation(peg$maxFailPos, peg$maxFailPos + 1) : peg$computeLocation(peg$maxFailPos, peg$maxFailPos) ); } } return { SyntaxError: peg$SyntaxError, parse: peg$parse }; })(); // expose parser methods dust.parse = parser.parse; return parser; }));