@env-spec/parser 0.0.0 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js ADDED
@@ -0,0 +1,3757 @@
1
+ 'use strict';
2
+
3
+ var chunkJU4IPIOA_js = require('./chunk-JU4IPIOA.js');
4
+
5
+ // src/updater.ts
6
+ function ensureHeader(file, newHeaderContents) {
7
+ if (!file.header) {
8
+ newHeaderContents ||= "This env file uses @env-spec - see https://varlock.dev/env-spec for more info\n";
9
+ file.contents.unshift(
10
+ // header is a comment block at the beginning of the file and must end with a divider
11
+ new chunkJU4IPIOA_js.ParsedEnvSpecCommentBlock({
12
+ // we'll break up the passed in content and add a comment line for each
13
+ comments: newHeaderContents.split("\n").map((line) => new chunkJU4IPIOA_js.ParsedEnvSpecComment({ contents: line, leadingSpace: " " })),
14
+ divider: new chunkJU4IPIOA_js.ParsedEnvSpecDivider({ contents: "----------", leadingSpace: " " })
15
+ }),
16
+ new chunkJU4IPIOA_js.ParsedEnvSpecBlankLine({})
17
+ // add extra blank line after header
18
+ );
19
+ }
20
+ }
21
+ chunkJU4IPIOA_js.__name(ensureHeader, "ensureHeader");
22
+ function createDummyDecoratorNode(decoratorName, valueStr, opts) {
23
+ let decStr = `@${decoratorName}`;
24
+ if (opts?.bareFnArgs) decStr += `(${valueStr})`;
25
+ else if (valueStr !== "true" || opts?.explicitTrue) {
26
+ decStr += `=${valueStr}`;
27
+ }
28
+ const parsed = parseEnvSpecDotEnvFile(`# ${decStr}
29
+ # ---`);
30
+ const newDecNode = parsed.decoratorsObject[decoratorName];
31
+ if (!newDecNode) throw new Error("Creating new decorator failed");
32
+ return newDecNode;
33
+ }
34
+ chunkJU4IPIOA_js.__name(createDummyDecoratorNode, "createDummyDecoratorNode");
35
+ function setRootDecorator(file, decoratorName, valueStr, opts) {
36
+ ensureHeader(file);
37
+ const newDecNode = createDummyDecoratorNode(decoratorName, valueStr, opts);
38
+ const existingDecorator = file.decoratorsObject[decoratorName];
39
+ if (existingDecorator) {
40
+ existingDecorator.data.valueOrFnArgs = newDecNode.data.valueOrFnArgs;
41
+ } else {
42
+ if (!file.header) throw new Error("No header found");
43
+ const lastComment = file.header.data.comments[file.header.data.comments.length - 1];
44
+ let decCommentLine;
45
+ if (lastComment instanceof chunkJU4IPIOA_js.ParsedEnvSpecDecoratorComment && lastComment.toString().length < 40) {
46
+ decCommentLine = lastComment;
47
+ } else {
48
+ decCommentLine = new chunkJU4IPIOA_js.ParsedEnvSpecDecoratorComment({
49
+ decorators: [],
50
+ leadingSpace: " ",
51
+ ...opts?.comment && { postComment: `# ${opts.comment}` }
52
+ });
53
+ file.header.data.comments.push(decCommentLine);
54
+ }
55
+ decCommentLine.decorators.push(newDecNode);
56
+ }
57
+ }
58
+ chunkJU4IPIOA_js.__name(setRootDecorator, "setRootDecorator");
59
+ function setItemDecorator(file, key, decoratorName, valueStr, opts) {
60
+ let item = file.configItems.find((i) => i.key === key);
61
+ if (!item) {
62
+ item = new chunkJU4IPIOA_js.ParsedEnvSpecConfigItem({
63
+ key,
64
+ value: void 0,
65
+ preComments: [],
66
+ postComment: void 0
67
+ });
68
+ file.contents.push(item);
69
+ }
70
+ const newDecNode = createDummyDecoratorNode(decoratorName, valueStr, opts);
71
+ const existingDecorator = item.decoratorsObject[decoratorName];
72
+ if (existingDecorator) {
73
+ existingDecorator.data.valueOrFnArgs = newDecNode.data.valueOrFnArgs;
74
+ } else {
75
+ const lastComment = item.data.preComments[item.data.preComments.length - 1];
76
+ let decCommentLine;
77
+ if (lastComment instanceof chunkJU4IPIOA_js.ParsedEnvSpecDecoratorComment && lastComment.toString().length < 40) {
78
+ decCommentLine = lastComment;
79
+ } else {
80
+ decCommentLine = new chunkJU4IPIOA_js.ParsedEnvSpecDecoratorComment({
81
+ decorators: [],
82
+ leadingSpace: " "
83
+ });
84
+ item.data.preComments.push(decCommentLine);
85
+ }
86
+ decCommentLine.decorators.push(newDecNode);
87
+ }
88
+ }
89
+ chunkJU4IPIOA_js.__name(setItemDecorator, "setItemDecorator");
90
+ function injectFromStr(file, content, opts) {
91
+ const parsed = parseEnvSpecDotEnvFile(content);
92
+ let injectIndex = file.contents.length;
93
+ if (opts?.location === "start") {
94
+ injectIndex = 0;
95
+ } else if (opts?.location === "after_header") {
96
+ if (file.header) {
97
+ injectIndex = file.contents.indexOf(file.header) + 1;
98
+ } else {
99
+ injectIndex = 0;
100
+ }
101
+ } else if (opts?.location === "items") {
102
+ if (file.configItems[0]) {
103
+ injectIndex = file.contents.indexOf(file.configItems[0]);
104
+ } else if (file.header) {
105
+ injectIndex = file.contents.indexOf(file.header) + 1;
106
+ }
107
+ }
108
+ file.contents.splice(injectIndex, 0, ...parsed.contents);
109
+ }
110
+ chunkJU4IPIOA_js.__name(injectFromStr, "injectFromStr");
111
+ function deleteItem(file, key) {
112
+ const item = file.configItems.find((i) => i.key === key);
113
+ if (item) {
114
+ file.contents.splice(file.contents.indexOf(item), 1);
115
+ }
116
+ }
117
+ chunkJU4IPIOA_js.__name(deleteItem, "deleteItem");
118
+ var envSpecUpdater = {
119
+ ensureHeader,
120
+ setRootDecorator,
121
+ setItemDecorator,
122
+ injectFromStr,
123
+ deleteItem
124
+ };
125
+
126
+ // src/grammar.js
127
+ function peg$subclass(child, parent) {
128
+ function C() {
129
+ this.constructor = child;
130
+ }
131
+ chunkJU4IPIOA_js.__name(C, "C");
132
+ C.prototype = parent.prototype;
133
+ child.prototype = new C();
134
+ }
135
+ chunkJU4IPIOA_js.__name(peg$subclass, "peg$subclass");
136
+ function peg$SyntaxError(message, expected, found, location) {
137
+ var self = Error.call(this, message);
138
+ if (Object.setPrototypeOf) {
139
+ Object.setPrototypeOf(self, peg$SyntaxError.prototype);
140
+ }
141
+ self.expected = expected;
142
+ self.found = found;
143
+ self.location = location;
144
+ self.name = "SyntaxError";
145
+ return self;
146
+ }
147
+ chunkJU4IPIOA_js.__name(peg$SyntaxError, "peg$SyntaxError");
148
+ peg$subclass(peg$SyntaxError, Error);
149
+ function peg$padEnd(str, targetLength, padString) {
150
+ padString = padString || " ";
151
+ if (str.length > targetLength) {
152
+ return str;
153
+ }
154
+ targetLength -= str.length;
155
+ padString += padString.repeat(targetLength);
156
+ return str + padString.slice(0, targetLength);
157
+ }
158
+ chunkJU4IPIOA_js.__name(peg$padEnd, "peg$padEnd");
159
+ peg$SyntaxError.prototype.format = function(sources) {
160
+ var str = "Error: " + this.message;
161
+ if (this.location) {
162
+ var src = null;
163
+ var k;
164
+ for (k = 0; k < sources.length; k++) {
165
+ if (sources[k].source === this.location.source) {
166
+ src = sources[k].text.split(/\r\n|\n|\r/g);
167
+ break;
168
+ }
169
+ }
170
+ var s = this.location.start;
171
+ var offset_s = this.location.source && typeof this.location.source.offset === "function" ? this.location.source.offset(s) : s;
172
+ var loc = this.location.source + ":" + offset_s.line + ":" + offset_s.column;
173
+ if (src) {
174
+ var e = this.location.end;
175
+ var filler = peg$padEnd("", offset_s.line.toString().length, " ");
176
+ var line = src[s.line - 1];
177
+ var last = s.line === e.line ? e.column : line.length + 1;
178
+ var hatLen = last - s.column || 1;
179
+ str += "\n --> " + loc + "\n" + filler + " |\n" + offset_s.line + " | " + line + "\n" + filler + " | " + peg$padEnd("", s.column - 1, " ") + peg$padEnd("", hatLen, "^");
180
+ } else {
181
+ str += "\n at " + loc;
182
+ }
183
+ }
184
+ return str;
185
+ };
186
+ peg$SyntaxError.buildMessage = function(expected, found) {
187
+ var DESCRIBE_EXPECTATION_FNS = {
188
+ literal: /* @__PURE__ */ chunkJU4IPIOA_js.__name(function(expectation) {
189
+ return '"' + literalEscape(expectation.text) + '"';
190
+ }, "literal"),
191
+ class: /* @__PURE__ */ chunkJU4IPIOA_js.__name(function(expectation) {
192
+ var escapedParts = expectation.parts.map(function(part) {
193
+ return Array.isArray(part) ? classEscape(part[0]) + "-" + classEscape(part[1]) : classEscape(part);
194
+ });
195
+ return "[" + (expectation.inverted ? "^" : "") + escapedParts.join("") + "]";
196
+ }, "class"),
197
+ any: /* @__PURE__ */ chunkJU4IPIOA_js.__name(function() {
198
+ return "any character";
199
+ }, "any"),
200
+ end: /* @__PURE__ */ chunkJU4IPIOA_js.__name(function() {
201
+ return "end of input";
202
+ }, "end"),
203
+ other: /* @__PURE__ */ chunkJU4IPIOA_js.__name(function(expectation) {
204
+ return expectation.description;
205
+ }, "other")
206
+ };
207
+ function hex(ch) {
208
+ return ch.charCodeAt(0).toString(16).toUpperCase();
209
+ }
210
+ chunkJU4IPIOA_js.__name(hex, "hex");
211
+ function literalEscape(s) {
212
+ 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) {
213
+ return "\\x0" + hex(ch);
214
+ }).replace(/[\x10-\x1F\x7F-\x9F]/g, function(ch) {
215
+ return "\\x" + hex(ch);
216
+ });
217
+ }
218
+ chunkJU4IPIOA_js.__name(literalEscape, "literalEscape");
219
+ function classEscape(s) {
220
+ 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) {
221
+ return "\\x0" + hex(ch);
222
+ }).replace(/[\x10-\x1F\x7F-\x9F]/g, function(ch) {
223
+ return "\\x" + hex(ch);
224
+ });
225
+ }
226
+ chunkJU4IPIOA_js.__name(classEscape, "classEscape");
227
+ function describeExpectation(expectation) {
228
+ return DESCRIBE_EXPECTATION_FNS[expectation.type](expectation);
229
+ }
230
+ chunkJU4IPIOA_js.__name(describeExpectation, "describeExpectation");
231
+ function describeExpected(expected2) {
232
+ var descriptions = expected2.map(describeExpectation);
233
+ var i, j;
234
+ descriptions.sort();
235
+ if (descriptions.length > 0) {
236
+ for (i = 1, j = 1; i < descriptions.length; i++) {
237
+ if (descriptions[i - 1] !== descriptions[i]) {
238
+ descriptions[j] = descriptions[i];
239
+ j++;
240
+ }
241
+ }
242
+ descriptions.length = j;
243
+ }
244
+ switch (descriptions.length) {
245
+ case 1:
246
+ return descriptions[0];
247
+ case 2:
248
+ return descriptions[0] + " or " + descriptions[1];
249
+ default:
250
+ return descriptions.slice(0, -1).join(", ") + ", or " + descriptions[descriptions.length - 1];
251
+ }
252
+ }
253
+ chunkJU4IPIOA_js.__name(describeExpected, "describeExpected");
254
+ function describeFound(found2) {
255
+ return found2 ? '"' + literalEscape(found2) + '"' : "end of input";
256
+ }
257
+ chunkJU4IPIOA_js.__name(describeFound, "describeFound");
258
+ return "Expected " + describeExpected(expected) + " but " + describeFound(found) + " found.";
259
+ };
260
+ function peg$parse(input, options) {
261
+ options = options !== void 0 ? options : {};
262
+ var peg$FAILED = {};
263
+ var peg$source = options.grammarSource;
264
+ var peg$startRuleFunctions = { EnvSpecFile: peg$parseEnvSpecFile };
265
+ var peg$startRuleFunction = peg$parseEnvSpecFile;
266
+ var peg$c0 = "\n";
267
+ var peg$c1 = "export ";
268
+ var peg$c2 = "=";
269
+ var peg$c3 = "#";
270
+ var peg$c4 = "@";
271
+ var peg$c5 = ":";
272
+ var peg$c6 = "()";
273
+ var peg$c7 = "(";
274
+ var peg$c8 = ")";
275
+ var peg$c9 = ",";
276
+ var peg$c10 = '\\"';
277
+ var peg$c11 = "\\'";
278
+ var peg$c12 = "\\`";
279
+ var peg$c13 = '"""';
280
+ var peg$c14 = '\\"""';
281
+ var peg$c15 = "```";
282
+ var peg$c16 = "\\```";
283
+ var peg$r0 = /^[a-zA-Z_]/;
284
+ var peg$r1 = /^[a-zA-Z0-9_.\-]/;
285
+ var peg$r2 = /^[^\n]/;
286
+ var peg$r3 = /^[a-zA-Z]/;
287
+ var peg$r4 = /^[@#]/;
288
+ var peg$r5 = /^[a-zA-Z0-9_]/;
289
+ var peg$r6 = /^[^ \n,)]/;
290
+ var peg$r7 = /^[\-=*#]/;
291
+ var peg$r8 = /^['"`]/;
292
+ var peg$r9 = /^[^#\n]/;
293
+ var peg$r10 = /^[^# \n]/;
294
+ var peg$r11 = /^["]/;
295
+ var peg$r12 = /^[^"\n]/;
296
+ var peg$r13 = /^[']/;
297
+ var peg$r14 = /^[^'\n]/;
298
+ var peg$r15 = /^[`]/;
299
+ var peg$r16 = /^[^`\n]/;
300
+ var peg$r17 = /^[ \t]/;
301
+ var peg$e0 = peg$literalExpectation("\n", false);
302
+ var peg$e1 = peg$literalExpectation("export ", false);
303
+ var peg$e2 = peg$literalExpectation("=", false);
304
+ var peg$e3 = peg$classExpectation([["a", "z"], ["A", "Z"], "_"], false, false);
305
+ var peg$e4 = peg$classExpectation([["a", "z"], ["A", "Z"], ["0", "9"], "_", ".", "-"], false, false);
306
+ var peg$e5 = peg$literalExpectation("#", false);
307
+ var peg$e6 = peg$literalExpectation("@", false);
308
+ var peg$e7 = peg$classExpectation(["\n"], true, false);
309
+ var peg$e8 = peg$classExpectation([["a", "z"], ["A", "Z"]], false, false);
310
+ var peg$e9 = peg$literalExpectation(":", false);
311
+ var peg$e10 = peg$classExpectation(["@", "#"], false, false);
312
+ var peg$e11 = peg$literalExpectation("()", false);
313
+ var peg$e12 = peg$literalExpectation("(", false);
314
+ var peg$e13 = peg$literalExpectation(")", false);
315
+ var peg$e14 = peg$classExpectation([["a", "z"], ["A", "Z"], ["0", "9"], "_"], false, false);
316
+ var peg$e15 = peg$literalExpectation(",", false);
317
+ var peg$e16 = peg$classExpectation([" ", "\n", ",", ")"], true, false);
318
+ var peg$e17 = peg$classExpectation(["-", "=", "*", "#"], false, false);
319
+ var peg$e18 = peg$classExpectation(["'", '"', "`"], false, false);
320
+ var peg$e19 = peg$classExpectation(["#", "\n"], true, false);
321
+ var peg$e20 = peg$classExpectation(["#", " ", "\n"], true, false);
322
+ var peg$e21 = peg$classExpectation(['"'], false, false);
323
+ var peg$e22 = peg$literalExpectation('\\"', false);
324
+ var peg$e23 = peg$classExpectation(['"', "\n"], true, false);
325
+ var peg$e24 = peg$classExpectation(["'"], false, false);
326
+ var peg$e25 = peg$literalExpectation("\\'", false);
327
+ var peg$e26 = peg$classExpectation(["'", "\n"], true, false);
328
+ var peg$e27 = peg$classExpectation(["`"], false, false);
329
+ var peg$e28 = peg$literalExpectation("\\`", false);
330
+ var peg$e29 = peg$classExpectation(["`", "\n"], true, false);
331
+ var peg$e30 = peg$literalExpectation('"""', false);
332
+ var peg$e31 = peg$literalExpectation('\\"""', false);
333
+ var peg$e32 = peg$literalExpectation("```", false);
334
+ var peg$e33 = peg$literalExpectation("\\```", false);
335
+ var peg$e34 = peg$anyExpectation();
336
+ var peg$e35 = peg$classExpectation([" ", " "], false, false);
337
+ var peg$f0 = /* @__PURE__ */ chunkJU4IPIOA_js.__name(function() {
338
+ return new chunkJU4IPIOA_js.ParsedEnvSpecBlankLine({ _location: location() });
339
+ }, "peg$f0");
340
+ var peg$f1 = /* @__PURE__ */ chunkJU4IPIOA_js.__name(function(contents) {
341
+ return new chunkJU4IPIOA_js.ParsedEnvSpecFile(contents);
342
+ }, "peg$f1");
343
+ var peg$f2 = /* @__PURE__ */ chunkJU4IPIOA_js.__name(function(preComments, key, value, postComment) {
344
+ return new chunkJU4IPIOA_js.ParsedEnvSpecConfigItem({
345
+ key,
346
+ preComments,
347
+ postComment,
348
+ value,
349
+ _location: location()
350
+ });
351
+ }, "peg$f2");
352
+ var peg$f3 = /* @__PURE__ */ chunkJU4IPIOA_js.__name(function(comments, end) {
353
+ return new chunkJU4IPIOA_js.ParsedEnvSpecCommentBlock({
354
+ comments,
355
+ divider: end instanceof chunkJU4IPIOA_js.ParsedEnvSpecDivider ? end : void 0,
356
+ _location: location()
357
+ });
358
+ }, "peg$f3");
359
+ var peg$f4 = /* @__PURE__ */ chunkJU4IPIOA_js.__name(function(leadingSpace, contents) {
360
+ return new chunkJU4IPIOA_js.ParsedEnvSpecComment({
361
+ contents,
362
+ leadingSpace,
363
+ _location: location()
364
+ });
365
+ }, "peg$f4");
366
+ var peg$f5 = /* @__PURE__ */ chunkJU4IPIOA_js.__name(function(leadingSpace, contents) {
367
+ return new chunkJU4IPIOA_js.ParsedEnvSpecComment({ contents, leadingSpace, _location: location() });
368
+ }, "peg$f5");
369
+ var peg$f6 = /* @__PURE__ */ chunkJU4IPIOA_js.__name(function(leadingSpace, first, rest, postComment) {
370
+ return new chunkJU4IPIOA_js.ParsedEnvSpecDecoratorComment({
371
+ decorators: [first, ...rest],
372
+ leadingSpace,
373
+ postComment,
374
+ _location: location()
375
+ });
376
+ }, "peg$f6");
377
+ var peg$f7 = /* @__PURE__ */ chunkJU4IPIOA_js.__name(function(name) {
378
+ return new chunkJU4IPIOA_js.ParsedEnvSpecFunctionArgs({ values: [] });
379
+ }, "peg$f7");
380
+ var peg$f8 = /* @__PURE__ */ chunkJU4IPIOA_js.__name(function(name, valueOrFnArgs) {
381
+ return new chunkJU4IPIOA_js.ParsedEnvSpecDecorator({
382
+ name,
383
+ valueOrFnArgs,
384
+ _location: location()
385
+ });
386
+ }, "peg$f8");
387
+ var peg$f9 = /* @__PURE__ */ chunkJU4IPIOA_js.__name(function(name, args) {
388
+ return new chunkJU4IPIOA_js.ParsedEnvSpecFunctionCall({
389
+ name,
390
+ args: args || new chunkJU4IPIOA_js.ParsedEnvSpecFunctionArgs({ values: [] }),
391
+ _location: location()
392
+ });
393
+ }, "peg$f9");
394
+ var peg$f10 = /* @__PURE__ */ chunkJU4IPIOA_js.__name(function(key, val) {
395
+ return new chunkJU4IPIOA_js.ParsedEnvSpecKeyValuePair({ key, val });
396
+ }, "peg$f10");
397
+ var peg$f11 = /* @__PURE__ */ chunkJU4IPIOA_js.__name(function(values) {
398
+ return new chunkJU4IPIOA_js.ParsedEnvSpecFunctionArgs({
399
+ values,
400
+ _location: location()
401
+ });
402
+ }, "peg$f11");
403
+ var peg$f12 = /* @__PURE__ */ chunkJU4IPIOA_js.__name(function() {
404
+ return new chunkJU4IPIOA_js.ParsedEnvSpecStaticValue({ rawValue: text(), _location: location() });
405
+ }, "peg$f12");
406
+ var peg$f13 = /* @__PURE__ */ chunkJU4IPIOA_js.__name(function(leadingSpace, contents) {
407
+ return new chunkJU4IPIOA_js.ParsedEnvSpecDivider({
408
+ contents,
409
+ leadingSpace,
410
+ _location: location()
411
+ });
412
+ }, "peg$f13");
413
+ var peg$f14 = /* @__PURE__ */ chunkJU4IPIOA_js.__name(function() {
414
+ return new chunkJU4IPIOA_js.ParsedEnvSpecStaticValue({ rawValue: text(), _location: location() });
415
+ }, "peg$f14");
416
+ var peg$f15 = /* @__PURE__ */ chunkJU4IPIOA_js.__name(function() {
417
+ return new chunkJU4IPIOA_js.ParsedEnvSpecStaticValue({ rawValue: text(), _location: location() });
418
+ }, "peg$f15");
419
+ var peg$f16 = /* @__PURE__ */ chunkJU4IPIOA_js.__name(function(quote) {
420
+ return new chunkJU4IPIOA_js.ParsedEnvSpecStaticValue({ quote, rawValue: text(), _location: location() });
421
+ }, "peg$f16");
422
+ var peg$f17 = /* @__PURE__ */ chunkJU4IPIOA_js.__name(function(quote) {
423
+ return new chunkJU4IPIOA_js.ParsedEnvSpecStaticValue({ quote, rawValue: text(), _location: location() });
424
+ }, "peg$f17");
425
+ var peg$f18 = /* @__PURE__ */ chunkJU4IPIOA_js.__name(function(quote) {
426
+ return new chunkJU4IPIOA_js.ParsedEnvSpecStaticValue({ quote, rawValue: text(), _location: location() });
427
+ }, "peg$f18");
428
+ var peg$f19 = /* @__PURE__ */ chunkJU4IPIOA_js.__name(function(quote) {
429
+ return new chunkJU4IPIOA_js.ParsedEnvSpecStaticValue({ quote, isMultiLine: true, rawValue: text(), _location: location() });
430
+ }, "peg$f19");
431
+ var peg$f20 = /* @__PURE__ */ chunkJU4IPIOA_js.__name(function(quote) {
432
+ return new chunkJU4IPIOA_js.ParsedEnvSpecStaticValue({ quote, isMultiLine: true, rawValue: text(), _location: location() });
433
+ }, "peg$f20");
434
+ var peg$f21 = /* @__PURE__ */ chunkJU4IPIOA_js.__name(function(quote) {
435
+ return new chunkJU4IPIOA_js.ParsedEnvSpecStaticValue({ quote, isMultiLine: true, rawValue: text(), _location: location() });
436
+ }, "peg$f21");
437
+ var peg$f22 = /* @__PURE__ */ chunkJU4IPIOA_js.__name(function(quote) {
438
+ return new chunkJU4IPIOA_js.ParsedEnvSpecStaticValue({ quote, isMultiLine: true, rawValue: text(), _location: location() });
439
+ }, "peg$f22");
440
+ var peg$currPos = options.peg$currPos | 0;
441
+ var peg$savedPos = peg$currPos;
442
+ var peg$posDetailsCache = [{ line: 1, column: 1 }];
443
+ var peg$maxFailPos = peg$currPos;
444
+ var peg$maxFailExpected = options.peg$maxFailExpected || [];
445
+ var peg$silentFails = options.peg$silentFails | 0;
446
+ var peg$result;
447
+ if (options.startRule) {
448
+ if (!(options.startRule in peg$startRuleFunctions)) {
449
+ throw new Error(`Can't start parsing from rule "` + options.startRule + '".');
450
+ }
451
+ peg$startRuleFunction = peg$startRuleFunctions[options.startRule];
452
+ }
453
+ function text() {
454
+ return input.substring(peg$savedPos, peg$currPos);
455
+ }
456
+ chunkJU4IPIOA_js.__name(text, "text");
457
+ function offset() {
458
+ return peg$savedPos;
459
+ }
460
+ chunkJU4IPIOA_js.__name(offset, "offset");
461
+ function range() {
462
+ return {
463
+ source: peg$source,
464
+ start: peg$savedPos,
465
+ end: peg$currPos
466
+ };
467
+ }
468
+ chunkJU4IPIOA_js.__name(range, "range");
469
+ function location() {
470
+ return peg$computeLocation(peg$savedPos, peg$currPos);
471
+ }
472
+ chunkJU4IPIOA_js.__name(location, "location");
473
+ function expected(description, location2) {
474
+ location2 = location2 !== void 0 ? location2 : peg$computeLocation(peg$savedPos, peg$currPos);
475
+ throw peg$buildStructuredError(
476
+ [peg$otherExpectation(description)],
477
+ input.substring(peg$savedPos, peg$currPos),
478
+ location2
479
+ );
480
+ }
481
+ chunkJU4IPIOA_js.__name(expected, "expected");
482
+ function error(message, location2) {
483
+ location2 = location2 !== void 0 ? location2 : peg$computeLocation(peg$savedPos, peg$currPos);
484
+ throw peg$buildSimpleError(message, location2);
485
+ }
486
+ chunkJU4IPIOA_js.__name(error, "error");
487
+ function peg$literalExpectation(text2, ignoreCase) {
488
+ return { type: "literal", text: text2, ignoreCase };
489
+ }
490
+ chunkJU4IPIOA_js.__name(peg$literalExpectation, "peg$literalExpectation");
491
+ function peg$classExpectation(parts, inverted, ignoreCase) {
492
+ return { type: "class", parts, inverted, ignoreCase };
493
+ }
494
+ chunkJU4IPIOA_js.__name(peg$classExpectation, "peg$classExpectation");
495
+ function peg$anyExpectation() {
496
+ return { type: "any" };
497
+ }
498
+ chunkJU4IPIOA_js.__name(peg$anyExpectation, "peg$anyExpectation");
499
+ function peg$endExpectation() {
500
+ return { type: "end" };
501
+ }
502
+ chunkJU4IPIOA_js.__name(peg$endExpectation, "peg$endExpectation");
503
+ function peg$otherExpectation(description) {
504
+ return { type: "other", description };
505
+ }
506
+ chunkJU4IPIOA_js.__name(peg$otherExpectation, "peg$otherExpectation");
507
+ function peg$computePosDetails(pos) {
508
+ var details = peg$posDetailsCache[pos];
509
+ var p;
510
+ if (details) {
511
+ return details;
512
+ } else {
513
+ if (pos >= peg$posDetailsCache.length) {
514
+ p = peg$posDetailsCache.length - 1;
515
+ } else {
516
+ p = pos;
517
+ while (!peg$posDetailsCache[--p]) {
518
+ }
519
+ }
520
+ details = peg$posDetailsCache[p];
521
+ details = {
522
+ line: details.line,
523
+ column: details.column
524
+ };
525
+ while (p < pos) {
526
+ if (input.charCodeAt(p) === 10) {
527
+ details.line++;
528
+ details.column = 1;
529
+ } else {
530
+ details.column++;
531
+ }
532
+ p++;
533
+ }
534
+ peg$posDetailsCache[pos] = details;
535
+ return details;
536
+ }
537
+ }
538
+ chunkJU4IPIOA_js.__name(peg$computePosDetails, "peg$computePosDetails");
539
+ function peg$computeLocation(startPos, endPos, offset2) {
540
+ var startPosDetails = peg$computePosDetails(startPos);
541
+ var endPosDetails = peg$computePosDetails(endPos);
542
+ var res = {
543
+ source: peg$source,
544
+ start: {
545
+ offset: startPos,
546
+ line: startPosDetails.line,
547
+ column: startPosDetails.column
548
+ },
549
+ end: {
550
+ offset: endPos,
551
+ line: endPosDetails.line,
552
+ column: endPosDetails.column
553
+ }
554
+ };
555
+ if (offset2 && peg$source && typeof peg$source.offset === "function") {
556
+ res.start = peg$source.offset(res.start);
557
+ res.end = peg$source.offset(res.end);
558
+ }
559
+ return res;
560
+ }
561
+ chunkJU4IPIOA_js.__name(peg$computeLocation, "peg$computeLocation");
562
+ function peg$fail(expected2) {
563
+ if (peg$currPos < peg$maxFailPos) {
564
+ return;
565
+ }
566
+ if (peg$currPos > peg$maxFailPos) {
567
+ peg$maxFailPos = peg$currPos;
568
+ peg$maxFailExpected = [];
569
+ }
570
+ peg$maxFailExpected.push(expected2);
571
+ }
572
+ chunkJU4IPIOA_js.__name(peg$fail, "peg$fail");
573
+ function peg$buildSimpleError(message, location2) {
574
+ return new peg$SyntaxError(message, null, null, location2);
575
+ }
576
+ chunkJU4IPIOA_js.__name(peg$buildSimpleError, "peg$buildSimpleError");
577
+ function peg$buildStructuredError(expected2, found, location2) {
578
+ return new peg$SyntaxError(
579
+ peg$SyntaxError.buildMessage(expected2, found),
580
+ expected2,
581
+ found,
582
+ location2
583
+ );
584
+ }
585
+ chunkJU4IPIOA_js.__name(peg$buildStructuredError, "peg$buildStructuredError");
586
+ function peg$parseEnvSpecFile() {
587
+ var s0, s1, s2, s3;
588
+ s0 = peg$currPos;
589
+ s1 = [];
590
+ s2 = peg$parseConfigItem();
591
+ if (s2 === peg$FAILED) {
592
+ s2 = peg$parseDivider();
593
+ if (s2 === peg$FAILED) {
594
+ s2 = peg$parseCommentBlock();
595
+ if (s2 === peg$FAILED) {
596
+ s2 = peg$currPos;
597
+ if (input.charCodeAt(peg$currPos) === 10) {
598
+ s3 = peg$c0;
599
+ peg$currPos++;
600
+ } else {
601
+ s3 = peg$FAILED;
602
+ if (peg$silentFails === 0) {
603
+ peg$fail(peg$e0);
604
+ }
605
+ }
606
+ if (s3 !== peg$FAILED) {
607
+ peg$savedPos = s2;
608
+ s3 = peg$f0();
609
+ }
610
+ s2 = s3;
611
+ }
612
+ }
613
+ }
614
+ while (s2 !== peg$FAILED) {
615
+ s1.push(s2);
616
+ s2 = peg$parseConfigItem();
617
+ if (s2 === peg$FAILED) {
618
+ s2 = peg$parseDivider();
619
+ if (s2 === peg$FAILED) {
620
+ s2 = peg$parseCommentBlock();
621
+ if (s2 === peg$FAILED) {
622
+ s2 = peg$currPos;
623
+ if (input.charCodeAt(peg$currPos) === 10) {
624
+ s3 = peg$c0;
625
+ peg$currPos++;
626
+ } else {
627
+ s3 = peg$FAILED;
628
+ if (peg$silentFails === 0) {
629
+ peg$fail(peg$e0);
630
+ }
631
+ }
632
+ if (s3 !== peg$FAILED) {
633
+ peg$savedPos = s2;
634
+ s3 = peg$f0();
635
+ }
636
+ s2 = s3;
637
+ }
638
+ }
639
+ }
640
+ }
641
+ peg$savedPos = s0;
642
+ s1 = peg$f1(s1);
643
+ s0 = s1;
644
+ return s0;
645
+ }
646
+ chunkJU4IPIOA_js.__name(peg$parseEnvSpecFile, "peg$parseEnvSpecFile");
647
+ function peg$parseConfigItem() {
648
+ var s0, s1, s2, s3, s4, s5, s6, s7, s9, s10;
649
+ s0 = peg$currPos;
650
+ s1 = [];
651
+ s2 = peg$currPos;
652
+ s3 = peg$parseIgnoredDecoratorComment();
653
+ if (s3 === peg$FAILED) {
654
+ s3 = peg$parseDecoratorComment();
655
+ if (s3 === peg$FAILED) {
656
+ s3 = peg$parseComment();
657
+ }
658
+ }
659
+ if (s3 !== peg$FAILED) {
660
+ if (input.charCodeAt(peg$currPos) === 10) {
661
+ s4 = peg$c0;
662
+ peg$currPos++;
663
+ } else {
664
+ s4 = peg$FAILED;
665
+ if (peg$silentFails === 0) {
666
+ peg$fail(peg$e0);
667
+ }
668
+ }
669
+ if (s4 !== peg$FAILED) {
670
+ s2 = s3;
671
+ } else {
672
+ peg$currPos = s2;
673
+ s2 = peg$FAILED;
674
+ }
675
+ } else {
676
+ peg$currPos = s2;
677
+ s2 = peg$FAILED;
678
+ }
679
+ while (s2 !== peg$FAILED) {
680
+ s1.push(s2);
681
+ s2 = peg$currPos;
682
+ s3 = peg$parseIgnoredDecoratorComment();
683
+ if (s3 === peg$FAILED) {
684
+ s3 = peg$parseDecoratorComment();
685
+ if (s3 === peg$FAILED) {
686
+ s3 = peg$parseComment();
687
+ }
688
+ }
689
+ if (s3 !== peg$FAILED) {
690
+ if (input.charCodeAt(peg$currPos) === 10) {
691
+ s4 = peg$c0;
692
+ peg$currPos++;
693
+ } else {
694
+ s4 = peg$FAILED;
695
+ if (peg$silentFails === 0) {
696
+ peg$fail(peg$e0);
697
+ }
698
+ }
699
+ if (s4 !== peg$FAILED) {
700
+ s2 = s3;
701
+ } else {
702
+ peg$currPos = s2;
703
+ s2 = peg$FAILED;
704
+ }
705
+ } else {
706
+ peg$currPos = s2;
707
+ s2 = peg$FAILED;
708
+ }
709
+ }
710
+ s2 = peg$currPos;
711
+ s3 = peg$parse_();
712
+ if (input.substr(peg$currPos, 7) === peg$c1) {
713
+ s4 = peg$c1;
714
+ peg$currPos += 7;
715
+ } else {
716
+ s4 = peg$FAILED;
717
+ if (peg$silentFails === 0) {
718
+ peg$fail(peg$e1);
719
+ }
720
+ }
721
+ if (s4 !== peg$FAILED) {
722
+ s5 = peg$parse_();
723
+ s3 = [s3, s4, s5];
724
+ s2 = s3;
725
+ } else {
726
+ peg$currPos = s2;
727
+ s2 = peg$FAILED;
728
+ }
729
+ if (s2 === peg$FAILED) {
730
+ s2 = null;
731
+ }
732
+ s3 = peg$parse_();
733
+ s4 = peg$parseConfigItemKey();
734
+ if (s4 !== peg$FAILED) {
735
+ s5 = peg$parse_();
736
+ if (input.charCodeAt(peg$currPos) === 61) {
737
+ s6 = peg$c2;
738
+ peg$currPos++;
739
+ } else {
740
+ s6 = peg$FAILED;
741
+ if (peg$silentFails === 0) {
742
+ peg$fail(peg$e2);
743
+ }
744
+ }
745
+ if (s6 !== peg$FAILED) {
746
+ s7 = peg$parseConfigItemValue();
747
+ if (s7 === peg$FAILED) {
748
+ s7 = null;
749
+ }
750
+ peg$parse_();
751
+ s9 = peg$currPos;
752
+ s10 = peg$parseIgnoredDecoratorComment();
753
+ if (s10 === peg$FAILED) {
754
+ s10 = peg$parseDecoratorComment();
755
+ if (s10 === peg$FAILED) {
756
+ s10 = peg$parseComment();
757
+ }
758
+ }
759
+ if (s10 !== peg$FAILED) {
760
+ s9 = s10;
761
+ } else {
762
+ peg$currPos = s9;
763
+ s9 = peg$FAILED;
764
+ }
765
+ if (s9 === peg$FAILED) {
766
+ s9 = null;
767
+ }
768
+ s10 = peg$parse_n();
769
+ if (s10 !== peg$FAILED) {
770
+ peg$savedPos = s0;
771
+ s0 = peg$f2(s1, s4, s7, s9);
772
+ } else {
773
+ peg$currPos = s0;
774
+ s0 = peg$FAILED;
775
+ }
776
+ } else {
777
+ peg$currPos = s0;
778
+ s0 = peg$FAILED;
779
+ }
780
+ } else {
781
+ peg$currPos = s0;
782
+ s0 = peg$FAILED;
783
+ }
784
+ return s0;
785
+ }
786
+ chunkJU4IPIOA_js.__name(peg$parseConfigItem, "peg$parseConfigItem");
787
+ function peg$parseConfigItemKey() {
788
+ var s0, s1, s2, s3, s4;
789
+ s0 = peg$currPos;
790
+ s1 = peg$currPos;
791
+ s2 = input.charAt(peg$currPos);
792
+ if (peg$r0.test(s2)) {
793
+ peg$currPos++;
794
+ } else {
795
+ s2 = peg$FAILED;
796
+ if (peg$silentFails === 0) {
797
+ peg$fail(peg$e3);
798
+ }
799
+ }
800
+ if (s2 !== peg$FAILED) {
801
+ s3 = [];
802
+ s4 = input.charAt(peg$currPos);
803
+ if (peg$r1.test(s4)) {
804
+ peg$currPos++;
805
+ } else {
806
+ s4 = peg$FAILED;
807
+ if (peg$silentFails === 0) {
808
+ peg$fail(peg$e4);
809
+ }
810
+ }
811
+ while (s4 !== peg$FAILED) {
812
+ s3.push(s4);
813
+ s4 = input.charAt(peg$currPos);
814
+ if (peg$r1.test(s4)) {
815
+ peg$currPos++;
816
+ } else {
817
+ s4 = peg$FAILED;
818
+ if (peg$silentFails === 0) {
819
+ peg$fail(peg$e4);
820
+ }
821
+ }
822
+ }
823
+ s2 = [s2, s3];
824
+ s1 = s2;
825
+ } else {
826
+ peg$currPos = s1;
827
+ s1 = peg$FAILED;
828
+ }
829
+ if (s1 !== peg$FAILED) {
830
+ s0 = input.substring(s0, peg$currPos);
831
+ } else {
832
+ s0 = s1;
833
+ }
834
+ return s0;
835
+ }
836
+ chunkJU4IPIOA_js.__name(peg$parseConfigItemKey, "peg$parseConfigItemKey");
837
+ function peg$parseConfigItemValue() {
838
+ var s0;
839
+ s0 = peg$parseFunctionCall();
840
+ if (s0 === peg$FAILED) {
841
+ s0 = peg$parsemultiLineString();
842
+ if (s0 === peg$FAILED) {
843
+ s0 = peg$parsequotedString();
844
+ if (s0 === peg$FAILED) {
845
+ s0 = peg$parseunquotedString();
846
+ }
847
+ }
848
+ }
849
+ return s0;
850
+ }
851
+ chunkJU4IPIOA_js.__name(peg$parseConfigItemValue, "peg$parseConfigItemValue");
852
+ function peg$parseCommentBlock() {
853
+ var s0, s1, s2, s3, s4;
854
+ s0 = peg$currPos;
855
+ s1 = [];
856
+ s2 = peg$currPos;
857
+ s3 = peg$parseIgnoredDecoratorComment();
858
+ if (s3 === peg$FAILED) {
859
+ s3 = peg$parseDecoratorComment();
860
+ if (s3 === peg$FAILED) {
861
+ s3 = peg$parseComment();
862
+ }
863
+ }
864
+ if (s3 !== peg$FAILED) {
865
+ s4 = peg$parse_n();
866
+ if (s4 !== peg$FAILED) {
867
+ s2 = s3;
868
+ } else {
869
+ peg$currPos = s2;
870
+ s2 = peg$FAILED;
871
+ }
872
+ } else {
873
+ peg$currPos = s2;
874
+ s2 = peg$FAILED;
875
+ }
876
+ if (s2 !== peg$FAILED) {
877
+ while (s2 !== peg$FAILED) {
878
+ s1.push(s2);
879
+ s2 = peg$currPos;
880
+ s3 = peg$parseIgnoredDecoratorComment();
881
+ if (s3 === peg$FAILED) {
882
+ s3 = peg$parseDecoratorComment();
883
+ if (s3 === peg$FAILED) {
884
+ s3 = peg$parseComment();
885
+ }
886
+ }
887
+ if (s3 !== peg$FAILED) {
888
+ s4 = peg$parse_n();
889
+ if (s4 !== peg$FAILED) {
890
+ s2 = s3;
891
+ } else {
892
+ peg$currPos = s2;
893
+ s2 = peg$FAILED;
894
+ }
895
+ } else {
896
+ peg$currPos = s2;
897
+ s2 = peg$FAILED;
898
+ }
899
+ }
900
+ } else {
901
+ s1 = peg$FAILED;
902
+ }
903
+ if (s1 !== peg$FAILED) {
904
+ s2 = peg$parseDivider();
905
+ if (s2 === peg$FAILED) {
906
+ s2 = peg$parse_n();
907
+ }
908
+ if (s2 !== peg$FAILED) {
909
+ peg$savedPos = s0;
910
+ s0 = peg$f3(s1, s2);
911
+ } else {
912
+ peg$currPos = s0;
913
+ s0 = peg$FAILED;
914
+ }
915
+ } else {
916
+ peg$currPos = s0;
917
+ s0 = peg$FAILED;
918
+ }
919
+ return s0;
920
+ }
921
+ chunkJU4IPIOA_js.__name(peg$parseCommentBlock, "peg$parseCommentBlock");
922
+ function peg$parseComment() {
923
+ var s0, s1, s2, s3, s4, s5, s6, s7, s8, s9;
924
+ s0 = peg$currPos;
925
+ s1 = peg$currPos;
926
+ peg$silentFails++;
927
+ s2 = peg$parseDivider();
928
+ peg$silentFails--;
929
+ if (s2 === peg$FAILED) {
930
+ s1 = void 0;
931
+ } else {
932
+ peg$currPos = s1;
933
+ s1 = peg$FAILED;
934
+ }
935
+ if (s1 !== peg$FAILED) {
936
+ if (input.charCodeAt(peg$currPos) === 35) {
937
+ s2 = peg$c3;
938
+ peg$currPos++;
939
+ } else {
940
+ s2 = peg$FAILED;
941
+ if (peg$silentFails === 0) {
942
+ peg$fail(peg$e5);
943
+ }
944
+ }
945
+ if (s2 !== peg$FAILED) {
946
+ s3 = peg$currPos;
947
+ s4 = peg$parse_();
948
+ s3 = input.substring(s3, peg$currPos);
949
+ s4 = peg$currPos;
950
+ s5 = peg$currPos;
951
+ s6 = peg$currPos;
952
+ s7 = peg$currPos;
953
+ peg$silentFails++;
954
+ if (input.charCodeAt(peg$currPos) === 64) {
955
+ s8 = peg$c4;
956
+ peg$currPos++;
957
+ } else {
958
+ s8 = peg$FAILED;
959
+ if (peg$silentFails === 0) {
960
+ peg$fail(peg$e6);
961
+ }
962
+ }
963
+ peg$silentFails--;
964
+ if (s8 === peg$FAILED) {
965
+ s7 = void 0;
966
+ } else {
967
+ peg$currPos = s7;
968
+ s7 = peg$FAILED;
969
+ }
970
+ if (s7 !== peg$FAILED) {
971
+ s8 = [];
972
+ s9 = input.charAt(peg$currPos);
973
+ if (peg$r2.test(s9)) {
974
+ peg$currPos++;
975
+ } else {
976
+ s9 = peg$FAILED;
977
+ if (peg$silentFails === 0) {
978
+ peg$fail(peg$e7);
979
+ }
980
+ }
981
+ while (s9 !== peg$FAILED) {
982
+ s8.push(s9);
983
+ s9 = input.charAt(peg$currPos);
984
+ if (peg$r2.test(s9)) {
985
+ peg$currPos++;
986
+ } else {
987
+ s9 = peg$FAILED;
988
+ if (peg$silentFails === 0) {
989
+ peg$fail(peg$e7);
990
+ }
991
+ }
992
+ }
993
+ s7 = [s7, s8];
994
+ s6 = s7;
995
+ } else {
996
+ peg$currPos = s6;
997
+ s6 = peg$FAILED;
998
+ }
999
+ if (s6 === peg$FAILED) {
1000
+ s6 = null;
1001
+ }
1002
+ s5 = input.substring(s5, peg$currPos);
1003
+ s4 = input.substring(s4, peg$currPos);
1004
+ peg$savedPos = s0;
1005
+ s0 = peg$f4(s3, s4);
1006
+ } else {
1007
+ peg$currPos = s0;
1008
+ s0 = peg$FAILED;
1009
+ }
1010
+ } else {
1011
+ peg$currPos = s0;
1012
+ s0 = peg$FAILED;
1013
+ }
1014
+ return s0;
1015
+ }
1016
+ chunkJU4IPIOA_js.__name(peg$parseComment, "peg$parseComment");
1017
+ function peg$parseIgnoredDecoratorComment() {
1018
+ var s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10;
1019
+ s0 = peg$currPos;
1020
+ if (input.charCodeAt(peg$currPos) === 35) {
1021
+ s1 = peg$c3;
1022
+ peg$currPos++;
1023
+ } else {
1024
+ s1 = peg$FAILED;
1025
+ if (peg$silentFails === 0) {
1026
+ peg$fail(peg$e5);
1027
+ }
1028
+ }
1029
+ if (s1 !== peg$FAILED) {
1030
+ s2 = peg$currPos;
1031
+ s3 = peg$parse_();
1032
+ s2 = input.substring(s2, peg$currPos);
1033
+ s3 = peg$currPos;
1034
+ s4 = peg$currPos;
1035
+ if (input.charCodeAt(peg$currPos) === 64) {
1036
+ s5 = peg$c4;
1037
+ peg$currPos++;
1038
+ } else {
1039
+ s5 = peg$FAILED;
1040
+ if (peg$silentFails === 0) {
1041
+ peg$fail(peg$e6);
1042
+ }
1043
+ }
1044
+ if (s5 !== peg$FAILED) {
1045
+ s6 = [];
1046
+ s7 = input.charAt(peg$currPos);
1047
+ if (peg$r3.test(s7)) {
1048
+ peg$currPos++;
1049
+ } else {
1050
+ s7 = peg$FAILED;
1051
+ if (peg$silentFails === 0) {
1052
+ peg$fail(peg$e8);
1053
+ }
1054
+ }
1055
+ if (s7 !== peg$FAILED) {
1056
+ while (s7 !== peg$FAILED) {
1057
+ s6.push(s7);
1058
+ s7 = input.charAt(peg$currPos);
1059
+ if (peg$r3.test(s7)) {
1060
+ peg$currPos++;
1061
+ } else {
1062
+ s7 = peg$FAILED;
1063
+ if (peg$silentFails === 0) {
1064
+ peg$fail(peg$e8);
1065
+ }
1066
+ }
1067
+ }
1068
+ } else {
1069
+ s6 = peg$FAILED;
1070
+ }
1071
+ if (s6 !== peg$FAILED) {
1072
+ if (input.charCodeAt(peg$currPos) === 58) {
1073
+ s7 = peg$c5;
1074
+ peg$currPos++;
1075
+ } else {
1076
+ s7 = peg$FAILED;
1077
+ if (peg$silentFails === 0) {
1078
+ peg$fail(peg$e9);
1079
+ }
1080
+ }
1081
+ if (s7 !== peg$FAILED) {
1082
+ s8 = [];
1083
+ s9 = input.charAt(peg$currPos);
1084
+ if (peg$r2.test(s9)) {
1085
+ peg$currPos++;
1086
+ } else {
1087
+ s9 = peg$FAILED;
1088
+ if (peg$silentFails === 0) {
1089
+ peg$fail(peg$e7);
1090
+ }
1091
+ }
1092
+ while (s9 !== peg$FAILED) {
1093
+ s8.push(s9);
1094
+ s9 = input.charAt(peg$currPos);
1095
+ if (peg$r2.test(s9)) {
1096
+ peg$currPos++;
1097
+ } else {
1098
+ s9 = peg$FAILED;
1099
+ if (peg$silentFails === 0) {
1100
+ peg$fail(peg$e7);
1101
+ }
1102
+ }
1103
+ }
1104
+ s5 = [s5, s6, s7, s8];
1105
+ s4 = s5;
1106
+ } else {
1107
+ peg$currPos = s4;
1108
+ s4 = peg$FAILED;
1109
+ }
1110
+ } else {
1111
+ peg$currPos = s4;
1112
+ s4 = peg$FAILED;
1113
+ }
1114
+ } else {
1115
+ peg$currPos = s4;
1116
+ s4 = peg$FAILED;
1117
+ }
1118
+ if (s4 === peg$FAILED) {
1119
+ s4 = peg$currPos;
1120
+ if (input.charCodeAt(peg$currPos) === 64) {
1121
+ s5 = peg$c4;
1122
+ peg$currPos++;
1123
+ } else {
1124
+ s5 = peg$FAILED;
1125
+ if (peg$silentFails === 0) {
1126
+ peg$fail(peg$e6);
1127
+ }
1128
+ }
1129
+ if (s5 !== peg$FAILED) {
1130
+ s6 = [];
1131
+ s7 = input.charAt(peg$currPos);
1132
+ if (peg$r3.test(s7)) {
1133
+ peg$currPos++;
1134
+ } else {
1135
+ s7 = peg$FAILED;
1136
+ if (peg$silentFails === 0) {
1137
+ peg$fail(peg$e8);
1138
+ }
1139
+ }
1140
+ if (s7 !== peg$FAILED) {
1141
+ while (s7 !== peg$FAILED) {
1142
+ s6.push(s7);
1143
+ s7 = input.charAt(peg$currPos);
1144
+ if (peg$r3.test(s7)) {
1145
+ peg$currPos++;
1146
+ } else {
1147
+ s7 = peg$FAILED;
1148
+ if (peg$silentFails === 0) {
1149
+ peg$fail(peg$e8);
1150
+ }
1151
+ }
1152
+ }
1153
+ } else {
1154
+ s6 = peg$FAILED;
1155
+ }
1156
+ if (s6 !== peg$FAILED) {
1157
+ s7 = peg$parse__();
1158
+ if (s7 !== peg$FAILED) {
1159
+ s8 = peg$currPos;
1160
+ peg$silentFails++;
1161
+ s9 = input.charAt(peg$currPos);
1162
+ if (peg$r4.test(s9)) {
1163
+ peg$currPos++;
1164
+ } else {
1165
+ s9 = peg$FAILED;
1166
+ if (peg$silentFails === 0) {
1167
+ peg$fail(peg$e10);
1168
+ }
1169
+ }
1170
+ peg$silentFails--;
1171
+ if (s9 === peg$FAILED) {
1172
+ s8 = void 0;
1173
+ } else {
1174
+ peg$currPos = s8;
1175
+ s8 = peg$FAILED;
1176
+ }
1177
+ if (s8 !== peg$FAILED) {
1178
+ s9 = [];
1179
+ s10 = input.charAt(peg$currPos);
1180
+ if (peg$r2.test(s10)) {
1181
+ peg$currPos++;
1182
+ } else {
1183
+ s10 = peg$FAILED;
1184
+ if (peg$silentFails === 0) {
1185
+ peg$fail(peg$e7);
1186
+ }
1187
+ }
1188
+ while (s10 !== peg$FAILED) {
1189
+ s9.push(s10);
1190
+ s10 = input.charAt(peg$currPos);
1191
+ if (peg$r2.test(s10)) {
1192
+ peg$currPos++;
1193
+ } else {
1194
+ s10 = peg$FAILED;
1195
+ if (peg$silentFails === 0) {
1196
+ peg$fail(peg$e7);
1197
+ }
1198
+ }
1199
+ }
1200
+ s5 = [s5, s6, s7, s8, s9];
1201
+ s4 = s5;
1202
+ } else {
1203
+ peg$currPos = s4;
1204
+ s4 = peg$FAILED;
1205
+ }
1206
+ } else {
1207
+ peg$currPos = s4;
1208
+ s4 = peg$FAILED;
1209
+ }
1210
+ } else {
1211
+ peg$currPos = s4;
1212
+ s4 = peg$FAILED;
1213
+ }
1214
+ } else {
1215
+ peg$currPos = s4;
1216
+ s4 = peg$FAILED;
1217
+ }
1218
+ }
1219
+ if (s4 !== peg$FAILED) {
1220
+ s3 = input.substring(s3, peg$currPos);
1221
+ } else {
1222
+ s3 = s4;
1223
+ }
1224
+ if (s3 !== peg$FAILED) {
1225
+ peg$savedPos = s0;
1226
+ s0 = peg$f5(s2, s3);
1227
+ } else {
1228
+ peg$currPos = s0;
1229
+ s0 = peg$FAILED;
1230
+ }
1231
+ } else {
1232
+ peg$currPos = s0;
1233
+ s0 = peg$FAILED;
1234
+ }
1235
+ return s0;
1236
+ }
1237
+ chunkJU4IPIOA_js.__name(peg$parseIgnoredDecoratorComment, "peg$parseIgnoredDecoratorComment");
1238
+ function peg$parseDecoratorComment() {
1239
+ var s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10;
1240
+ s0 = peg$currPos;
1241
+ if (input.charCodeAt(peg$currPos) === 35) {
1242
+ s1 = peg$c3;
1243
+ peg$currPos++;
1244
+ } else {
1245
+ s1 = peg$FAILED;
1246
+ if (peg$silentFails === 0) {
1247
+ peg$fail(peg$e5);
1248
+ }
1249
+ }
1250
+ if (s1 !== peg$FAILED) {
1251
+ s2 = peg$currPos;
1252
+ s3 = peg$parse_();
1253
+ s2 = input.substring(s2, peg$currPos);
1254
+ s3 = peg$parseDecorator();
1255
+ if (s3 !== peg$FAILED) {
1256
+ s4 = [];
1257
+ s5 = peg$currPos;
1258
+ s6 = peg$parse__();
1259
+ if (s6 !== peg$FAILED) {
1260
+ s7 = peg$parseDecorator();
1261
+ if (s7 !== peg$FAILED) {
1262
+ s5 = s7;
1263
+ } else {
1264
+ peg$currPos = s5;
1265
+ s5 = peg$FAILED;
1266
+ }
1267
+ } else {
1268
+ peg$currPos = s5;
1269
+ s5 = peg$FAILED;
1270
+ }
1271
+ while (s5 !== peg$FAILED) {
1272
+ s4.push(s5);
1273
+ s5 = peg$currPos;
1274
+ s6 = peg$parse__();
1275
+ if (s6 !== peg$FAILED) {
1276
+ s7 = peg$parseDecorator();
1277
+ if (s7 !== peg$FAILED) {
1278
+ s5 = s7;
1279
+ } else {
1280
+ peg$currPos = s5;
1281
+ s5 = peg$FAILED;
1282
+ }
1283
+ } else {
1284
+ peg$currPos = s5;
1285
+ s5 = peg$FAILED;
1286
+ }
1287
+ }
1288
+ s5 = peg$parse_();
1289
+ s6 = peg$currPos;
1290
+ s7 = peg$currPos;
1291
+ if (input.charCodeAt(peg$currPos) === 35) {
1292
+ s8 = peg$c3;
1293
+ peg$currPos++;
1294
+ } else {
1295
+ s8 = peg$FAILED;
1296
+ if (peg$silentFails === 0) {
1297
+ peg$fail(peg$e5);
1298
+ }
1299
+ }
1300
+ if (s8 !== peg$FAILED) {
1301
+ s9 = [];
1302
+ s10 = input.charAt(peg$currPos);
1303
+ if (peg$r2.test(s10)) {
1304
+ peg$currPos++;
1305
+ } else {
1306
+ s10 = peg$FAILED;
1307
+ if (peg$silentFails === 0) {
1308
+ peg$fail(peg$e7);
1309
+ }
1310
+ }
1311
+ while (s10 !== peg$FAILED) {
1312
+ s9.push(s10);
1313
+ s10 = input.charAt(peg$currPos);
1314
+ if (peg$r2.test(s10)) {
1315
+ peg$currPos++;
1316
+ } else {
1317
+ s10 = peg$FAILED;
1318
+ if (peg$silentFails === 0) {
1319
+ peg$fail(peg$e7);
1320
+ }
1321
+ }
1322
+ }
1323
+ s8 = [s8, s9];
1324
+ s7 = s8;
1325
+ } else {
1326
+ peg$currPos = s7;
1327
+ s7 = peg$FAILED;
1328
+ }
1329
+ if (s7 === peg$FAILED) {
1330
+ s7 = null;
1331
+ }
1332
+ s6 = input.substring(s6, peg$currPos);
1333
+ peg$savedPos = s0;
1334
+ s0 = peg$f6(s2, s3, s4, s6);
1335
+ } else {
1336
+ peg$currPos = s0;
1337
+ s0 = peg$FAILED;
1338
+ }
1339
+ } else {
1340
+ peg$currPos = s0;
1341
+ s0 = peg$FAILED;
1342
+ }
1343
+ return s0;
1344
+ }
1345
+ chunkJU4IPIOA_js.__name(peg$parseDecoratorComment, "peg$parseDecoratorComment");
1346
+ function peg$parseDecorator() {
1347
+ var s0, s1, s2, s3, s4, s5, s6;
1348
+ s0 = peg$currPos;
1349
+ if (input.charCodeAt(peg$currPos) === 64) {
1350
+ s1 = peg$c4;
1351
+ peg$currPos++;
1352
+ } else {
1353
+ s1 = peg$FAILED;
1354
+ if (peg$silentFails === 0) {
1355
+ peg$fail(peg$e6);
1356
+ }
1357
+ }
1358
+ if (s1 !== peg$FAILED) {
1359
+ s2 = peg$parseDecoratorName();
1360
+ if (s2 !== peg$FAILED) {
1361
+ s3 = peg$currPos;
1362
+ if (input.substr(peg$currPos, 2) === peg$c6) {
1363
+ s4 = peg$c6;
1364
+ peg$currPos += 2;
1365
+ } else {
1366
+ s4 = peg$FAILED;
1367
+ if (peg$silentFails === 0) {
1368
+ peg$fail(peg$e11);
1369
+ }
1370
+ }
1371
+ if (s4 !== peg$FAILED) {
1372
+ peg$savedPos = s3;
1373
+ s4 = peg$f7(s2);
1374
+ }
1375
+ s3 = s4;
1376
+ if (s3 === peg$FAILED) {
1377
+ s3 = peg$currPos;
1378
+ if (input.charCodeAt(peg$currPos) === 40) {
1379
+ s4 = peg$c7;
1380
+ peg$currPos++;
1381
+ } else {
1382
+ s4 = peg$FAILED;
1383
+ if (peg$silentFails === 0) {
1384
+ peg$fail(peg$e12);
1385
+ }
1386
+ }
1387
+ if (s4 !== peg$FAILED) {
1388
+ s5 = peg$parseFunctionArgs();
1389
+ if (s5 === peg$FAILED) {
1390
+ s5 = null;
1391
+ }
1392
+ if (input.charCodeAt(peg$currPos) === 41) {
1393
+ s6 = peg$c8;
1394
+ peg$currPos++;
1395
+ } else {
1396
+ s6 = peg$FAILED;
1397
+ if (peg$silentFails === 0) {
1398
+ peg$fail(peg$e13);
1399
+ }
1400
+ }
1401
+ if (s6 !== peg$FAILED) {
1402
+ s3 = s5;
1403
+ } else {
1404
+ peg$currPos = s3;
1405
+ s3 = peg$FAILED;
1406
+ }
1407
+ } else {
1408
+ peg$currPos = s3;
1409
+ s3 = peg$FAILED;
1410
+ }
1411
+ if (s3 === peg$FAILED) {
1412
+ s3 = peg$currPos;
1413
+ if (input.charCodeAt(peg$currPos) === 61) {
1414
+ s4 = peg$c2;
1415
+ peg$currPos++;
1416
+ } else {
1417
+ s4 = peg$FAILED;
1418
+ if (peg$silentFails === 0) {
1419
+ peg$fail(peg$e2);
1420
+ }
1421
+ }
1422
+ if (s4 !== peg$FAILED) {
1423
+ s5 = peg$parseDecoratorValue();
1424
+ if (s5 !== peg$FAILED) {
1425
+ s3 = s5;
1426
+ } else {
1427
+ peg$currPos = s3;
1428
+ s3 = peg$FAILED;
1429
+ }
1430
+ } else {
1431
+ peg$currPos = s3;
1432
+ s3 = peg$FAILED;
1433
+ }
1434
+ }
1435
+ }
1436
+ if (s3 === peg$FAILED) {
1437
+ s3 = null;
1438
+ }
1439
+ peg$savedPos = s0;
1440
+ s0 = peg$f8(s2, s3);
1441
+ } else {
1442
+ peg$currPos = s0;
1443
+ s0 = peg$FAILED;
1444
+ }
1445
+ } else {
1446
+ peg$currPos = s0;
1447
+ s0 = peg$FAILED;
1448
+ }
1449
+ return s0;
1450
+ }
1451
+ chunkJU4IPIOA_js.__name(peg$parseDecorator, "peg$parseDecorator");
1452
+ function peg$parseDecoratorName() {
1453
+ var s0, s1, s2, s3, s4;
1454
+ s0 = peg$currPos;
1455
+ s1 = peg$currPos;
1456
+ s2 = input.charAt(peg$currPos);
1457
+ if (peg$r3.test(s2)) {
1458
+ peg$currPos++;
1459
+ } else {
1460
+ s2 = peg$FAILED;
1461
+ if (peg$silentFails === 0) {
1462
+ peg$fail(peg$e8);
1463
+ }
1464
+ }
1465
+ if (s2 !== peg$FAILED) {
1466
+ s3 = [];
1467
+ s4 = input.charAt(peg$currPos);
1468
+ if (peg$r5.test(s4)) {
1469
+ peg$currPos++;
1470
+ } else {
1471
+ s4 = peg$FAILED;
1472
+ if (peg$silentFails === 0) {
1473
+ peg$fail(peg$e14);
1474
+ }
1475
+ }
1476
+ while (s4 !== peg$FAILED) {
1477
+ s3.push(s4);
1478
+ s4 = input.charAt(peg$currPos);
1479
+ if (peg$r5.test(s4)) {
1480
+ peg$currPos++;
1481
+ } else {
1482
+ s4 = peg$FAILED;
1483
+ if (peg$silentFails === 0) {
1484
+ peg$fail(peg$e14);
1485
+ }
1486
+ }
1487
+ }
1488
+ s2 = [s2, s3];
1489
+ s1 = s2;
1490
+ } else {
1491
+ peg$currPos = s1;
1492
+ s1 = peg$FAILED;
1493
+ }
1494
+ if (s1 !== peg$FAILED) {
1495
+ s0 = input.substring(s0, peg$currPos);
1496
+ } else {
1497
+ s0 = s1;
1498
+ }
1499
+ return s0;
1500
+ }
1501
+ chunkJU4IPIOA_js.__name(peg$parseDecoratorName, "peg$parseDecoratorName");
1502
+ function peg$parseDecoratorValue() {
1503
+ var s0;
1504
+ s0 = peg$parseFunctionCall();
1505
+ if (s0 === peg$FAILED) {
1506
+ s0 = peg$parsequotedString();
1507
+ if (s0 === peg$FAILED) {
1508
+ s0 = peg$parseunquotedStringWithoutSpaces();
1509
+ }
1510
+ }
1511
+ return s0;
1512
+ }
1513
+ chunkJU4IPIOA_js.__name(peg$parseDecoratorValue, "peg$parseDecoratorValue");
1514
+ function peg$parseFunctionCall() {
1515
+ var s0, s1, s2, s4, s6;
1516
+ s0 = peg$currPos;
1517
+ s1 = peg$parseFunctionName();
1518
+ if (s1 !== peg$FAILED) {
1519
+ if (input.charCodeAt(peg$currPos) === 40) {
1520
+ s2 = peg$c7;
1521
+ peg$currPos++;
1522
+ } else {
1523
+ s2 = peg$FAILED;
1524
+ if (peg$silentFails === 0) {
1525
+ peg$fail(peg$e12);
1526
+ }
1527
+ }
1528
+ if (s2 !== peg$FAILED) {
1529
+ peg$parse_();
1530
+ s4 = peg$parseFunctionArgs();
1531
+ if (s4 === peg$FAILED) {
1532
+ s4 = null;
1533
+ }
1534
+ peg$parse_();
1535
+ if (input.charCodeAt(peg$currPos) === 41) {
1536
+ s6 = peg$c8;
1537
+ peg$currPos++;
1538
+ } else {
1539
+ s6 = peg$FAILED;
1540
+ if (peg$silentFails === 0) {
1541
+ peg$fail(peg$e13);
1542
+ }
1543
+ }
1544
+ if (s6 !== peg$FAILED) {
1545
+ peg$savedPos = s0;
1546
+ s0 = peg$f9(s1, s4);
1547
+ } else {
1548
+ peg$currPos = s0;
1549
+ s0 = peg$FAILED;
1550
+ }
1551
+ } else {
1552
+ peg$currPos = s0;
1553
+ s0 = peg$FAILED;
1554
+ }
1555
+ } else {
1556
+ peg$currPos = s0;
1557
+ s0 = peg$FAILED;
1558
+ }
1559
+ return s0;
1560
+ }
1561
+ chunkJU4IPIOA_js.__name(peg$parseFunctionCall, "peg$parseFunctionCall");
1562
+ function peg$parseFunctionName() {
1563
+ var s0, s1, s2, s3, s4;
1564
+ s0 = peg$currPos;
1565
+ s1 = peg$currPos;
1566
+ s2 = input.charAt(peg$currPos);
1567
+ if (peg$r3.test(s2)) {
1568
+ peg$currPos++;
1569
+ } else {
1570
+ s2 = peg$FAILED;
1571
+ if (peg$silentFails === 0) {
1572
+ peg$fail(peg$e8);
1573
+ }
1574
+ }
1575
+ if (s2 !== peg$FAILED) {
1576
+ s3 = [];
1577
+ s4 = input.charAt(peg$currPos);
1578
+ if (peg$r5.test(s4)) {
1579
+ peg$currPos++;
1580
+ } else {
1581
+ s4 = peg$FAILED;
1582
+ if (peg$silentFails === 0) {
1583
+ peg$fail(peg$e14);
1584
+ }
1585
+ }
1586
+ while (s4 !== peg$FAILED) {
1587
+ s3.push(s4);
1588
+ s4 = input.charAt(peg$currPos);
1589
+ if (peg$r5.test(s4)) {
1590
+ peg$currPos++;
1591
+ } else {
1592
+ s4 = peg$FAILED;
1593
+ if (peg$silentFails === 0) {
1594
+ peg$fail(peg$e14);
1595
+ }
1596
+ }
1597
+ }
1598
+ s2 = [s2, s3];
1599
+ s1 = s2;
1600
+ } else {
1601
+ peg$currPos = s1;
1602
+ s1 = peg$FAILED;
1603
+ }
1604
+ if (s1 !== peg$FAILED) {
1605
+ s0 = input.substring(s0, peg$currPos);
1606
+ } else {
1607
+ s0 = s1;
1608
+ }
1609
+ return s0;
1610
+ }
1611
+ chunkJU4IPIOA_js.__name(peg$parseFunctionName, "peg$parseFunctionName");
1612
+ function peg$parseFunctionArgs() {
1613
+ var s0, s1, s2, s3, s4, s5, s6, s7;
1614
+ s0 = peg$currPos;
1615
+ s1 = peg$currPos;
1616
+ s2 = [];
1617
+ s3 = peg$currPos;
1618
+ s4 = peg$parseFunctionArgKeyName();
1619
+ if (s4 !== peg$FAILED) {
1620
+ if (input.charCodeAt(peg$currPos) === 61) {
1621
+ s5 = peg$c2;
1622
+ peg$currPos++;
1623
+ } else {
1624
+ s5 = peg$FAILED;
1625
+ if (peg$silentFails === 0) {
1626
+ peg$fail(peg$e2);
1627
+ }
1628
+ }
1629
+ if (s5 !== peg$FAILED) {
1630
+ s6 = peg$parseFunctionArgValue();
1631
+ if (s6 !== peg$FAILED) {
1632
+ peg$savedPos = s3;
1633
+ s3 = peg$f10(s4, s6);
1634
+ } else {
1635
+ peg$currPos = s3;
1636
+ s3 = peg$FAILED;
1637
+ }
1638
+ } else {
1639
+ peg$currPos = s3;
1640
+ s3 = peg$FAILED;
1641
+ }
1642
+ } else {
1643
+ peg$currPos = s3;
1644
+ s3 = peg$FAILED;
1645
+ }
1646
+ if (s3 === peg$FAILED) {
1647
+ s3 = peg$parseFunctionArgValue();
1648
+ }
1649
+ while (s3 !== peg$FAILED) {
1650
+ s2.push(s3);
1651
+ s3 = peg$currPos;
1652
+ s4 = peg$currPos;
1653
+ s5 = peg$parse_();
1654
+ if (input.charCodeAt(peg$currPos) === 44) {
1655
+ s6 = peg$c9;
1656
+ peg$currPos++;
1657
+ } else {
1658
+ s6 = peg$FAILED;
1659
+ if (peg$silentFails === 0) {
1660
+ peg$fail(peg$e15);
1661
+ }
1662
+ }
1663
+ if (s6 !== peg$FAILED) {
1664
+ s7 = peg$parse_();
1665
+ s5 = [s5, s6, s7];
1666
+ s4 = s5;
1667
+ } else {
1668
+ peg$currPos = s4;
1669
+ s4 = peg$FAILED;
1670
+ }
1671
+ if (s4 !== peg$FAILED) {
1672
+ s4 = peg$currPos;
1673
+ s5 = peg$parseFunctionArgKeyName();
1674
+ if (s5 !== peg$FAILED) {
1675
+ if (input.charCodeAt(peg$currPos) === 61) {
1676
+ s6 = peg$c2;
1677
+ peg$currPos++;
1678
+ } else {
1679
+ s6 = peg$FAILED;
1680
+ if (peg$silentFails === 0) {
1681
+ peg$fail(peg$e2);
1682
+ }
1683
+ }
1684
+ if (s6 !== peg$FAILED) {
1685
+ s7 = peg$parseFunctionArgValue();
1686
+ if (s7 !== peg$FAILED) {
1687
+ peg$savedPos = s4;
1688
+ s4 = peg$f10(s5, s7);
1689
+ } else {
1690
+ peg$currPos = s4;
1691
+ s4 = peg$FAILED;
1692
+ }
1693
+ } else {
1694
+ peg$currPos = s4;
1695
+ s4 = peg$FAILED;
1696
+ }
1697
+ } else {
1698
+ peg$currPos = s4;
1699
+ s4 = peg$FAILED;
1700
+ }
1701
+ if (s4 === peg$FAILED) {
1702
+ s4 = peg$parseFunctionArgValue();
1703
+ }
1704
+ if (s4 === peg$FAILED) {
1705
+ peg$currPos = s3;
1706
+ s3 = peg$FAILED;
1707
+ } else {
1708
+ s3 = s4;
1709
+ }
1710
+ } else {
1711
+ s3 = s4;
1712
+ }
1713
+ }
1714
+ if (s2.length < 1) {
1715
+ peg$currPos = s1;
1716
+ s1 = peg$FAILED;
1717
+ } else {
1718
+ s1 = s2;
1719
+ }
1720
+ if (s1 !== peg$FAILED) {
1721
+ peg$savedPos = s0;
1722
+ s1 = peg$f11(s1);
1723
+ }
1724
+ s0 = s1;
1725
+ return s0;
1726
+ }
1727
+ chunkJU4IPIOA_js.__name(peg$parseFunctionArgs, "peg$parseFunctionArgs");
1728
+ function peg$parseFunctionArgKeyName() {
1729
+ var s0, s1, s2, s3, s4;
1730
+ s0 = peg$currPos;
1731
+ s1 = peg$currPos;
1732
+ s2 = input.charAt(peg$currPos);
1733
+ if (peg$r3.test(s2)) {
1734
+ peg$currPos++;
1735
+ } else {
1736
+ s2 = peg$FAILED;
1737
+ if (peg$silentFails === 0) {
1738
+ peg$fail(peg$e8);
1739
+ }
1740
+ }
1741
+ if (s2 !== peg$FAILED) {
1742
+ s3 = [];
1743
+ s4 = input.charAt(peg$currPos);
1744
+ if (peg$r5.test(s4)) {
1745
+ peg$currPos++;
1746
+ } else {
1747
+ s4 = peg$FAILED;
1748
+ if (peg$silentFails === 0) {
1749
+ peg$fail(peg$e14);
1750
+ }
1751
+ }
1752
+ while (s4 !== peg$FAILED) {
1753
+ s3.push(s4);
1754
+ s4 = input.charAt(peg$currPos);
1755
+ if (peg$r5.test(s4)) {
1756
+ peg$currPos++;
1757
+ } else {
1758
+ s4 = peg$FAILED;
1759
+ if (peg$silentFails === 0) {
1760
+ peg$fail(peg$e14);
1761
+ }
1762
+ }
1763
+ }
1764
+ s2 = [s2, s3];
1765
+ s1 = s2;
1766
+ } else {
1767
+ peg$currPos = s1;
1768
+ s1 = peg$FAILED;
1769
+ }
1770
+ if (s1 !== peg$FAILED) {
1771
+ s0 = input.substring(s0, peg$currPos);
1772
+ } else {
1773
+ s0 = s1;
1774
+ }
1775
+ return s0;
1776
+ }
1777
+ chunkJU4IPIOA_js.__name(peg$parseFunctionArgKeyName, "peg$parseFunctionArgKeyName");
1778
+ function peg$parseFunctionArgValue() {
1779
+ var s0, s1, s2, s3;
1780
+ s0 = peg$parseFunctionCall();
1781
+ if (s0 === peg$FAILED) {
1782
+ s0 = peg$parsequotedString();
1783
+ if (s0 === peg$FAILED) {
1784
+ s0 = peg$currPos;
1785
+ s1 = peg$currPos;
1786
+ s2 = [];
1787
+ s3 = input.charAt(peg$currPos);
1788
+ if (peg$r6.test(s3)) {
1789
+ peg$currPos++;
1790
+ } else {
1791
+ s3 = peg$FAILED;
1792
+ if (peg$silentFails === 0) {
1793
+ peg$fail(peg$e16);
1794
+ }
1795
+ }
1796
+ if (s3 !== peg$FAILED) {
1797
+ while (s3 !== peg$FAILED) {
1798
+ s2.push(s3);
1799
+ s3 = input.charAt(peg$currPos);
1800
+ if (peg$r6.test(s3)) {
1801
+ peg$currPos++;
1802
+ } else {
1803
+ s3 = peg$FAILED;
1804
+ if (peg$silentFails === 0) {
1805
+ peg$fail(peg$e16);
1806
+ }
1807
+ }
1808
+ }
1809
+ } else {
1810
+ s2 = peg$FAILED;
1811
+ }
1812
+ if (s2 !== peg$FAILED) {
1813
+ s1 = input.substring(s1, peg$currPos);
1814
+ } else {
1815
+ s1 = s2;
1816
+ }
1817
+ if (s1 !== peg$FAILED) {
1818
+ peg$savedPos = s0;
1819
+ s1 = peg$f12();
1820
+ }
1821
+ s0 = s1;
1822
+ }
1823
+ }
1824
+ return s0;
1825
+ }
1826
+ chunkJU4IPIOA_js.__name(peg$parseFunctionArgValue, "peg$parseFunctionArgValue");
1827
+ function peg$parseDivider() {
1828
+ var s0, s1, s2, s3, s4, s5, s6, s7;
1829
+ s0 = peg$currPos;
1830
+ if (input.charCodeAt(peg$currPos) === 35) {
1831
+ s1 = peg$c3;
1832
+ peg$currPos++;
1833
+ } else {
1834
+ s1 = peg$FAILED;
1835
+ if (peg$silentFails === 0) {
1836
+ peg$fail(peg$e5);
1837
+ }
1838
+ }
1839
+ if (s1 !== peg$FAILED) {
1840
+ s2 = peg$currPos;
1841
+ s3 = peg$parse_();
1842
+ s2 = input.substring(s2, peg$currPos);
1843
+ s3 = peg$currPos;
1844
+ s4 = peg$currPos;
1845
+ s5 = peg$currPos;
1846
+ s6 = [];
1847
+ s7 = input.charAt(peg$currPos);
1848
+ if (peg$r7.test(s7)) {
1849
+ peg$currPos++;
1850
+ } else {
1851
+ s7 = peg$FAILED;
1852
+ if (peg$silentFails === 0) {
1853
+ peg$fail(peg$e17);
1854
+ }
1855
+ }
1856
+ while (s7 !== peg$FAILED) {
1857
+ s6.push(s7);
1858
+ s7 = input.charAt(peg$currPos);
1859
+ if (peg$r7.test(s7)) {
1860
+ peg$currPos++;
1861
+ } else {
1862
+ s7 = peg$FAILED;
1863
+ if (peg$silentFails === 0) {
1864
+ peg$fail(peg$e17);
1865
+ }
1866
+ }
1867
+ }
1868
+ if (s6.length < 3) {
1869
+ peg$currPos = s5;
1870
+ s5 = peg$FAILED;
1871
+ } else {
1872
+ s5 = s6;
1873
+ }
1874
+ if (s5 !== peg$FAILED) {
1875
+ s6 = [];
1876
+ s7 = input.charAt(peg$currPos);
1877
+ if (peg$r2.test(s7)) {
1878
+ peg$currPos++;
1879
+ } else {
1880
+ s7 = peg$FAILED;
1881
+ if (peg$silentFails === 0) {
1882
+ peg$fail(peg$e7);
1883
+ }
1884
+ }
1885
+ while (s7 !== peg$FAILED) {
1886
+ s6.push(s7);
1887
+ s7 = input.charAt(peg$currPos);
1888
+ if (peg$r2.test(s7)) {
1889
+ peg$currPos++;
1890
+ } else {
1891
+ s7 = peg$FAILED;
1892
+ if (peg$silentFails === 0) {
1893
+ peg$fail(peg$e7);
1894
+ }
1895
+ }
1896
+ }
1897
+ s5 = [s5, s6];
1898
+ s4 = s5;
1899
+ } else {
1900
+ peg$currPos = s4;
1901
+ s4 = peg$FAILED;
1902
+ }
1903
+ if (s4 !== peg$FAILED) {
1904
+ s3 = input.substring(s3, peg$currPos);
1905
+ } else {
1906
+ s3 = s4;
1907
+ }
1908
+ if (s3 !== peg$FAILED) {
1909
+ s4 = peg$parse_n();
1910
+ if (s4 !== peg$FAILED) {
1911
+ peg$savedPos = s0;
1912
+ s0 = peg$f13(s2, s3);
1913
+ } else {
1914
+ peg$currPos = s0;
1915
+ s0 = peg$FAILED;
1916
+ }
1917
+ } else {
1918
+ peg$currPos = s0;
1919
+ s0 = peg$FAILED;
1920
+ }
1921
+ } else {
1922
+ peg$currPos = s0;
1923
+ s0 = peg$FAILED;
1924
+ }
1925
+ return s0;
1926
+ }
1927
+ chunkJU4IPIOA_js.__name(peg$parseDivider, "peg$parseDivider");
1928
+ function peg$parseunquotedString() {
1929
+ var s0, s1, s2, s3, s4, s5, s6;
1930
+ s0 = peg$currPos;
1931
+ s1 = peg$currPos;
1932
+ s2 = peg$currPos;
1933
+ s3 = peg$parse_();
1934
+ s4 = peg$currPos;
1935
+ peg$silentFails++;
1936
+ s5 = input.charAt(peg$currPos);
1937
+ if (peg$r8.test(s5)) {
1938
+ peg$currPos++;
1939
+ } else {
1940
+ s5 = peg$FAILED;
1941
+ if (peg$silentFails === 0) {
1942
+ peg$fail(peg$e18);
1943
+ }
1944
+ }
1945
+ peg$silentFails--;
1946
+ if (s5 === peg$FAILED) {
1947
+ s4 = void 0;
1948
+ } else {
1949
+ peg$currPos = s4;
1950
+ s4 = peg$FAILED;
1951
+ }
1952
+ if (s4 !== peg$FAILED) {
1953
+ s5 = [];
1954
+ s6 = input.charAt(peg$currPos);
1955
+ if (peg$r9.test(s6)) {
1956
+ peg$currPos++;
1957
+ } else {
1958
+ s6 = peg$FAILED;
1959
+ if (peg$silentFails === 0) {
1960
+ peg$fail(peg$e19);
1961
+ }
1962
+ }
1963
+ if (s6 !== peg$FAILED) {
1964
+ while (s6 !== peg$FAILED) {
1965
+ s5.push(s6);
1966
+ s6 = input.charAt(peg$currPos);
1967
+ if (peg$r9.test(s6)) {
1968
+ peg$currPos++;
1969
+ } else {
1970
+ s6 = peg$FAILED;
1971
+ if (peg$silentFails === 0) {
1972
+ peg$fail(peg$e19);
1973
+ }
1974
+ }
1975
+ }
1976
+ } else {
1977
+ s5 = peg$FAILED;
1978
+ }
1979
+ if (s5 !== peg$FAILED) {
1980
+ s3 = [s3, s4, s5];
1981
+ s2 = s3;
1982
+ } else {
1983
+ peg$currPos = s2;
1984
+ s2 = peg$FAILED;
1985
+ }
1986
+ } else {
1987
+ peg$currPos = s2;
1988
+ s2 = peg$FAILED;
1989
+ }
1990
+ if (s2 !== peg$FAILED) {
1991
+ s1 = input.substring(s1, peg$currPos);
1992
+ } else {
1993
+ s1 = s2;
1994
+ }
1995
+ if (s1 !== peg$FAILED) {
1996
+ peg$savedPos = s0;
1997
+ s1 = peg$f14();
1998
+ }
1999
+ s0 = s1;
2000
+ return s0;
2001
+ }
2002
+ chunkJU4IPIOA_js.__name(peg$parseunquotedString, "peg$parseunquotedString");
2003
+ function peg$parseunquotedStringWithoutSpaces() {
2004
+ var s0, s1, s2, s3, s4, s5;
2005
+ s0 = peg$currPos;
2006
+ s1 = peg$currPos;
2007
+ s2 = peg$currPos;
2008
+ s3 = peg$currPos;
2009
+ peg$silentFails++;
2010
+ s4 = input.charAt(peg$currPos);
2011
+ if (peg$r8.test(s4)) {
2012
+ peg$currPos++;
2013
+ } else {
2014
+ s4 = peg$FAILED;
2015
+ if (peg$silentFails === 0) {
2016
+ peg$fail(peg$e18);
2017
+ }
2018
+ }
2019
+ peg$silentFails--;
2020
+ if (s4 === peg$FAILED) {
2021
+ s3 = void 0;
2022
+ } else {
2023
+ peg$currPos = s3;
2024
+ s3 = peg$FAILED;
2025
+ }
2026
+ if (s3 !== peg$FAILED) {
2027
+ s4 = [];
2028
+ s5 = input.charAt(peg$currPos);
2029
+ if (peg$r10.test(s5)) {
2030
+ peg$currPos++;
2031
+ } else {
2032
+ s5 = peg$FAILED;
2033
+ if (peg$silentFails === 0) {
2034
+ peg$fail(peg$e20);
2035
+ }
2036
+ }
2037
+ if (s5 !== peg$FAILED) {
2038
+ while (s5 !== peg$FAILED) {
2039
+ s4.push(s5);
2040
+ s5 = input.charAt(peg$currPos);
2041
+ if (peg$r10.test(s5)) {
2042
+ peg$currPos++;
2043
+ } else {
2044
+ s5 = peg$FAILED;
2045
+ if (peg$silentFails === 0) {
2046
+ peg$fail(peg$e20);
2047
+ }
2048
+ }
2049
+ }
2050
+ } else {
2051
+ s4 = peg$FAILED;
2052
+ }
2053
+ if (s4 !== peg$FAILED) {
2054
+ s3 = [s3, s4];
2055
+ s2 = s3;
2056
+ } else {
2057
+ peg$currPos = s2;
2058
+ s2 = peg$FAILED;
2059
+ }
2060
+ } else {
2061
+ peg$currPos = s2;
2062
+ s2 = peg$FAILED;
2063
+ }
2064
+ if (s2 !== peg$FAILED) {
2065
+ s1 = input.substring(s1, peg$currPos);
2066
+ } else {
2067
+ s1 = s2;
2068
+ }
2069
+ if (s1 !== peg$FAILED) {
2070
+ peg$savedPos = s0;
2071
+ s1 = peg$f15();
2072
+ }
2073
+ s0 = s1;
2074
+ return s0;
2075
+ }
2076
+ chunkJU4IPIOA_js.__name(peg$parseunquotedStringWithoutSpaces, "peg$parseunquotedStringWithoutSpaces");
2077
+ function peg$parsequotedString() {
2078
+ var s0;
2079
+ s0 = peg$parseDQuotedString();
2080
+ if (s0 === peg$FAILED) {
2081
+ s0 = peg$parseSQuotedString();
2082
+ if (s0 === peg$FAILED) {
2083
+ s0 = peg$parseBQuotedString();
2084
+ }
2085
+ }
2086
+ return s0;
2087
+ }
2088
+ chunkJU4IPIOA_js.__name(peg$parsequotedString, "peg$parsequotedString");
2089
+ function peg$parseDQuotedString() {
2090
+ var s0, s1, s2, s3;
2091
+ s0 = peg$currPos;
2092
+ s1 = input.charAt(peg$currPos);
2093
+ if (peg$r11.test(s1)) {
2094
+ peg$currPos++;
2095
+ } else {
2096
+ s1 = peg$FAILED;
2097
+ if (peg$silentFails === 0) {
2098
+ peg$fail(peg$e21);
2099
+ }
2100
+ }
2101
+ if (s1 !== peg$FAILED) {
2102
+ s2 = [];
2103
+ if (input.substr(peg$currPos, 2) === peg$c10) {
2104
+ s3 = peg$c10;
2105
+ peg$currPos += 2;
2106
+ } else {
2107
+ s3 = peg$FAILED;
2108
+ if (peg$silentFails === 0) {
2109
+ peg$fail(peg$e22);
2110
+ }
2111
+ }
2112
+ if (s3 === peg$FAILED) {
2113
+ s3 = input.charAt(peg$currPos);
2114
+ if (peg$r12.test(s3)) {
2115
+ peg$currPos++;
2116
+ } else {
2117
+ s3 = peg$FAILED;
2118
+ if (peg$silentFails === 0) {
2119
+ peg$fail(peg$e23);
2120
+ }
2121
+ }
2122
+ }
2123
+ while (s3 !== peg$FAILED) {
2124
+ s2.push(s3);
2125
+ if (input.substr(peg$currPos, 2) === peg$c10) {
2126
+ s3 = peg$c10;
2127
+ peg$currPos += 2;
2128
+ } else {
2129
+ s3 = peg$FAILED;
2130
+ if (peg$silentFails === 0) {
2131
+ peg$fail(peg$e22);
2132
+ }
2133
+ }
2134
+ if (s3 === peg$FAILED) {
2135
+ s3 = input.charAt(peg$currPos);
2136
+ if (peg$r12.test(s3)) {
2137
+ peg$currPos++;
2138
+ } else {
2139
+ s3 = peg$FAILED;
2140
+ if (peg$silentFails === 0) {
2141
+ peg$fail(peg$e23);
2142
+ }
2143
+ }
2144
+ }
2145
+ }
2146
+ s3 = input.charAt(peg$currPos);
2147
+ if (peg$r11.test(s3)) {
2148
+ peg$currPos++;
2149
+ } else {
2150
+ s3 = peg$FAILED;
2151
+ if (peg$silentFails === 0) {
2152
+ peg$fail(peg$e21);
2153
+ }
2154
+ }
2155
+ if (s3 !== peg$FAILED) {
2156
+ peg$savedPos = s0;
2157
+ s0 = peg$f16(s1);
2158
+ } else {
2159
+ peg$currPos = s0;
2160
+ s0 = peg$FAILED;
2161
+ }
2162
+ } else {
2163
+ peg$currPos = s0;
2164
+ s0 = peg$FAILED;
2165
+ }
2166
+ return s0;
2167
+ }
2168
+ chunkJU4IPIOA_js.__name(peg$parseDQuotedString, "peg$parseDQuotedString");
2169
+ function peg$parseSQuotedString() {
2170
+ var s0, s1, s2, s3;
2171
+ s0 = peg$currPos;
2172
+ s1 = input.charAt(peg$currPos);
2173
+ if (peg$r13.test(s1)) {
2174
+ peg$currPos++;
2175
+ } else {
2176
+ s1 = peg$FAILED;
2177
+ if (peg$silentFails === 0) {
2178
+ peg$fail(peg$e24);
2179
+ }
2180
+ }
2181
+ if (s1 !== peg$FAILED) {
2182
+ s2 = [];
2183
+ if (input.substr(peg$currPos, 2) === peg$c11) {
2184
+ s3 = peg$c11;
2185
+ peg$currPos += 2;
2186
+ } else {
2187
+ s3 = peg$FAILED;
2188
+ if (peg$silentFails === 0) {
2189
+ peg$fail(peg$e25);
2190
+ }
2191
+ }
2192
+ if (s3 === peg$FAILED) {
2193
+ s3 = input.charAt(peg$currPos);
2194
+ if (peg$r14.test(s3)) {
2195
+ peg$currPos++;
2196
+ } else {
2197
+ s3 = peg$FAILED;
2198
+ if (peg$silentFails === 0) {
2199
+ peg$fail(peg$e26);
2200
+ }
2201
+ }
2202
+ }
2203
+ while (s3 !== peg$FAILED) {
2204
+ s2.push(s3);
2205
+ if (input.substr(peg$currPos, 2) === peg$c11) {
2206
+ s3 = peg$c11;
2207
+ peg$currPos += 2;
2208
+ } else {
2209
+ s3 = peg$FAILED;
2210
+ if (peg$silentFails === 0) {
2211
+ peg$fail(peg$e25);
2212
+ }
2213
+ }
2214
+ if (s3 === peg$FAILED) {
2215
+ s3 = input.charAt(peg$currPos);
2216
+ if (peg$r14.test(s3)) {
2217
+ peg$currPos++;
2218
+ } else {
2219
+ s3 = peg$FAILED;
2220
+ if (peg$silentFails === 0) {
2221
+ peg$fail(peg$e26);
2222
+ }
2223
+ }
2224
+ }
2225
+ }
2226
+ s3 = input.charAt(peg$currPos);
2227
+ if (peg$r13.test(s3)) {
2228
+ peg$currPos++;
2229
+ } else {
2230
+ s3 = peg$FAILED;
2231
+ if (peg$silentFails === 0) {
2232
+ peg$fail(peg$e24);
2233
+ }
2234
+ }
2235
+ if (s3 !== peg$FAILED) {
2236
+ peg$savedPos = s0;
2237
+ s0 = peg$f17(s1);
2238
+ } else {
2239
+ peg$currPos = s0;
2240
+ s0 = peg$FAILED;
2241
+ }
2242
+ } else {
2243
+ peg$currPos = s0;
2244
+ s0 = peg$FAILED;
2245
+ }
2246
+ return s0;
2247
+ }
2248
+ chunkJU4IPIOA_js.__name(peg$parseSQuotedString, "peg$parseSQuotedString");
2249
+ function peg$parseBQuotedString() {
2250
+ var s0, s1, s2, s3;
2251
+ s0 = peg$currPos;
2252
+ s1 = input.charAt(peg$currPos);
2253
+ if (peg$r15.test(s1)) {
2254
+ peg$currPos++;
2255
+ } else {
2256
+ s1 = peg$FAILED;
2257
+ if (peg$silentFails === 0) {
2258
+ peg$fail(peg$e27);
2259
+ }
2260
+ }
2261
+ if (s1 !== peg$FAILED) {
2262
+ s2 = [];
2263
+ if (input.substr(peg$currPos, 2) === peg$c12) {
2264
+ s3 = peg$c12;
2265
+ peg$currPos += 2;
2266
+ } else {
2267
+ s3 = peg$FAILED;
2268
+ if (peg$silentFails === 0) {
2269
+ peg$fail(peg$e28);
2270
+ }
2271
+ }
2272
+ if (s3 === peg$FAILED) {
2273
+ s3 = input.charAt(peg$currPos);
2274
+ if (peg$r16.test(s3)) {
2275
+ peg$currPos++;
2276
+ } else {
2277
+ s3 = peg$FAILED;
2278
+ if (peg$silentFails === 0) {
2279
+ peg$fail(peg$e29);
2280
+ }
2281
+ }
2282
+ }
2283
+ while (s3 !== peg$FAILED) {
2284
+ s2.push(s3);
2285
+ if (input.substr(peg$currPos, 2) === peg$c12) {
2286
+ s3 = peg$c12;
2287
+ peg$currPos += 2;
2288
+ } else {
2289
+ s3 = peg$FAILED;
2290
+ if (peg$silentFails === 0) {
2291
+ peg$fail(peg$e28);
2292
+ }
2293
+ }
2294
+ if (s3 === peg$FAILED) {
2295
+ s3 = input.charAt(peg$currPos);
2296
+ if (peg$r16.test(s3)) {
2297
+ peg$currPos++;
2298
+ } else {
2299
+ s3 = peg$FAILED;
2300
+ if (peg$silentFails === 0) {
2301
+ peg$fail(peg$e29);
2302
+ }
2303
+ }
2304
+ }
2305
+ }
2306
+ s3 = input.charAt(peg$currPos);
2307
+ if (peg$r15.test(s3)) {
2308
+ peg$currPos++;
2309
+ } else {
2310
+ s3 = peg$FAILED;
2311
+ if (peg$silentFails === 0) {
2312
+ peg$fail(peg$e27);
2313
+ }
2314
+ }
2315
+ if (s3 !== peg$FAILED) {
2316
+ peg$savedPos = s0;
2317
+ s0 = peg$f18(s1);
2318
+ } else {
2319
+ peg$currPos = s0;
2320
+ s0 = peg$FAILED;
2321
+ }
2322
+ } else {
2323
+ peg$currPos = s0;
2324
+ s0 = peg$FAILED;
2325
+ }
2326
+ return s0;
2327
+ }
2328
+ chunkJU4IPIOA_js.__name(peg$parseBQuotedString, "peg$parseBQuotedString");
2329
+ function peg$parsemultiLineString() {
2330
+ var s0;
2331
+ s0 = peg$parsesingleSQuotedMultiLineString();
2332
+ if (s0 === peg$FAILED) {
2333
+ s0 = peg$parsesingleDQuotedMultiLineString();
2334
+ if (s0 === peg$FAILED) {
2335
+ s0 = peg$parsetripleDQuotedMultiLineString();
2336
+ if (s0 === peg$FAILED) {
2337
+ s0 = peg$parsetripleBQuotedMultiLineString();
2338
+ }
2339
+ }
2340
+ }
2341
+ return s0;
2342
+ }
2343
+ chunkJU4IPIOA_js.__name(peg$parsemultiLineString, "peg$parsemultiLineString");
2344
+ function peg$parsesingleSQuotedMultiLineString() {
2345
+ var s0, s1, s2, s3, s4, s5;
2346
+ s0 = peg$currPos;
2347
+ s1 = input.charAt(peg$currPos);
2348
+ if (peg$r13.test(s1)) {
2349
+ peg$currPos++;
2350
+ } else {
2351
+ s1 = peg$FAILED;
2352
+ if (peg$silentFails === 0) {
2353
+ peg$fail(peg$e24);
2354
+ }
2355
+ }
2356
+ if (s1 !== peg$FAILED) {
2357
+ s2 = [];
2358
+ s3 = peg$currPos;
2359
+ s4 = [];
2360
+ if (input.substr(peg$currPos, 2) === peg$c11) {
2361
+ s5 = peg$c11;
2362
+ peg$currPos += 2;
2363
+ } else {
2364
+ s5 = peg$FAILED;
2365
+ if (peg$silentFails === 0) {
2366
+ peg$fail(peg$e25);
2367
+ }
2368
+ }
2369
+ if (s5 === peg$FAILED) {
2370
+ s5 = input.charAt(peg$currPos);
2371
+ if (peg$r14.test(s5)) {
2372
+ peg$currPos++;
2373
+ } else {
2374
+ s5 = peg$FAILED;
2375
+ if (peg$silentFails === 0) {
2376
+ peg$fail(peg$e26);
2377
+ }
2378
+ }
2379
+ }
2380
+ while (s5 !== peg$FAILED) {
2381
+ s4.push(s5);
2382
+ if (input.substr(peg$currPos, 2) === peg$c11) {
2383
+ s5 = peg$c11;
2384
+ peg$currPos += 2;
2385
+ } else {
2386
+ s5 = peg$FAILED;
2387
+ if (peg$silentFails === 0) {
2388
+ peg$fail(peg$e25);
2389
+ }
2390
+ }
2391
+ if (s5 === peg$FAILED) {
2392
+ s5 = input.charAt(peg$currPos);
2393
+ if (peg$r14.test(s5)) {
2394
+ peg$currPos++;
2395
+ } else {
2396
+ s5 = peg$FAILED;
2397
+ if (peg$silentFails === 0) {
2398
+ peg$fail(peg$e26);
2399
+ }
2400
+ }
2401
+ }
2402
+ }
2403
+ if (input.charCodeAt(peg$currPos) === 10) {
2404
+ s5 = peg$c0;
2405
+ peg$currPos++;
2406
+ } else {
2407
+ s5 = peg$FAILED;
2408
+ if (peg$silentFails === 0) {
2409
+ peg$fail(peg$e0);
2410
+ }
2411
+ }
2412
+ if (s5 !== peg$FAILED) {
2413
+ s4 = [s4, s5];
2414
+ s3 = s4;
2415
+ } else {
2416
+ peg$currPos = s3;
2417
+ s3 = peg$FAILED;
2418
+ }
2419
+ if (s3 !== peg$FAILED) {
2420
+ while (s3 !== peg$FAILED) {
2421
+ s2.push(s3);
2422
+ s3 = peg$currPos;
2423
+ s4 = [];
2424
+ if (input.substr(peg$currPos, 2) === peg$c11) {
2425
+ s5 = peg$c11;
2426
+ peg$currPos += 2;
2427
+ } else {
2428
+ s5 = peg$FAILED;
2429
+ if (peg$silentFails === 0) {
2430
+ peg$fail(peg$e25);
2431
+ }
2432
+ }
2433
+ if (s5 === peg$FAILED) {
2434
+ s5 = input.charAt(peg$currPos);
2435
+ if (peg$r14.test(s5)) {
2436
+ peg$currPos++;
2437
+ } else {
2438
+ s5 = peg$FAILED;
2439
+ if (peg$silentFails === 0) {
2440
+ peg$fail(peg$e26);
2441
+ }
2442
+ }
2443
+ }
2444
+ while (s5 !== peg$FAILED) {
2445
+ s4.push(s5);
2446
+ if (input.substr(peg$currPos, 2) === peg$c11) {
2447
+ s5 = peg$c11;
2448
+ peg$currPos += 2;
2449
+ } else {
2450
+ s5 = peg$FAILED;
2451
+ if (peg$silentFails === 0) {
2452
+ peg$fail(peg$e25);
2453
+ }
2454
+ }
2455
+ if (s5 === peg$FAILED) {
2456
+ s5 = input.charAt(peg$currPos);
2457
+ if (peg$r14.test(s5)) {
2458
+ peg$currPos++;
2459
+ } else {
2460
+ s5 = peg$FAILED;
2461
+ if (peg$silentFails === 0) {
2462
+ peg$fail(peg$e26);
2463
+ }
2464
+ }
2465
+ }
2466
+ }
2467
+ if (input.charCodeAt(peg$currPos) === 10) {
2468
+ s5 = peg$c0;
2469
+ peg$currPos++;
2470
+ } else {
2471
+ s5 = peg$FAILED;
2472
+ if (peg$silentFails === 0) {
2473
+ peg$fail(peg$e0);
2474
+ }
2475
+ }
2476
+ if (s5 !== peg$FAILED) {
2477
+ s4 = [s4, s5];
2478
+ s3 = s4;
2479
+ } else {
2480
+ peg$currPos = s3;
2481
+ s3 = peg$FAILED;
2482
+ }
2483
+ }
2484
+ } else {
2485
+ s2 = peg$FAILED;
2486
+ }
2487
+ if (s2 !== peg$FAILED) {
2488
+ s3 = [];
2489
+ if (input.substr(peg$currPos, 2) === peg$c11) {
2490
+ s4 = peg$c11;
2491
+ peg$currPos += 2;
2492
+ } else {
2493
+ s4 = peg$FAILED;
2494
+ if (peg$silentFails === 0) {
2495
+ peg$fail(peg$e25);
2496
+ }
2497
+ }
2498
+ if (s4 === peg$FAILED) {
2499
+ s4 = input.charAt(peg$currPos);
2500
+ if (peg$r14.test(s4)) {
2501
+ peg$currPos++;
2502
+ } else {
2503
+ s4 = peg$FAILED;
2504
+ if (peg$silentFails === 0) {
2505
+ peg$fail(peg$e26);
2506
+ }
2507
+ }
2508
+ }
2509
+ while (s4 !== peg$FAILED) {
2510
+ s3.push(s4);
2511
+ if (input.substr(peg$currPos, 2) === peg$c11) {
2512
+ s4 = peg$c11;
2513
+ peg$currPos += 2;
2514
+ } else {
2515
+ s4 = peg$FAILED;
2516
+ if (peg$silentFails === 0) {
2517
+ peg$fail(peg$e25);
2518
+ }
2519
+ }
2520
+ if (s4 === peg$FAILED) {
2521
+ s4 = input.charAt(peg$currPos);
2522
+ if (peg$r14.test(s4)) {
2523
+ peg$currPos++;
2524
+ } else {
2525
+ s4 = peg$FAILED;
2526
+ if (peg$silentFails === 0) {
2527
+ peg$fail(peg$e26);
2528
+ }
2529
+ }
2530
+ }
2531
+ }
2532
+ s4 = input.charAt(peg$currPos);
2533
+ if (peg$r13.test(s4)) {
2534
+ peg$currPos++;
2535
+ } else {
2536
+ s4 = peg$FAILED;
2537
+ if (peg$silentFails === 0) {
2538
+ peg$fail(peg$e24);
2539
+ }
2540
+ }
2541
+ if (s4 !== peg$FAILED) {
2542
+ peg$savedPos = s0;
2543
+ s0 = peg$f19(s1);
2544
+ } else {
2545
+ peg$currPos = s0;
2546
+ s0 = peg$FAILED;
2547
+ }
2548
+ } else {
2549
+ peg$currPos = s0;
2550
+ s0 = peg$FAILED;
2551
+ }
2552
+ } else {
2553
+ peg$currPos = s0;
2554
+ s0 = peg$FAILED;
2555
+ }
2556
+ return s0;
2557
+ }
2558
+ chunkJU4IPIOA_js.__name(peg$parsesingleSQuotedMultiLineString, "peg$parsesingleSQuotedMultiLineString");
2559
+ function peg$parsesingleDQuotedMultiLineString() {
2560
+ var s0, s1, s2, s3, s4, s5;
2561
+ s0 = peg$currPos;
2562
+ s1 = input.charAt(peg$currPos);
2563
+ if (peg$r11.test(s1)) {
2564
+ peg$currPos++;
2565
+ } else {
2566
+ s1 = peg$FAILED;
2567
+ if (peg$silentFails === 0) {
2568
+ peg$fail(peg$e21);
2569
+ }
2570
+ }
2571
+ if (s1 !== peg$FAILED) {
2572
+ s2 = [];
2573
+ s3 = peg$currPos;
2574
+ s4 = [];
2575
+ if (input.substr(peg$currPos, 2) === peg$c10) {
2576
+ s5 = peg$c10;
2577
+ peg$currPos += 2;
2578
+ } else {
2579
+ s5 = peg$FAILED;
2580
+ if (peg$silentFails === 0) {
2581
+ peg$fail(peg$e22);
2582
+ }
2583
+ }
2584
+ if (s5 === peg$FAILED) {
2585
+ s5 = input.charAt(peg$currPos);
2586
+ if (peg$r12.test(s5)) {
2587
+ peg$currPos++;
2588
+ } else {
2589
+ s5 = peg$FAILED;
2590
+ if (peg$silentFails === 0) {
2591
+ peg$fail(peg$e23);
2592
+ }
2593
+ }
2594
+ }
2595
+ while (s5 !== peg$FAILED) {
2596
+ s4.push(s5);
2597
+ if (input.substr(peg$currPos, 2) === peg$c10) {
2598
+ s5 = peg$c10;
2599
+ peg$currPos += 2;
2600
+ } else {
2601
+ s5 = peg$FAILED;
2602
+ if (peg$silentFails === 0) {
2603
+ peg$fail(peg$e22);
2604
+ }
2605
+ }
2606
+ if (s5 === peg$FAILED) {
2607
+ s5 = input.charAt(peg$currPos);
2608
+ if (peg$r12.test(s5)) {
2609
+ peg$currPos++;
2610
+ } else {
2611
+ s5 = peg$FAILED;
2612
+ if (peg$silentFails === 0) {
2613
+ peg$fail(peg$e23);
2614
+ }
2615
+ }
2616
+ }
2617
+ }
2618
+ if (input.charCodeAt(peg$currPos) === 10) {
2619
+ s5 = peg$c0;
2620
+ peg$currPos++;
2621
+ } else {
2622
+ s5 = peg$FAILED;
2623
+ if (peg$silentFails === 0) {
2624
+ peg$fail(peg$e0);
2625
+ }
2626
+ }
2627
+ if (s5 !== peg$FAILED) {
2628
+ s4 = [s4, s5];
2629
+ s3 = s4;
2630
+ } else {
2631
+ peg$currPos = s3;
2632
+ s3 = peg$FAILED;
2633
+ }
2634
+ if (s3 !== peg$FAILED) {
2635
+ while (s3 !== peg$FAILED) {
2636
+ s2.push(s3);
2637
+ s3 = peg$currPos;
2638
+ s4 = [];
2639
+ if (input.substr(peg$currPos, 2) === peg$c10) {
2640
+ s5 = peg$c10;
2641
+ peg$currPos += 2;
2642
+ } else {
2643
+ s5 = peg$FAILED;
2644
+ if (peg$silentFails === 0) {
2645
+ peg$fail(peg$e22);
2646
+ }
2647
+ }
2648
+ if (s5 === peg$FAILED) {
2649
+ s5 = input.charAt(peg$currPos);
2650
+ if (peg$r12.test(s5)) {
2651
+ peg$currPos++;
2652
+ } else {
2653
+ s5 = peg$FAILED;
2654
+ if (peg$silentFails === 0) {
2655
+ peg$fail(peg$e23);
2656
+ }
2657
+ }
2658
+ }
2659
+ while (s5 !== peg$FAILED) {
2660
+ s4.push(s5);
2661
+ if (input.substr(peg$currPos, 2) === peg$c10) {
2662
+ s5 = peg$c10;
2663
+ peg$currPos += 2;
2664
+ } else {
2665
+ s5 = peg$FAILED;
2666
+ if (peg$silentFails === 0) {
2667
+ peg$fail(peg$e22);
2668
+ }
2669
+ }
2670
+ if (s5 === peg$FAILED) {
2671
+ s5 = input.charAt(peg$currPos);
2672
+ if (peg$r12.test(s5)) {
2673
+ peg$currPos++;
2674
+ } else {
2675
+ s5 = peg$FAILED;
2676
+ if (peg$silentFails === 0) {
2677
+ peg$fail(peg$e23);
2678
+ }
2679
+ }
2680
+ }
2681
+ }
2682
+ if (input.charCodeAt(peg$currPos) === 10) {
2683
+ s5 = peg$c0;
2684
+ peg$currPos++;
2685
+ } else {
2686
+ s5 = peg$FAILED;
2687
+ if (peg$silentFails === 0) {
2688
+ peg$fail(peg$e0);
2689
+ }
2690
+ }
2691
+ if (s5 !== peg$FAILED) {
2692
+ s4 = [s4, s5];
2693
+ s3 = s4;
2694
+ } else {
2695
+ peg$currPos = s3;
2696
+ s3 = peg$FAILED;
2697
+ }
2698
+ }
2699
+ } else {
2700
+ s2 = peg$FAILED;
2701
+ }
2702
+ if (s2 !== peg$FAILED) {
2703
+ s3 = [];
2704
+ if (input.substr(peg$currPos, 2) === peg$c10) {
2705
+ s4 = peg$c10;
2706
+ peg$currPos += 2;
2707
+ } else {
2708
+ s4 = peg$FAILED;
2709
+ if (peg$silentFails === 0) {
2710
+ peg$fail(peg$e22);
2711
+ }
2712
+ }
2713
+ if (s4 === peg$FAILED) {
2714
+ s4 = input.charAt(peg$currPos);
2715
+ if (peg$r12.test(s4)) {
2716
+ peg$currPos++;
2717
+ } else {
2718
+ s4 = peg$FAILED;
2719
+ if (peg$silentFails === 0) {
2720
+ peg$fail(peg$e23);
2721
+ }
2722
+ }
2723
+ }
2724
+ while (s4 !== peg$FAILED) {
2725
+ s3.push(s4);
2726
+ if (input.substr(peg$currPos, 2) === peg$c10) {
2727
+ s4 = peg$c10;
2728
+ peg$currPos += 2;
2729
+ } else {
2730
+ s4 = peg$FAILED;
2731
+ if (peg$silentFails === 0) {
2732
+ peg$fail(peg$e22);
2733
+ }
2734
+ }
2735
+ if (s4 === peg$FAILED) {
2736
+ s4 = input.charAt(peg$currPos);
2737
+ if (peg$r12.test(s4)) {
2738
+ peg$currPos++;
2739
+ } else {
2740
+ s4 = peg$FAILED;
2741
+ if (peg$silentFails === 0) {
2742
+ peg$fail(peg$e23);
2743
+ }
2744
+ }
2745
+ }
2746
+ }
2747
+ s4 = input.charAt(peg$currPos);
2748
+ if (peg$r11.test(s4)) {
2749
+ peg$currPos++;
2750
+ } else {
2751
+ s4 = peg$FAILED;
2752
+ if (peg$silentFails === 0) {
2753
+ peg$fail(peg$e21);
2754
+ }
2755
+ }
2756
+ if (s4 !== peg$FAILED) {
2757
+ peg$savedPos = s0;
2758
+ s0 = peg$f20(s1);
2759
+ } else {
2760
+ peg$currPos = s0;
2761
+ s0 = peg$FAILED;
2762
+ }
2763
+ } else {
2764
+ peg$currPos = s0;
2765
+ s0 = peg$FAILED;
2766
+ }
2767
+ } else {
2768
+ peg$currPos = s0;
2769
+ s0 = peg$FAILED;
2770
+ }
2771
+ return s0;
2772
+ }
2773
+ chunkJU4IPIOA_js.__name(peg$parsesingleDQuotedMultiLineString, "peg$parsesingleDQuotedMultiLineString");
2774
+ function peg$parsetripleDQuotedMultiLineString() {
2775
+ var s0, s1, s2, s3, s4, s5, s6, s7;
2776
+ s0 = peg$currPos;
2777
+ if (input.substr(peg$currPos, 3) === peg$c13) {
2778
+ s1 = peg$c13;
2779
+ peg$currPos += 3;
2780
+ } else {
2781
+ s1 = peg$FAILED;
2782
+ if (peg$silentFails === 0) {
2783
+ peg$fail(peg$e30);
2784
+ }
2785
+ }
2786
+ if (s1 !== peg$FAILED) {
2787
+ s2 = [];
2788
+ s3 = peg$currPos;
2789
+ s4 = [];
2790
+ if (input.substr(peg$currPos, 4) === peg$c14) {
2791
+ s5 = peg$c14;
2792
+ peg$currPos += 4;
2793
+ } else {
2794
+ s5 = peg$FAILED;
2795
+ if (peg$silentFails === 0) {
2796
+ peg$fail(peg$e31);
2797
+ }
2798
+ }
2799
+ if (s5 === peg$FAILED) {
2800
+ s5 = peg$currPos;
2801
+ s6 = peg$currPos;
2802
+ peg$silentFails++;
2803
+ if (input.substr(peg$currPos, 3) === peg$c13) {
2804
+ s7 = peg$c13;
2805
+ peg$currPos += 3;
2806
+ } else {
2807
+ s7 = peg$FAILED;
2808
+ if (peg$silentFails === 0) {
2809
+ peg$fail(peg$e30);
2810
+ }
2811
+ }
2812
+ peg$silentFails--;
2813
+ if (s7 === peg$FAILED) {
2814
+ s6 = void 0;
2815
+ } else {
2816
+ peg$currPos = s6;
2817
+ s6 = peg$FAILED;
2818
+ }
2819
+ if (s6 !== peg$FAILED) {
2820
+ s7 = input.charAt(peg$currPos);
2821
+ if (peg$r2.test(s7)) {
2822
+ peg$currPos++;
2823
+ } else {
2824
+ s7 = peg$FAILED;
2825
+ if (peg$silentFails === 0) {
2826
+ peg$fail(peg$e7);
2827
+ }
2828
+ }
2829
+ if (s7 !== peg$FAILED) {
2830
+ s6 = [s6, s7];
2831
+ s5 = s6;
2832
+ } else {
2833
+ peg$currPos = s5;
2834
+ s5 = peg$FAILED;
2835
+ }
2836
+ } else {
2837
+ peg$currPos = s5;
2838
+ s5 = peg$FAILED;
2839
+ }
2840
+ }
2841
+ while (s5 !== peg$FAILED) {
2842
+ s4.push(s5);
2843
+ if (input.substr(peg$currPos, 4) === peg$c14) {
2844
+ s5 = peg$c14;
2845
+ peg$currPos += 4;
2846
+ } else {
2847
+ s5 = peg$FAILED;
2848
+ if (peg$silentFails === 0) {
2849
+ peg$fail(peg$e31);
2850
+ }
2851
+ }
2852
+ if (s5 === peg$FAILED) {
2853
+ s5 = peg$currPos;
2854
+ s6 = peg$currPos;
2855
+ peg$silentFails++;
2856
+ if (input.substr(peg$currPos, 3) === peg$c13) {
2857
+ s7 = peg$c13;
2858
+ peg$currPos += 3;
2859
+ } else {
2860
+ s7 = peg$FAILED;
2861
+ if (peg$silentFails === 0) {
2862
+ peg$fail(peg$e30);
2863
+ }
2864
+ }
2865
+ peg$silentFails--;
2866
+ if (s7 === peg$FAILED) {
2867
+ s6 = void 0;
2868
+ } else {
2869
+ peg$currPos = s6;
2870
+ s6 = peg$FAILED;
2871
+ }
2872
+ if (s6 !== peg$FAILED) {
2873
+ s7 = input.charAt(peg$currPos);
2874
+ if (peg$r2.test(s7)) {
2875
+ peg$currPos++;
2876
+ } else {
2877
+ s7 = peg$FAILED;
2878
+ if (peg$silentFails === 0) {
2879
+ peg$fail(peg$e7);
2880
+ }
2881
+ }
2882
+ if (s7 !== peg$FAILED) {
2883
+ s6 = [s6, s7];
2884
+ s5 = s6;
2885
+ } else {
2886
+ peg$currPos = s5;
2887
+ s5 = peg$FAILED;
2888
+ }
2889
+ } else {
2890
+ peg$currPos = s5;
2891
+ s5 = peg$FAILED;
2892
+ }
2893
+ }
2894
+ }
2895
+ if (input.charCodeAt(peg$currPos) === 10) {
2896
+ s5 = peg$c0;
2897
+ peg$currPos++;
2898
+ } else {
2899
+ s5 = peg$FAILED;
2900
+ if (peg$silentFails === 0) {
2901
+ peg$fail(peg$e0);
2902
+ }
2903
+ }
2904
+ if (s5 !== peg$FAILED) {
2905
+ s4 = [s4, s5];
2906
+ s3 = s4;
2907
+ } else {
2908
+ peg$currPos = s3;
2909
+ s3 = peg$FAILED;
2910
+ }
2911
+ if (s3 !== peg$FAILED) {
2912
+ while (s3 !== peg$FAILED) {
2913
+ s2.push(s3);
2914
+ s3 = peg$currPos;
2915
+ s4 = [];
2916
+ if (input.substr(peg$currPos, 4) === peg$c14) {
2917
+ s5 = peg$c14;
2918
+ peg$currPos += 4;
2919
+ } else {
2920
+ s5 = peg$FAILED;
2921
+ if (peg$silentFails === 0) {
2922
+ peg$fail(peg$e31);
2923
+ }
2924
+ }
2925
+ if (s5 === peg$FAILED) {
2926
+ s5 = peg$currPos;
2927
+ s6 = peg$currPos;
2928
+ peg$silentFails++;
2929
+ if (input.substr(peg$currPos, 3) === peg$c13) {
2930
+ s7 = peg$c13;
2931
+ peg$currPos += 3;
2932
+ } else {
2933
+ s7 = peg$FAILED;
2934
+ if (peg$silentFails === 0) {
2935
+ peg$fail(peg$e30);
2936
+ }
2937
+ }
2938
+ peg$silentFails--;
2939
+ if (s7 === peg$FAILED) {
2940
+ s6 = void 0;
2941
+ } else {
2942
+ peg$currPos = s6;
2943
+ s6 = peg$FAILED;
2944
+ }
2945
+ if (s6 !== peg$FAILED) {
2946
+ s7 = input.charAt(peg$currPos);
2947
+ if (peg$r2.test(s7)) {
2948
+ peg$currPos++;
2949
+ } else {
2950
+ s7 = peg$FAILED;
2951
+ if (peg$silentFails === 0) {
2952
+ peg$fail(peg$e7);
2953
+ }
2954
+ }
2955
+ if (s7 !== peg$FAILED) {
2956
+ s6 = [s6, s7];
2957
+ s5 = s6;
2958
+ } else {
2959
+ peg$currPos = s5;
2960
+ s5 = peg$FAILED;
2961
+ }
2962
+ } else {
2963
+ peg$currPos = s5;
2964
+ s5 = peg$FAILED;
2965
+ }
2966
+ }
2967
+ while (s5 !== peg$FAILED) {
2968
+ s4.push(s5);
2969
+ if (input.substr(peg$currPos, 4) === peg$c14) {
2970
+ s5 = peg$c14;
2971
+ peg$currPos += 4;
2972
+ } else {
2973
+ s5 = peg$FAILED;
2974
+ if (peg$silentFails === 0) {
2975
+ peg$fail(peg$e31);
2976
+ }
2977
+ }
2978
+ if (s5 === peg$FAILED) {
2979
+ s5 = peg$currPos;
2980
+ s6 = peg$currPos;
2981
+ peg$silentFails++;
2982
+ if (input.substr(peg$currPos, 3) === peg$c13) {
2983
+ s7 = peg$c13;
2984
+ peg$currPos += 3;
2985
+ } else {
2986
+ s7 = peg$FAILED;
2987
+ if (peg$silentFails === 0) {
2988
+ peg$fail(peg$e30);
2989
+ }
2990
+ }
2991
+ peg$silentFails--;
2992
+ if (s7 === peg$FAILED) {
2993
+ s6 = void 0;
2994
+ } else {
2995
+ peg$currPos = s6;
2996
+ s6 = peg$FAILED;
2997
+ }
2998
+ if (s6 !== peg$FAILED) {
2999
+ s7 = input.charAt(peg$currPos);
3000
+ if (peg$r2.test(s7)) {
3001
+ peg$currPos++;
3002
+ } else {
3003
+ s7 = peg$FAILED;
3004
+ if (peg$silentFails === 0) {
3005
+ peg$fail(peg$e7);
3006
+ }
3007
+ }
3008
+ if (s7 !== peg$FAILED) {
3009
+ s6 = [s6, s7];
3010
+ s5 = s6;
3011
+ } else {
3012
+ peg$currPos = s5;
3013
+ s5 = peg$FAILED;
3014
+ }
3015
+ } else {
3016
+ peg$currPos = s5;
3017
+ s5 = peg$FAILED;
3018
+ }
3019
+ }
3020
+ }
3021
+ if (input.charCodeAt(peg$currPos) === 10) {
3022
+ s5 = peg$c0;
3023
+ peg$currPos++;
3024
+ } else {
3025
+ s5 = peg$FAILED;
3026
+ if (peg$silentFails === 0) {
3027
+ peg$fail(peg$e0);
3028
+ }
3029
+ }
3030
+ if (s5 !== peg$FAILED) {
3031
+ s4 = [s4, s5];
3032
+ s3 = s4;
3033
+ } else {
3034
+ peg$currPos = s3;
3035
+ s3 = peg$FAILED;
3036
+ }
3037
+ }
3038
+ } else {
3039
+ s2 = peg$FAILED;
3040
+ }
3041
+ if (s2 !== peg$FAILED) {
3042
+ s3 = [];
3043
+ if (input.substr(peg$currPos, 4) === peg$c14) {
3044
+ s4 = peg$c14;
3045
+ peg$currPos += 4;
3046
+ } else {
3047
+ s4 = peg$FAILED;
3048
+ if (peg$silentFails === 0) {
3049
+ peg$fail(peg$e31);
3050
+ }
3051
+ }
3052
+ if (s4 === peg$FAILED) {
3053
+ s4 = peg$currPos;
3054
+ s5 = peg$currPos;
3055
+ peg$silentFails++;
3056
+ if (input.substr(peg$currPos, 3) === peg$c13) {
3057
+ s6 = peg$c13;
3058
+ peg$currPos += 3;
3059
+ } else {
3060
+ s6 = peg$FAILED;
3061
+ if (peg$silentFails === 0) {
3062
+ peg$fail(peg$e30);
3063
+ }
3064
+ }
3065
+ peg$silentFails--;
3066
+ if (s6 === peg$FAILED) {
3067
+ s5 = void 0;
3068
+ } else {
3069
+ peg$currPos = s5;
3070
+ s5 = peg$FAILED;
3071
+ }
3072
+ if (s5 !== peg$FAILED) {
3073
+ s6 = input.charAt(peg$currPos);
3074
+ if (peg$r2.test(s6)) {
3075
+ peg$currPos++;
3076
+ } else {
3077
+ s6 = peg$FAILED;
3078
+ if (peg$silentFails === 0) {
3079
+ peg$fail(peg$e7);
3080
+ }
3081
+ }
3082
+ if (s6 !== peg$FAILED) {
3083
+ s5 = [s5, s6];
3084
+ s4 = s5;
3085
+ } else {
3086
+ peg$currPos = s4;
3087
+ s4 = peg$FAILED;
3088
+ }
3089
+ } else {
3090
+ peg$currPos = s4;
3091
+ s4 = peg$FAILED;
3092
+ }
3093
+ }
3094
+ while (s4 !== peg$FAILED) {
3095
+ s3.push(s4);
3096
+ if (input.substr(peg$currPos, 4) === peg$c14) {
3097
+ s4 = peg$c14;
3098
+ peg$currPos += 4;
3099
+ } else {
3100
+ s4 = peg$FAILED;
3101
+ if (peg$silentFails === 0) {
3102
+ peg$fail(peg$e31);
3103
+ }
3104
+ }
3105
+ if (s4 === peg$FAILED) {
3106
+ s4 = peg$currPos;
3107
+ s5 = peg$currPos;
3108
+ peg$silentFails++;
3109
+ if (input.substr(peg$currPos, 3) === peg$c13) {
3110
+ s6 = peg$c13;
3111
+ peg$currPos += 3;
3112
+ } else {
3113
+ s6 = peg$FAILED;
3114
+ if (peg$silentFails === 0) {
3115
+ peg$fail(peg$e30);
3116
+ }
3117
+ }
3118
+ peg$silentFails--;
3119
+ if (s6 === peg$FAILED) {
3120
+ s5 = void 0;
3121
+ } else {
3122
+ peg$currPos = s5;
3123
+ s5 = peg$FAILED;
3124
+ }
3125
+ if (s5 !== peg$FAILED) {
3126
+ s6 = input.charAt(peg$currPos);
3127
+ if (peg$r2.test(s6)) {
3128
+ peg$currPos++;
3129
+ } else {
3130
+ s6 = peg$FAILED;
3131
+ if (peg$silentFails === 0) {
3132
+ peg$fail(peg$e7);
3133
+ }
3134
+ }
3135
+ if (s6 !== peg$FAILED) {
3136
+ s5 = [s5, s6];
3137
+ s4 = s5;
3138
+ } else {
3139
+ peg$currPos = s4;
3140
+ s4 = peg$FAILED;
3141
+ }
3142
+ } else {
3143
+ peg$currPos = s4;
3144
+ s4 = peg$FAILED;
3145
+ }
3146
+ }
3147
+ }
3148
+ if (input.substr(peg$currPos, 3) === peg$c13) {
3149
+ s4 = peg$c13;
3150
+ peg$currPos += 3;
3151
+ } else {
3152
+ s4 = peg$FAILED;
3153
+ if (peg$silentFails === 0) {
3154
+ peg$fail(peg$e30);
3155
+ }
3156
+ }
3157
+ if (s4 !== peg$FAILED) {
3158
+ peg$savedPos = s0;
3159
+ s0 = peg$f21(s1);
3160
+ } else {
3161
+ peg$currPos = s0;
3162
+ s0 = peg$FAILED;
3163
+ }
3164
+ } else {
3165
+ peg$currPos = s0;
3166
+ s0 = peg$FAILED;
3167
+ }
3168
+ } else {
3169
+ peg$currPos = s0;
3170
+ s0 = peg$FAILED;
3171
+ }
3172
+ return s0;
3173
+ }
3174
+ chunkJU4IPIOA_js.__name(peg$parsetripleDQuotedMultiLineString, "peg$parsetripleDQuotedMultiLineString");
3175
+ function peg$parsetripleBQuotedMultiLineString() {
3176
+ var s0, s1, s2, s3, s4, s5, s6, s7;
3177
+ s0 = peg$currPos;
3178
+ if (input.substr(peg$currPos, 3) === peg$c15) {
3179
+ s1 = peg$c15;
3180
+ peg$currPos += 3;
3181
+ } else {
3182
+ s1 = peg$FAILED;
3183
+ if (peg$silentFails === 0) {
3184
+ peg$fail(peg$e32);
3185
+ }
3186
+ }
3187
+ if (s1 !== peg$FAILED) {
3188
+ s2 = [];
3189
+ s3 = peg$currPos;
3190
+ s4 = [];
3191
+ if (input.substr(peg$currPos, 4) === peg$c16) {
3192
+ s5 = peg$c16;
3193
+ peg$currPos += 4;
3194
+ } else {
3195
+ s5 = peg$FAILED;
3196
+ if (peg$silentFails === 0) {
3197
+ peg$fail(peg$e33);
3198
+ }
3199
+ }
3200
+ if (s5 === peg$FAILED) {
3201
+ s5 = peg$currPos;
3202
+ s6 = peg$currPos;
3203
+ peg$silentFails++;
3204
+ if (input.substr(peg$currPos, 3) === peg$c15) {
3205
+ s7 = peg$c15;
3206
+ peg$currPos += 3;
3207
+ } else {
3208
+ s7 = peg$FAILED;
3209
+ if (peg$silentFails === 0) {
3210
+ peg$fail(peg$e32);
3211
+ }
3212
+ }
3213
+ peg$silentFails--;
3214
+ if (s7 === peg$FAILED) {
3215
+ s6 = void 0;
3216
+ } else {
3217
+ peg$currPos = s6;
3218
+ s6 = peg$FAILED;
3219
+ }
3220
+ if (s6 !== peg$FAILED) {
3221
+ s7 = input.charAt(peg$currPos);
3222
+ if (peg$r2.test(s7)) {
3223
+ peg$currPos++;
3224
+ } else {
3225
+ s7 = peg$FAILED;
3226
+ if (peg$silentFails === 0) {
3227
+ peg$fail(peg$e7);
3228
+ }
3229
+ }
3230
+ if (s7 !== peg$FAILED) {
3231
+ s6 = [s6, s7];
3232
+ s5 = s6;
3233
+ } else {
3234
+ peg$currPos = s5;
3235
+ s5 = peg$FAILED;
3236
+ }
3237
+ } else {
3238
+ peg$currPos = s5;
3239
+ s5 = peg$FAILED;
3240
+ }
3241
+ }
3242
+ while (s5 !== peg$FAILED) {
3243
+ s4.push(s5);
3244
+ if (input.substr(peg$currPos, 4) === peg$c16) {
3245
+ s5 = peg$c16;
3246
+ peg$currPos += 4;
3247
+ } else {
3248
+ s5 = peg$FAILED;
3249
+ if (peg$silentFails === 0) {
3250
+ peg$fail(peg$e33);
3251
+ }
3252
+ }
3253
+ if (s5 === peg$FAILED) {
3254
+ s5 = peg$currPos;
3255
+ s6 = peg$currPos;
3256
+ peg$silentFails++;
3257
+ if (input.substr(peg$currPos, 3) === peg$c15) {
3258
+ s7 = peg$c15;
3259
+ peg$currPos += 3;
3260
+ } else {
3261
+ s7 = peg$FAILED;
3262
+ if (peg$silentFails === 0) {
3263
+ peg$fail(peg$e32);
3264
+ }
3265
+ }
3266
+ peg$silentFails--;
3267
+ if (s7 === peg$FAILED) {
3268
+ s6 = void 0;
3269
+ } else {
3270
+ peg$currPos = s6;
3271
+ s6 = peg$FAILED;
3272
+ }
3273
+ if (s6 !== peg$FAILED) {
3274
+ s7 = input.charAt(peg$currPos);
3275
+ if (peg$r2.test(s7)) {
3276
+ peg$currPos++;
3277
+ } else {
3278
+ s7 = peg$FAILED;
3279
+ if (peg$silentFails === 0) {
3280
+ peg$fail(peg$e7);
3281
+ }
3282
+ }
3283
+ if (s7 !== peg$FAILED) {
3284
+ s6 = [s6, s7];
3285
+ s5 = s6;
3286
+ } else {
3287
+ peg$currPos = s5;
3288
+ s5 = peg$FAILED;
3289
+ }
3290
+ } else {
3291
+ peg$currPos = s5;
3292
+ s5 = peg$FAILED;
3293
+ }
3294
+ }
3295
+ }
3296
+ if (input.charCodeAt(peg$currPos) === 10) {
3297
+ s5 = peg$c0;
3298
+ peg$currPos++;
3299
+ } else {
3300
+ s5 = peg$FAILED;
3301
+ if (peg$silentFails === 0) {
3302
+ peg$fail(peg$e0);
3303
+ }
3304
+ }
3305
+ if (s5 !== peg$FAILED) {
3306
+ s4 = [s4, s5];
3307
+ s3 = s4;
3308
+ } else {
3309
+ peg$currPos = s3;
3310
+ s3 = peg$FAILED;
3311
+ }
3312
+ if (s3 !== peg$FAILED) {
3313
+ while (s3 !== peg$FAILED) {
3314
+ s2.push(s3);
3315
+ s3 = peg$currPos;
3316
+ s4 = [];
3317
+ if (input.substr(peg$currPos, 4) === peg$c16) {
3318
+ s5 = peg$c16;
3319
+ peg$currPos += 4;
3320
+ } else {
3321
+ s5 = peg$FAILED;
3322
+ if (peg$silentFails === 0) {
3323
+ peg$fail(peg$e33);
3324
+ }
3325
+ }
3326
+ if (s5 === peg$FAILED) {
3327
+ s5 = peg$currPos;
3328
+ s6 = peg$currPos;
3329
+ peg$silentFails++;
3330
+ if (input.substr(peg$currPos, 3) === peg$c15) {
3331
+ s7 = peg$c15;
3332
+ peg$currPos += 3;
3333
+ } else {
3334
+ s7 = peg$FAILED;
3335
+ if (peg$silentFails === 0) {
3336
+ peg$fail(peg$e32);
3337
+ }
3338
+ }
3339
+ peg$silentFails--;
3340
+ if (s7 === peg$FAILED) {
3341
+ s6 = void 0;
3342
+ } else {
3343
+ peg$currPos = s6;
3344
+ s6 = peg$FAILED;
3345
+ }
3346
+ if (s6 !== peg$FAILED) {
3347
+ s7 = input.charAt(peg$currPos);
3348
+ if (peg$r2.test(s7)) {
3349
+ peg$currPos++;
3350
+ } else {
3351
+ s7 = peg$FAILED;
3352
+ if (peg$silentFails === 0) {
3353
+ peg$fail(peg$e7);
3354
+ }
3355
+ }
3356
+ if (s7 !== peg$FAILED) {
3357
+ s6 = [s6, s7];
3358
+ s5 = s6;
3359
+ } else {
3360
+ peg$currPos = s5;
3361
+ s5 = peg$FAILED;
3362
+ }
3363
+ } else {
3364
+ peg$currPos = s5;
3365
+ s5 = peg$FAILED;
3366
+ }
3367
+ }
3368
+ while (s5 !== peg$FAILED) {
3369
+ s4.push(s5);
3370
+ if (input.substr(peg$currPos, 4) === peg$c16) {
3371
+ s5 = peg$c16;
3372
+ peg$currPos += 4;
3373
+ } else {
3374
+ s5 = peg$FAILED;
3375
+ if (peg$silentFails === 0) {
3376
+ peg$fail(peg$e33);
3377
+ }
3378
+ }
3379
+ if (s5 === peg$FAILED) {
3380
+ s5 = peg$currPos;
3381
+ s6 = peg$currPos;
3382
+ peg$silentFails++;
3383
+ if (input.substr(peg$currPos, 3) === peg$c15) {
3384
+ s7 = peg$c15;
3385
+ peg$currPos += 3;
3386
+ } else {
3387
+ s7 = peg$FAILED;
3388
+ if (peg$silentFails === 0) {
3389
+ peg$fail(peg$e32);
3390
+ }
3391
+ }
3392
+ peg$silentFails--;
3393
+ if (s7 === peg$FAILED) {
3394
+ s6 = void 0;
3395
+ } else {
3396
+ peg$currPos = s6;
3397
+ s6 = peg$FAILED;
3398
+ }
3399
+ if (s6 !== peg$FAILED) {
3400
+ s7 = input.charAt(peg$currPos);
3401
+ if (peg$r2.test(s7)) {
3402
+ peg$currPos++;
3403
+ } else {
3404
+ s7 = peg$FAILED;
3405
+ if (peg$silentFails === 0) {
3406
+ peg$fail(peg$e7);
3407
+ }
3408
+ }
3409
+ if (s7 !== peg$FAILED) {
3410
+ s6 = [s6, s7];
3411
+ s5 = s6;
3412
+ } else {
3413
+ peg$currPos = s5;
3414
+ s5 = peg$FAILED;
3415
+ }
3416
+ } else {
3417
+ peg$currPos = s5;
3418
+ s5 = peg$FAILED;
3419
+ }
3420
+ }
3421
+ }
3422
+ if (input.charCodeAt(peg$currPos) === 10) {
3423
+ s5 = peg$c0;
3424
+ peg$currPos++;
3425
+ } else {
3426
+ s5 = peg$FAILED;
3427
+ if (peg$silentFails === 0) {
3428
+ peg$fail(peg$e0);
3429
+ }
3430
+ }
3431
+ if (s5 !== peg$FAILED) {
3432
+ s4 = [s4, s5];
3433
+ s3 = s4;
3434
+ } else {
3435
+ peg$currPos = s3;
3436
+ s3 = peg$FAILED;
3437
+ }
3438
+ }
3439
+ } else {
3440
+ s2 = peg$FAILED;
3441
+ }
3442
+ if (s2 !== peg$FAILED) {
3443
+ s3 = [];
3444
+ if (input.substr(peg$currPos, 4) === peg$c16) {
3445
+ s4 = peg$c16;
3446
+ peg$currPos += 4;
3447
+ } else {
3448
+ s4 = peg$FAILED;
3449
+ if (peg$silentFails === 0) {
3450
+ peg$fail(peg$e33);
3451
+ }
3452
+ }
3453
+ if (s4 === peg$FAILED) {
3454
+ s4 = peg$currPos;
3455
+ s5 = peg$currPos;
3456
+ peg$silentFails++;
3457
+ if (input.substr(peg$currPos, 3) === peg$c15) {
3458
+ s6 = peg$c15;
3459
+ peg$currPos += 3;
3460
+ } else {
3461
+ s6 = peg$FAILED;
3462
+ if (peg$silentFails === 0) {
3463
+ peg$fail(peg$e32);
3464
+ }
3465
+ }
3466
+ peg$silentFails--;
3467
+ if (s6 === peg$FAILED) {
3468
+ s5 = void 0;
3469
+ } else {
3470
+ peg$currPos = s5;
3471
+ s5 = peg$FAILED;
3472
+ }
3473
+ if (s5 !== peg$FAILED) {
3474
+ s6 = input.charAt(peg$currPos);
3475
+ if (peg$r2.test(s6)) {
3476
+ peg$currPos++;
3477
+ } else {
3478
+ s6 = peg$FAILED;
3479
+ if (peg$silentFails === 0) {
3480
+ peg$fail(peg$e7);
3481
+ }
3482
+ }
3483
+ if (s6 !== peg$FAILED) {
3484
+ s5 = [s5, s6];
3485
+ s4 = s5;
3486
+ } else {
3487
+ peg$currPos = s4;
3488
+ s4 = peg$FAILED;
3489
+ }
3490
+ } else {
3491
+ peg$currPos = s4;
3492
+ s4 = peg$FAILED;
3493
+ }
3494
+ }
3495
+ while (s4 !== peg$FAILED) {
3496
+ s3.push(s4);
3497
+ if (input.substr(peg$currPos, 4) === peg$c16) {
3498
+ s4 = peg$c16;
3499
+ peg$currPos += 4;
3500
+ } else {
3501
+ s4 = peg$FAILED;
3502
+ if (peg$silentFails === 0) {
3503
+ peg$fail(peg$e33);
3504
+ }
3505
+ }
3506
+ if (s4 === peg$FAILED) {
3507
+ s4 = peg$currPos;
3508
+ s5 = peg$currPos;
3509
+ peg$silentFails++;
3510
+ if (input.substr(peg$currPos, 3) === peg$c15) {
3511
+ s6 = peg$c15;
3512
+ peg$currPos += 3;
3513
+ } else {
3514
+ s6 = peg$FAILED;
3515
+ if (peg$silentFails === 0) {
3516
+ peg$fail(peg$e32);
3517
+ }
3518
+ }
3519
+ peg$silentFails--;
3520
+ if (s6 === peg$FAILED) {
3521
+ s5 = void 0;
3522
+ } else {
3523
+ peg$currPos = s5;
3524
+ s5 = peg$FAILED;
3525
+ }
3526
+ if (s5 !== peg$FAILED) {
3527
+ s6 = input.charAt(peg$currPos);
3528
+ if (peg$r2.test(s6)) {
3529
+ peg$currPos++;
3530
+ } else {
3531
+ s6 = peg$FAILED;
3532
+ if (peg$silentFails === 0) {
3533
+ peg$fail(peg$e7);
3534
+ }
3535
+ }
3536
+ if (s6 !== peg$FAILED) {
3537
+ s5 = [s5, s6];
3538
+ s4 = s5;
3539
+ } else {
3540
+ peg$currPos = s4;
3541
+ s4 = peg$FAILED;
3542
+ }
3543
+ } else {
3544
+ peg$currPos = s4;
3545
+ s4 = peg$FAILED;
3546
+ }
3547
+ }
3548
+ }
3549
+ if (input.substr(peg$currPos, 3) === peg$c15) {
3550
+ s4 = peg$c15;
3551
+ peg$currPos += 3;
3552
+ } else {
3553
+ s4 = peg$FAILED;
3554
+ if (peg$silentFails === 0) {
3555
+ peg$fail(peg$e32);
3556
+ }
3557
+ }
3558
+ if (s4 !== peg$FAILED) {
3559
+ peg$savedPos = s0;
3560
+ s0 = peg$f22(s1);
3561
+ } else {
3562
+ peg$currPos = s0;
3563
+ s0 = peg$FAILED;
3564
+ }
3565
+ } else {
3566
+ peg$currPos = s0;
3567
+ s0 = peg$FAILED;
3568
+ }
3569
+ } else {
3570
+ peg$currPos = s0;
3571
+ s0 = peg$FAILED;
3572
+ }
3573
+ return s0;
3574
+ }
3575
+ chunkJU4IPIOA_js.__name(peg$parsetripleBQuotedMultiLineString, "peg$parsetripleBQuotedMultiLineString");
3576
+ function peg$parse_n() {
3577
+ var s0, s1;
3578
+ if (input.charCodeAt(peg$currPos) === 10) {
3579
+ s0 = peg$c0;
3580
+ peg$currPos++;
3581
+ } else {
3582
+ s0 = peg$FAILED;
3583
+ if (peg$silentFails === 0) {
3584
+ peg$fail(peg$e0);
3585
+ }
3586
+ }
3587
+ if (s0 === peg$FAILED) {
3588
+ s0 = peg$currPos;
3589
+ peg$silentFails++;
3590
+ if (input.length > peg$currPos) {
3591
+ s1 = input.charAt(peg$currPos);
3592
+ peg$currPos++;
3593
+ } else {
3594
+ s1 = peg$FAILED;
3595
+ if (peg$silentFails === 0) {
3596
+ peg$fail(peg$e34);
3597
+ }
3598
+ }
3599
+ peg$silentFails--;
3600
+ if (s1 === peg$FAILED) {
3601
+ s0 = void 0;
3602
+ } else {
3603
+ peg$currPos = s0;
3604
+ s0 = peg$FAILED;
3605
+ }
3606
+ }
3607
+ return s0;
3608
+ }
3609
+ chunkJU4IPIOA_js.__name(peg$parse_n, "peg$parse_n");
3610
+ function peg$parse_() {
3611
+ var s0, s1;
3612
+ s0 = [];
3613
+ s1 = input.charAt(peg$currPos);
3614
+ if (peg$r17.test(s1)) {
3615
+ peg$currPos++;
3616
+ } else {
3617
+ s1 = peg$FAILED;
3618
+ if (peg$silentFails === 0) {
3619
+ peg$fail(peg$e35);
3620
+ }
3621
+ }
3622
+ while (s1 !== peg$FAILED) {
3623
+ s0.push(s1);
3624
+ s1 = input.charAt(peg$currPos);
3625
+ if (peg$r17.test(s1)) {
3626
+ peg$currPos++;
3627
+ } else {
3628
+ s1 = peg$FAILED;
3629
+ if (peg$silentFails === 0) {
3630
+ peg$fail(peg$e35);
3631
+ }
3632
+ }
3633
+ }
3634
+ return s0;
3635
+ }
3636
+ chunkJU4IPIOA_js.__name(peg$parse_, "peg$parse_");
3637
+ function peg$parse__() {
3638
+ var s0, s1;
3639
+ s0 = [];
3640
+ s1 = input.charAt(peg$currPos);
3641
+ if (peg$r17.test(s1)) {
3642
+ peg$currPos++;
3643
+ } else {
3644
+ s1 = peg$FAILED;
3645
+ if (peg$silentFails === 0) {
3646
+ peg$fail(peg$e35);
3647
+ }
3648
+ }
3649
+ if (s1 !== peg$FAILED) {
3650
+ while (s1 !== peg$FAILED) {
3651
+ s0.push(s1);
3652
+ s1 = input.charAt(peg$currPos);
3653
+ if (peg$r17.test(s1)) {
3654
+ peg$currPos++;
3655
+ } else {
3656
+ s1 = peg$FAILED;
3657
+ if (peg$silentFails === 0) {
3658
+ peg$fail(peg$e35);
3659
+ }
3660
+ }
3661
+ }
3662
+ } else {
3663
+ s0 = peg$FAILED;
3664
+ }
3665
+ return s0;
3666
+ }
3667
+ chunkJU4IPIOA_js.__name(peg$parse__, "peg$parse__");
3668
+ peg$result = peg$startRuleFunction();
3669
+ if (options.peg$library) {
3670
+ return (
3671
+ /** @type {any} */
3672
+ {
3673
+ peg$result,
3674
+ peg$currPos,
3675
+ peg$FAILED,
3676
+ peg$maxFailExpected,
3677
+ peg$maxFailPos
3678
+ }
3679
+ );
3680
+ }
3681
+ if (peg$result !== peg$FAILED && peg$currPos === input.length) {
3682
+ return peg$result;
3683
+ } else {
3684
+ if (peg$result !== peg$FAILED && peg$currPos < input.length) {
3685
+ peg$fail(peg$endExpectation());
3686
+ }
3687
+ throw peg$buildStructuredError(
3688
+ peg$maxFailExpected,
3689
+ peg$maxFailPos < input.length ? input.charAt(peg$maxFailPos) : null,
3690
+ peg$maxFailPos < input.length ? peg$computeLocation(peg$maxFailPos, peg$maxFailPos + 1) : peg$computeLocation(peg$maxFailPos, peg$maxFailPos)
3691
+ );
3692
+ }
3693
+ }
3694
+ chunkJU4IPIOA_js.__name(peg$parse, "peg$parse");
3695
+
3696
+ // src/index.ts
3697
+ function parseEnvSpecDotEnvFile(source) {
3698
+ return peg$parse(source);
3699
+ }
3700
+ chunkJU4IPIOA_js.__name(parseEnvSpecDotEnvFile, "parseEnvSpecDotEnvFile");
3701
+
3702
+ Object.defineProperty(exports, "ParsedEnvSpecBlankLine", {
3703
+ enumerable: true,
3704
+ get: function () { return chunkJU4IPIOA_js.ParsedEnvSpecBlankLine; }
3705
+ });
3706
+ Object.defineProperty(exports, "ParsedEnvSpecComment", {
3707
+ enumerable: true,
3708
+ get: function () { return chunkJU4IPIOA_js.ParsedEnvSpecComment; }
3709
+ });
3710
+ Object.defineProperty(exports, "ParsedEnvSpecCommentBlock", {
3711
+ enumerable: true,
3712
+ get: function () { return chunkJU4IPIOA_js.ParsedEnvSpecCommentBlock; }
3713
+ });
3714
+ Object.defineProperty(exports, "ParsedEnvSpecConfigItem", {
3715
+ enumerable: true,
3716
+ get: function () { return chunkJU4IPIOA_js.ParsedEnvSpecConfigItem; }
3717
+ });
3718
+ Object.defineProperty(exports, "ParsedEnvSpecDecorator", {
3719
+ enumerable: true,
3720
+ get: function () { return chunkJU4IPIOA_js.ParsedEnvSpecDecorator; }
3721
+ });
3722
+ Object.defineProperty(exports, "ParsedEnvSpecDecoratorComment", {
3723
+ enumerable: true,
3724
+ get: function () { return chunkJU4IPIOA_js.ParsedEnvSpecDecoratorComment; }
3725
+ });
3726
+ Object.defineProperty(exports, "ParsedEnvSpecDivider", {
3727
+ enumerable: true,
3728
+ get: function () { return chunkJU4IPIOA_js.ParsedEnvSpecDivider; }
3729
+ });
3730
+ Object.defineProperty(exports, "ParsedEnvSpecFile", {
3731
+ enumerable: true,
3732
+ get: function () { return chunkJU4IPIOA_js.ParsedEnvSpecFile; }
3733
+ });
3734
+ Object.defineProperty(exports, "ParsedEnvSpecFunctionArgs", {
3735
+ enumerable: true,
3736
+ get: function () { return chunkJU4IPIOA_js.ParsedEnvSpecFunctionArgs; }
3737
+ });
3738
+ Object.defineProperty(exports, "ParsedEnvSpecFunctionCall", {
3739
+ enumerable: true,
3740
+ get: function () { return chunkJU4IPIOA_js.ParsedEnvSpecFunctionCall; }
3741
+ });
3742
+ Object.defineProperty(exports, "ParsedEnvSpecKeyValuePair", {
3743
+ enumerable: true,
3744
+ get: function () { return chunkJU4IPIOA_js.ParsedEnvSpecKeyValuePair; }
3745
+ });
3746
+ Object.defineProperty(exports, "ParsedEnvSpecStaticValue", {
3747
+ enumerable: true,
3748
+ get: function () { return chunkJU4IPIOA_js.ParsedEnvSpecStaticValue; }
3749
+ });
3750
+ Object.defineProperty(exports, "expand", {
3751
+ enumerable: true,
3752
+ get: function () { return chunkJU4IPIOA_js.expand; }
3753
+ });
3754
+ exports.envSpecUpdater = envSpecUpdater;
3755
+ exports.parseEnvSpecDotEnvFile = parseEnvSpecDotEnvFile;
3756
+ //# sourceMappingURL=index.js.map
3757
+ //# sourceMappingURL=index.js.map