@danielx/civet 0.11.11 → 0.11.12
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/CHANGELOG.md +15 -0
- package/dist/browser.js +218 -125
- package/dist/browser.min.js +1 -1
- package/dist/main.js +387 -240
- package/dist/main.mjs +387 -240
- package/dist/ts-service/index.js +232 -178
- package/dist/ts-service/index.js.map +4 -4
- package/dist/ts-service/index.mjs +228 -174
- package/dist/ts-service/index.mjs.map +4 -4
- package/dist/types.d.ts +9 -0
- package/package.json +4 -4
package/dist/browser.js
CHANGED
|
@@ -35,9 +35,9 @@ var Civet = (() => {
|
|
|
35
35
|
mod
|
|
36
36
|
)), __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
37
37
|
|
|
38
|
-
// node_modules/.pnpm/@danielx+hera@0.9.
|
|
38
|
+
// node_modules/.pnpm/@danielx+hera@0.9.8/node_modules/@danielx/hera/dist/machine.js
|
|
39
39
|
var require_machine = __commonJS({
|
|
40
|
-
"node_modules/.pnpm/@danielx+hera@0.9.
|
|
40
|
+
"node_modules/.pnpm/@danielx+hera@0.9.8/node_modules/@danielx/hera/dist/machine.js"(exports, module) {
|
|
41
41
|
var __defProp2 = Object.defineProperty, __getOwnPropDesc2 = Object.getOwnPropertyDescriptor, __getOwnPropNames2 = Object.getOwnPropertyNames, __hasOwnProp2 = Object.prototype.hasOwnProperty, __export2 = (target, all) => {
|
|
42
42
|
for (var name in all)
|
|
43
43
|
__defProp2(target, name, { get: all[name], enumerable: !0 });
|
|
@@ -57,7 +57,7 @@ var Civet = (() => {
|
|
|
57
57
|
$N: () => $N2,
|
|
58
58
|
$P: () => $P2,
|
|
59
59
|
$Q: () => $Q2,
|
|
60
|
-
$R: () => $
|
|
60
|
+
$R: () => $R104,
|
|
61
61
|
$R$0: () => $R$02,
|
|
62
62
|
$S: () => $S2,
|
|
63
63
|
$T: () => $T,
|
|
@@ -74,7 +74,7 @@ var Civet = (() => {
|
|
|
74
74
|
function $EXPECT2(parser2, expectation) {
|
|
75
75
|
return function(ctx, state2) {
|
|
76
76
|
let result = parser2(ctx, state2);
|
|
77
|
-
return result || ctx.fail(state2.pos, expectation), result;
|
|
77
|
+
return result || ctx.fail(state2.pos, typeof expectation == "function" ? expectation() : expectation), result;
|
|
78
78
|
};
|
|
79
79
|
}
|
|
80
80
|
function $L249(str) {
|
|
@@ -91,7 +91,7 @@ var Civet = (() => {
|
|
|
91
91
|
};
|
|
92
92
|
};
|
|
93
93
|
}
|
|
94
|
-
function $
|
|
94
|
+
function $R104(regExp) {
|
|
95
95
|
return function(_ctx, state2) {
|
|
96
96
|
let { input, pos } = state2;
|
|
97
97
|
regExp.lastIndex = state2.pos;
|
|
@@ -1467,6 +1467,7 @@ ${body}`), super(message), this.header = header, this.body = body, this.filename
|
|
|
1467
1467
|
if (restCount === 0)
|
|
1468
1468
|
return {
|
|
1469
1469
|
children: elements,
|
|
1470
|
+
elements: void 0,
|
|
1470
1471
|
names,
|
|
1471
1472
|
blockPrefix,
|
|
1472
1473
|
length
|
|
@@ -1485,13 +1486,28 @@ ${body}`), super(message), this.header = header, this.body = body, this.filename
|
|
|
1485
1486
|
names: after.flatMap((p) => p.names)
|
|
1486
1487
|
};
|
|
1487
1488
|
}
|
|
1489
|
+
let restTrimmed = {
|
|
1490
|
+
...rest,
|
|
1491
|
+
children: rest.children.slice(0, -1)
|
|
1492
|
+
// remove trailing comma
|
|
1493
|
+
};
|
|
1494
|
+
if (rest.binding.type === "EmptyBinding" && !l) {
|
|
1495
|
+
let preceding = elements.slice(0, restIndex), last = preceding[preceding.length - 1];
|
|
1496
|
+
return last && arrayElementHasTrailingComma(last) && (preceding[preceding.length - 1] = {
|
|
1497
|
+
...last,
|
|
1498
|
+
children: last.children.slice(0, -1)
|
|
1499
|
+
}), {
|
|
1500
|
+
names,
|
|
1501
|
+
children: preceding,
|
|
1502
|
+
elements: [...preceding, restTrimmed],
|
|
1503
|
+
blockPrefix,
|
|
1504
|
+
length
|
|
1505
|
+
};
|
|
1506
|
+
}
|
|
1488
1507
|
return {
|
|
1489
1508
|
names,
|
|
1490
|
-
children: [...elements.slice(0, restIndex),
|
|
1491
|
-
|
|
1492
|
-
children: rest.children.slice(0, -1)
|
|
1493
|
-
// remove trailing comma
|
|
1494
|
-
}],
|
|
1509
|
+
children: [...elements.slice(0, restIndex), restTrimmed],
|
|
1510
|
+
elements: void 0,
|
|
1495
1511
|
blockPrefix,
|
|
1496
1512
|
length
|
|
1497
1513
|
};
|
|
@@ -1503,6 +1519,7 @@ ${body}`), super(message), this.header = header, this.body = body, this.filename
|
|
|
1503
1519
|
return {
|
|
1504
1520
|
names,
|
|
1505
1521
|
children: [...elements, err],
|
|
1522
|
+
elements: void 0,
|
|
1506
1523
|
blockPrefix,
|
|
1507
1524
|
length
|
|
1508
1525
|
};
|
|
@@ -3074,7 +3091,7 @@ ${js}`
|
|
|
3074
3091
|
}
|
|
3075
3092
|
if (parameters.names = before.flatMap(($7) => $7.names), parameters.parameters.splice(0, 1 / 0), tt && parameters.parameters.push(tt), parameters.parameters.push(...before), rest) {
|
|
3076
3093
|
let restIdentifier = rest.binding.ref || rest.binding;
|
|
3077
|
-
if (parameters.names.push(...rest.names ?? []), rest.children.pop(), after.length) {
|
|
3094
|
+
if (parameters.names.push(...rest.names ?? []), rest.children.pop(), rest.binding.type === "EmptyBinding" && !after.length && (restIdentifier.base = restIdentifier.id = "_ref"), after.length) {
|
|
3078
3095
|
let m6;
|
|
3079
3096
|
m6 = rest.binding.type, (m6 === "ArrayBindingPattern" || m6 === "ObjectBindingPattern" || m6 === "NamedBindingPattern") && parameters.parameters.push({
|
|
3080
3097
|
type: "Error",
|
|
@@ -4396,6 +4413,16 @@ ${js}`
|
|
|
4396
4413
|
});
|
|
4397
4414
|
else {
|
|
4398
4415
|
let { expression } = initializer;
|
|
4416
|
+
if (parent.type === "SwitchStatement" && pattern.type === "Identifier" && !nullCheck) {
|
|
4417
|
+
ref = trimFirstSpace(pattern), Object.assign(condition, {
|
|
4418
|
+
type: "AssignmentExpression",
|
|
4419
|
+
children: [ref],
|
|
4420
|
+
pattern,
|
|
4421
|
+
ref,
|
|
4422
|
+
statementDeclaration: !0
|
|
4423
|
+
}), updateParentPointers(condition, parent), rootCondition.blockPrefix = getPatternBlockPrefix(pattern, trimFirstSpace(expression), decl, typeSuffix);
|
|
4424
|
+
return;
|
|
4425
|
+
}
|
|
4399
4426
|
ref = maybeRef(expression);
|
|
4400
4427
|
let simple = ref === expression, children;
|
|
4401
4428
|
if (simple)
|
|
@@ -5976,8 +6003,8 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
5976
6003
|
});
|
|
5977
6004
|
continue;
|
|
5978
6005
|
}
|
|
5979
|
-
let suppressPrefix = !1, name = part.name, value = part.value ?? name, wValue = getTrimmingSpace(part.value);
|
|
5980
|
-
[value, suppressPrefix] = handleThisPrivateShorthands(value), glob.reversed && ([name, value] = [value, name]), suppressPrefix || (value.type === "StringLiteral" ? value = [
|
|
6006
|
+
let suppressPrefix = !1, name = part.name, value = part.value ?? name, wValue = getTrimmingSpace(part.value), privateField;
|
|
6007
|
+
value?.privateShorthand && (privateField = value.privateId?.name), [value, suppressPrefix] = handleThisPrivateShorthands(value), glob.reversed && ([name, value] = [value, name]), suppressPrefix || (value.type === "StringLiteral" ? value = [
|
|
5981
6008
|
...prefix,
|
|
5982
6009
|
{
|
|
5983
6010
|
type: "Index",
|
|
@@ -6007,6 +6034,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
6007
6034
|
type: part.type,
|
|
6008
6035
|
name,
|
|
6009
6036
|
value,
|
|
6037
|
+
privateField,
|
|
6010
6038
|
delim: part.delim,
|
|
6011
6039
|
names: part.names,
|
|
6012
6040
|
children: [
|
|
@@ -6424,16 +6452,56 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
6424
6452
|
}
|
|
6425
6453
|
}
|
|
6426
6454
|
if ($1.some((x) => x[x.length - 1].special)) {
|
|
6427
|
-
let [, lhs, , op] = $1[0], { call, omitLhs } = op,
|
|
6455
|
+
let [, lhs, , op] = $1[0], { call, omitLhs } = op, callLhs = lhs;
|
|
6456
|
+
if (!omitLhs && lhs.type === "MemberExpression") {
|
|
6457
|
+
let memberLhs = lhs, { children: memberChildren } = memberLhs, mutated = !1, callChildren = memberChildren.map((child) => {
|
|
6458
|
+
if (child?.type !== "Index")
|
|
6459
|
+
return child;
|
|
6460
|
+
let indexNode = child, { ref, refAssignment } = maybeRefAssignment(indexNode.expression);
|
|
6461
|
+
return refAssignment ? (mutated = !0, replaceNode(indexNode.expression, refAssignment, indexNode), makeNode({
|
|
6462
|
+
type: "Index",
|
|
6463
|
+
children: ["[", ref, "]"],
|
|
6464
|
+
expression: ref
|
|
6465
|
+
})) : child;
|
|
6466
|
+
});
|
|
6467
|
+
mutated && (callLhs = makeNode({
|
|
6468
|
+
...memberLhs,
|
|
6469
|
+
children: callChildren
|
|
6470
|
+
}));
|
|
6471
|
+
}
|
|
6472
|
+
let index = exp.children.indexOf($2);
|
|
6428
6473
|
if (assert.notEqual(index, -1, "processAssignments: $2 must be directly in exp.children"), exp.children.splice(
|
|
6429
6474
|
index,
|
|
6430
6475
|
1,
|
|
6431
|
-
exp.expression = $2 = [call, "(",
|
|
6476
|
+
exp.expression = $2 = [call, "(", callLhs, ", ", $2, ")"]
|
|
6432
6477
|
), omitLhs) {
|
|
6433
6478
|
replaceNode(exp, $2);
|
|
6434
6479
|
continue;
|
|
6435
6480
|
}
|
|
6436
6481
|
}
|
|
6482
|
+
if ($1.length === 1) {
|
|
6483
|
+
let [, soleLhs, , soleOp] = $1[0], isPrivateGlobProp = (p) => p?.type === "Property" && !!p.privateField;
|
|
6484
|
+
if (soleOp.token === "=" && soleLhs.type === "ObjectExpression" && soleLhs.properties?.some(isPrivateGlobProp) && !soleLhs.properties.some((p) => p?.type === "SpreadProperty")) {
|
|
6485
|
+
let properties = soleLhs.properties.filter((p) => p?.type === "Property"), prefix, sourceExpr;
|
|
6486
|
+
if (properties.length > 1 && needsRef($2)) {
|
|
6487
|
+
let srcRef = makeRef();
|
|
6488
|
+
prefix = [srcRef, " = ", $2, ", "], sourceExpr = srcRef, exp.hoistDec = {
|
|
6489
|
+
type: "Declaration",
|
|
6490
|
+
children: ["let ", srcRef],
|
|
6491
|
+
names: [],
|
|
6492
|
+
bindings: [],
|
|
6493
|
+
decl: "let"
|
|
6494
|
+
};
|
|
6495
|
+
} else
|
|
6496
|
+
prefix = [], sourceExpr = $2;
|
|
6497
|
+
let joined = properties.map((prop) => {
|
|
6498
|
+
let sourceName = prop.privateField ?? prop.name;
|
|
6499
|
+
return [prop.value, " = ", sourceExpr, ".", sourceName];
|
|
6500
|
+
}).flatMap((a, idx) => idx ? [", ", a] : [a]);
|
|
6501
|
+
exp.children = [["(", prefix, joined, ")"]], exp.names = [];
|
|
6502
|
+
continue;
|
|
6503
|
+
}
|
|
6504
|
+
}
|
|
6437
6505
|
let wrapped = !1, insideParens = exp.parent?.type === "ParenthesizedExpression", i = 0;
|
|
6438
6506
|
for (; i < len3; ) {
|
|
6439
6507
|
let lastAssignment = $1[i++], [, lhs, , op] = lastAssignment;
|
|
@@ -6484,7 +6552,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
6484
6552
|
type: "Declaration",
|
|
6485
6553
|
children: ["let ", optionalChainRef],
|
|
6486
6554
|
names: []
|
|
6487
|
-
}), replaceNode($2, newMemberExp), $2 = newMemberExp);
|
|
6555
|
+
}), replaceNode($2, newMemberExp, exp), $2 = newMemberExp);
|
|
6488
6556
|
}
|
|
6489
6557
|
i--;
|
|
6490
6558
|
}
|
|
@@ -7985,7 +8053,16 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
7985
8053
|
Dedented,
|
|
7986
8054
|
PushExtraIndent1
|
|
7987
8055
|
};
|
|
7988
|
-
var $skip = import_lib2.SKIP, $L0 = (0, import_lib2.$L)(""), $L1 = (0, import_lib2.$L)("{"), $L2 = (0, import_lib2.$L)("/ "), $L3 = (0, import_lib2.$L)("="), $L4 = (0, import_lib2.$L)("("), $L5 = (0, import_lib2.$L)("... "), $L6 = (0, import_lib2.$L)("?"), $L7 = (0, import_lib2.$L)("."), $L8 = (0, import_lib2.$L)("tuple"), $L9 = (0, import_lib2.$L)("++"), $L10 = (0, import_lib2.$L)("--"), $L11 = (0, import_lib2.$L)("\u29FA"), $L12 = (0, import_lib2.$L)("\u2014"), $L13 = (0, import_lib2.$L)("=>"), $L14 = (0, import_lib2.$L)("\u21D2"), $L15 = (0, import_lib2.$L)(":"), $L16 = (0, import_lib2.$L)(" "), $L17 = (0, import_lib2.$L)("<"), $L18 = (0, import_lib2.$L)("implements"), $L19 = (0, import_lib2.$L)("<:"), $L20 = (0, import_lib2.$L)("^"), $L21 = (0, import_lib2.$L)("<?"), $L22 = (0, import_lib2.$L)("-"), $L23 = (0, import_lib2.$L)("import.meta"), $L24 = (0, import_lib2.$L)("return.value"), $L25 = (0, import_lib2.$L)(","), $L26 = (0, import_lib2.$L)("tighter"), $L27 = (0, import_lib2.$L)("looser"), $L28 = (0, import_lib2.$L)("same"), $L29 = (0, import_lib2.$L)("left"), $L30 = (0, import_lib2.$L)("right"), $L31 = (0, import_lib2.$L)("non"), $L32 = (0, import_lib2.$L)("relational"), $L33 = (0, import_lib2.$L)("arguments"), $L34 = (0, import_lib2.$L)("->"), $L35 = (0, import_lib2.$L)("\u2192"), $L36 = (0, import_lib2.$L)("}"), $L37 = (0, import_lib2.$L)("null"), $L38 = (0, import_lib2.$L)("true"), $L39 = (0, import_lib2.$L)("false"), $L40 = (0, import_lib2.$L)("yes"), $L41 = (0, import_lib2.$L)("on"), $L42 = (0, import_lib2.$L)("no"), $L43 = (0, import_lib2.$L)("off"), $L44 = (0, import_lib2.$L)(">"), $L45 = (0, import_lib2.$L)("]"), $L46 = (0, import_lib2.$L)("\u2022"), $L47 = (0, import_lib2.$L)("//"), $L48 = (0, import_lib2.$L)("**="), $L49 = (0, import_lib2.$L)("*="), $L50 = (0, import_lib2.$L)("%/"), $L51 = (0, import_lib2.$L)("\xF7"), $L52 = (0, import_lib2.$L)("%%"), $L53 = (0, import_lib2.$L)("/="), $L54 = (0, import_lib2.$L)("%="), $L55 = (0, import_lib2.$L)("+="), $L56 = (0, import_lib2.$L)("-="), $L57 = (0, import_lib2.$L)("<<="), $L58 = (0, import_lib2.$L)("\u226A="), $L59 = (0, import_lib2.$L)(">>>="), $L60 = (0, import_lib2.$L)("\u22D9="), $L61 = (0, import_lib2.$L)(">>="), $L62 = (0, import_lib2.$L)("\u226B="), $L63 = (0, import_lib2.$L)("&&="), $L64 = (0, import_lib2.$L)("&="), $L65 = (0, import_lib2.$L)("^="), $L66 = (0, import_lib2.$L)("||="), $L67 = (0, import_lib2.$L)("\u2016="), $L68 = (0, import_lib2.$L)("|="), $L69 = (0, import_lib2.$L)("??="), $L70 = (0, import_lib2.$L)("\u2047="), $L71 = (0, import_lib2.$L)("?="), $L72 = (0, import_lib2.$L)("and="), $L73 = (0, import_lib2.$L)("or="), $L74 = (0, import_lib2.$L)("*"), $L75 = (0, import_lib2.$L)("**"), $L76 = (0, import_lib2.$L)("/"), $L77 = (0, import_lib2.$L)("%"), $L78 = (0, import_lib2.$L)("+"), $L79 = (0, import_lib2.$L)("<="), $L80 = (0, import_lib2.$L)("\u2264"), $L81 = (0, import_lib2.$L)(">="), $L82 = (0, import_lib2.$L)("\u2265"), $L83 = (0, import_lib2.$L)("!<?"), $L84 = (0, import_lib2.$L)("<<"), $L85 = (0, import_lib2.$L)("\u226A"), $L86 = (0, import_lib2.$L)(">>>"), $L87 = (0, import_lib2.$L)("\u22D9"), $L88 = (0, import_lib2.$L)(">>"), $L89 = (0, import_lib2.$L)("\u226B"), $L90 = (0, import_lib2.$L)("!=="), $L91 = (0, import_lib2.$L)("\u2262"), $L92 = (0, import_lib2.$L)("!="), $L93 = (0, import_lib2.$L)("\u2260"), $L94 = (0, import_lib2.$L)("isnt"), $L95 = (0, import_lib2.$L)("==="), $L96 = (0, import_lib2.$L)("\u2263"), $L97 = (0, import_lib2.$L)("\u2A76"), $L98 = (0, import_lib2.$L)("=="), $L99 = (0, import_lib2.$L)("\u2261"), $L100 = (0, import_lib2.$L)("\u2A75"), $L101 = (0, import_lib2.$L)("and"), $L102 = (0, import_lib2.$L)("&&"), $L103 = (0, import_lib2.$L)("or"), $L104 = (0, import_lib2.$L)("||"), $L105 = (0, import_lib2.$L)("\u2016"), $L106 = (0, import_lib2.$L)("^^"), $L107 = (0, import_lib2.$L)("xor"), $L108 = (0, import_lib2.$L)("xnor"), $L109 = (0, import_lib2.$L)("??"), $L110 = (0, import_lib2.$L)("\u2047"), $L111 = (0, import_lib2.$L)("instanceof"), $L112 = (0, import_lib2.$L)("\u2208"), $L113 = (0, import_lib2.$L)("\u220B"), $L114 = (0, import_lib2.$L)("\u220C"), $L115 = (0, import_lib2.$L)("\u2209"), $L116 = (0, import_lib2.$L)("&"), $L117 = (0, import_lib2.$L)("|"), $L118 = (0, import_lib2.$L)(";"), $L119 = (0, import_lib2.$L)("some"), $L120 = (0, import_lib2.$L)("every"), $L121 = (0, import_lib2.$L)("count"), $L122 = (0, import_lib2.$L)("first"), $L123 = (0, import_lib2.$L)("sum"), $L124 = (0, import_lib2.$L)("product"), $L125 = (0, import_lib2.$L)("min"), $L126 = (0, import_lib2.$L)("max"), $L127 = (0, import_lib2.$L)("join"), $L128 = (0, import_lib2.$L)("concat"), $L129 = (0, import_lib2.$L)("break"), $L130 = (0, import_lib2.$L)("continue"), $L131 = (0, import_lib2.$L)("debugger"), $L132 = (0, import_lib2.$L)("require"), $L133 = (0, import_lib2.$L)("with"), $L134 = (0, import_lib2.$L)("assert"), $L135 = (0, import_lib2.$L)(":="), $L136 = (0, import_lib2.$L)("\u2254"), $L137 = (0, import_lib2.$L)(".="), $L138 = (0, import_lib2.$L)("::="), $L139 = (0, import_lib2.$L)("/*"), $L140 = (0, import_lib2.$L)("*/"), $L141 = (0, import_lib2.$L)("\\"), $L142 = (0, import_lib2.$L)(")"), $L143 = (0, import_lib2.$L)("abstract"), $L144 = (0, import_lib2.$L)("as"), $L145 = (0, import_lib2.$L)("@"), $L146 = (0, import_lib2.$L)("@@"), $L147 = (0, import_lib2.$L)("async"), $L148 = (0, import_lib2.$L)("await"), $L149 = (0, import_lib2.$L)("`"), $L150 = (0, import_lib2.$L)("by"), $L151 = (0, import_lib2.$L)("case"), $L152 = (0, import_lib2.$L)("catch"), $L153 = (0, import_lib2.$L)("class"), $L154 = (0, import_lib2.$L)("#{"), $L155 = (0, import_lib2.$L)("comptime"), $L156 = (0, import_lib2.$L)("declare"), $L157 = (0, import_lib2.$L)("default"), $L158 = (0, import_lib2.$L)("delete"), $L159 = (0, import_lib2.$L)("do"), $L160 = (0, import_lib2.$L)(".."), $L161 = (0, import_lib2.$L)("\u2025"), $L162 = (0, import_lib2.$L)("..."), $L163 = (0, import_lib2.$L)("\u2026"), $L164 = (0, import_lib2.$L)("::"), $L165 = (0, import_lib2.$L)('"'), $L166 = (0, import_lib2.$L)("each"), $L167 = (0, import_lib2.$L)("else"), $L168 = (0, import_lib2.$L)("!"), $L169 = (0, import_lib2.$L)("export"), $L170 = (0, import_lib2.$L)("extends"), $L171 = (0, import_lib2.$L)("finally"), $L172 = (0, import_lib2.$L)("for"), $L173 = (0, import_lib2.$L)("from"), $L174 = (0, import_lib2.$L)("function"), $L175 = (0, import_lib2.$L)("get"), $L176 = (0, import_lib2.$L)("set"), $L177 = (0, import_lib2.$L)("#"), $L178 = (0, import_lib2.$L)("if"), $L179 = (0, import_lib2.$L)("import"), $L180 = (0, import_lib2.$L)("in"), $L181 = (0, import_lib2.$L)("infer"), $L182 = (0, import_lib2.$L)("let"), $L183 = (0, import_lib2.$L)("const"), $L184 = (0, import_lib2.$L)("is"), $L185 = (0, import_lib2.$L)("var"), $L186 = (0, import_lib2.$L)("like"), $L187 = (0, import_lib2.$L)("loop"), $L188 = (0, import_lib2.$L)("new"), $L189 = (0, import_lib2.$L)("not"), $L190 = (0, import_lib2.$L)("of"), $L191 = (0, import_lib2.$L)("["), $L192 = (0, import_lib2.$L)("operator"), $L193 = (0, import_lib2.$L)("override"), $L194 = (0, import_lib2.$L)("own"), $L195 = (0, import_lib2.$L)("public"), $L196 = (0, import_lib2.$L)("private"), $L197 = (0, import_lib2.$L)("protected"), $L198 = (0, import_lib2.$L)("||>"), $L199 = (0, import_lib2.$L)("|\u25B7"), $L200 = (0, import_lib2.$L)("|>="), $L201 = (0, import_lib2.$L)("\u25B7="), $L202 = (0, import_lib2.$L)("|>"), $L203 = (0, import_lib2.$L)("\u25B7"), $L204 = (0, import_lib2.$L)("readonly"), $L205 = (0, import_lib2.$L)("return"), $L206 = (0, import_lib2.$L)("satisfies"), $L207 = (0, import_lib2.$L)("'"), $L208 = (0, import_lib2.$L)("static"), $L209 = (0, import_lib2.$L)("${"), $L210 = (0, import_lib2.$L)("super"), $L211 = (0, import_lib2.$L)("switch"), $L212 = (0, import_lib2.$L)("target"), $L213 = (0, import_lib2.$L)("then"), $L214 = (0, import_lib2.$L)("this"), $L215 = (0, import_lib2.$L)("throw"), $L216 = (0, import_lib2.$L)('"""'), $L217 = (0, import_lib2.$L)("'''"), $L218 = (0, import_lib2.$L)("///"), $L219 = (0, import_lib2.$L)("```"), $L220 = (0, import_lib2.$L)("try"), $L221 = (0, import_lib2.$L)("typeof"), $L222 = (0, import_lib2.$L)("undefined"), $L223 = (0, import_lib2.$L)("unless"), $L224 = (0, import_lib2.$L)("until"), $L225 = (0, import_lib2.$L)("using"), $L226 = (0, import_lib2.$L)("void"), $L227 = (0, import_lib2.$L)("when"), $L228 = (0, import_lib2.$L)("while"), $L229 = (0, import_lib2.$L)("yield"), $L230 = (0, import_lib2.$L)("/>"), $L231 = (0, import_lib2.$L)("</"), $L232 = (0, import_lib2.$L)("<>"), $L233 = (0, import_lib2.$L)("</>"), $L234 = (0, import_lib2.$L)("<!--"), $L235 = (0, import_lib2.$L)("-->"), $L236 = (0, import_lib2.$L)("type"), $L237 = (0, import_lib2.$L)("enum"), $L238 = (0, import_lib2.$L)("interface"), $L239 = (0, import_lib2.$L)("global"), $L240 = (0, import_lib2.$L)("module"), $L241 = (0, import_lib2.$L)("namespace"), $L242 = (0, import_lib2.$L)("asserts"), $L243 = (0, import_lib2.$L)("keyof"), $L244 = (0, import_lib2.$L)("???"), $L245 = (0, import_lib2.$L)("unique"), $L246 = (0, import_lib2.$L)("symbol"), $L247 = (0, import_lib2.$L)("[]"), $L248 = (0, import_lib2.$L)("civet"), $R0 = (0, import_lib2.$R)(new RegExp("(?=async|debugger|if|unless|comptime|do|for|loop|until|while|switch|throw|try)", "suy")), $R1 = (0, import_lib2.$R)(new RegExp("&(?=\\s)", "suy")), $R2 = (0, import_lib2.$R)(new RegExp("(as|of|by|satisfies|then|when|implements|xor|xnor)(?!\\p{ID_Continue}|[\\u200C\\u200D$])", "suy")), $R3 = (0, import_lib2.$R)(new RegExp("[0-9]", "suy")), $R4 = (0, import_lib2.$R)(new RegExp("(?!\\p{ID_Start}|[_$0-9(\\[{])", "suy")), $R5 = (0, import_lib2.$R)(new RegExp("[ \\t]", "suy")), $R6 = (0, import_lib2.$R)(new RegExp("\\p{ID_Continue}|[\\u200C\\u200D$.#{=]", "suy")), $R7 = (0, import_lib2.$R)(new RegExp("[&=]", "suy")), $R8 = (0, import_lib2.$R)(new RegExp("[@#]", "suy")), $R9 = (0, import_lib2.$R)(new RegExp("(?=['\"`])", "suy")), $R10 = (0, import_lib2.$R)(new RegExp("(?=[\\/?])", "suy")), $R11 = (0, import_lib2.$R)(new RegExp("(?=[\\/\\[{?.!@#'\u2019:])", "suy")), $R12 = (0, import_lib2.$R)(new RegExp("%%?", "suy")), $R13 = (0, import_lib2.$R)(new RegExp("[.\\s]", "suy")), $R14 = (0, import_lib2.$R)(new RegExp("[)\\]}]", "suy")), $R15 = (0, import_lib2.$R)(new RegExp("[+-]", "suy")), $R16 = (0, import_lib2.$R)(new RegExp("\\+\\+|--|\u29FA|\u2014|[\\+\\-&]\\S", "suy")), $R17 = (0, import_lib2.$R)(new RegExp(`(?=[0-9.'"tfyno])`, "suy")), $R18 = (0, import_lib2.$R)(new RegExp("(?=true|false|yes|no|on|off)", "suy")), $R19 = (0, import_lib2.$R)(new RegExp("(?=\\p{ID_Start}|[_$\\\\]|[^\\u0000-\\u007F\\p{ID_Continue}\\s\xF7\u2014\u2016\u2019\u2022\u2025\u2026\u2047\u2192\u21D2\u2208\u2209\u220B\u220C\u2254\u2260\u2261\u2262\u2263\u2264\u2265\u226A\u226B\u22D9\u25B7\u29FA\u2A75\u2A76])", "suy")), $R20 = (0, import_lib2.$R)(new RegExp("(?:\\p{ID_Start}|[_$]|\\\\u\\{0*(?:[\\dA-Fa-f]{1,5}|10[\\dA-Fa-f]{4})\\}|\\\\u[\\dA-Fa-f]{4}|[^\\u0000-\\u007F\\p{ID_Continue}\\s\xF7\u2014\u2016\u2019\u2022\u2025\u2026\u2047\u2192\u21D2\u2208\u2209\u220B\u220C\u2254\u2260\u2261\u2262\u2263\u2264\u2265\u226A\u226B\u22D9\u25B7\u29FA\u2A75\u2A76])(?:\\p{ID_Continue}|[\\u200C\\u200D$]|\\\\u\\{0*(?:[\\dA-Fa-f]{1,5}|10[\\dA-Fa-f]{4})\\}|\\\\u[\\dA-Fa-f]{4}|[^\\u0000-\\u007F\\p{ID_Continue}\\s\xF7\u2014\u2016\u2019\u2022\u2025\u2026\u2047\u2192\u21D2\u2208\u2209\u220B\u220C\u2254\u2260\u2261\u2262\u2263\u2264\u2265\u226A\u226B\u22D9\u25B7\u29FA\u2A75\u2A76])*", "suy")), $R21 = (0, import_lib2.$R)(new RegExp("(?=\\[|\\s*[.\u2022\\/])", "suy")), $R22 = (0, import_lib2.$R)(new RegExp("([<>])(=?)|([\u2264\u2265])", "suy")), $R23 = (0, import_lib2.$R)(new RegExp("[ \\t]*", "suy")), $R24 = (0, import_lib2.$R)(new RegExp("[ \\t]+", "suy")), $R25 = (0, import_lib2.$R)(new RegExp("[!+-]?", "suy")), $R26 = (0, import_lib2.$R)(new RegExp("(?:\\p{ID_Continue}|[\\u200C\\u200D$-])*", "suy")), $R27 = (0, import_lib2.$R)(new RegExp("[=>]", "suy")), $R28 = (0, import_lib2.$R)(new RegExp("(?=\\p{ID_Start}|[_$^\u226A\u226B\u22D9\u2264\u2265\u2208\u220B\u2209\u220C\u2263\u2261\u2262\u2260=\u2A76\u2A75\u2016\u2047&|*\\/!?%\xF7<>\u29FA+-])", "suy")), $R29 = (0, import_lib2.$R)(new RegExp("!\\^\\^?", "suy")), $R30 = (0, import_lib2.$R)(new RegExp("(?!\\+\\+|--)[!~+-](?!\\s)", "suy")), $R31 = (0, import_lib2.$R)(new RegExp("[:.]", "suy")), $R32 = (0, import_lib2.$R)(new RegExp("(?=for|if|loop|unless|until|while)", "suy")), $R33 = (0, import_lib2.$R)(new RegExp("(?:loop|while|until|for|do)(?!\\p{ID_Continue})", "suy")), $R34 = (0, import_lib2.$R)(new RegExp("(?=loop|comptime|do|for|until|while)", "suy")), $R35 = (0, import_lib2.$R)(new RegExp("\\s", "suy")), $R36 = (0, import_lib2.$R)(new RegExp(`[^;"'\\s=>]+`, "suy")), $R37 = (0, import_lib2.$R)(new RegExp("(?=[0-9.])", "suy")), $R38 = (0, import_lib2.$R)(new RegExp("(?:0|[1-9](?:_[0-9]|[0-9])*)n", "suy")), $R39 = (0, import_lib2.$R)(new RegExp("(?:0|[1-9](?:_[0-9]|[0-9])*)(?=\\.(?:\\p{ID_Start}|[_$]))", "suy")), $R40 = (0, import_lib2.$R)(new RegExp("(?:0|[1-9](?:_[0-9]|[0-9])*)(?:\\.(?:[0-9](?:_[0-9]|[0-9])*))?", "suy")), $R41 = (0, import_lib2.$R)(new RegExp("(?:\\.[0-9](?:_[0-9]|[0-9])*)", "suy")), $R42 = (0, import_lib2.$R)(new RegExp("(?:[eE][+-]?[0-9]+(?:_[0-9]|[0-9])*)", "suy")), $R43 = (0, import_lib2.$R)(new RegExp("0[bB][01](?:[01]|_[01])*n?", "suy")), $R44 = (0, import_lib2.$R)(new RegExp("0[oO][0-7](?:[0-7]|_[0-7])*n?", "suy")), $R45 = (0, import_lib2.$R)(new RegExp("0[xX][0-9a-fA-F](?:[0-9a-fA-F]|_[0-9a-fA-F])*n?", "suy")), $R46 = (0, import_lib2.$R)(new RegExp("(?=[0-9])", "suy")), $R47 = (0, import_lib2.$R)(new RegExp("(?:0|[1-9](?:_[0-9]|[0-9])*)", "suy")), $R48 = (0, import_lib2.$R)(new RegExp('(?:\\\\.|[^"])*', "suy")), $R49 = (0, import_lib2.$R)(new RegExp("(?:\\\\.|[^'])*", "suy")), $R50 = (0, import_lib2.$R)(new RegExp('(?:\\\\.|[^"\\n])*', "suy")), $R51 = (0, import_lib2.$R)(new RegExp("(?:\\\\.|[^'\\n])*", "suy")), $R52 = (0, import_lib2.$R)(new RegExp('(?:"(?!"")|#(?!\\{)|\\\\.|[^#"])+', "suy")), $R53 = (0, import_lib2.$R)(new RegExp('(?:"(?!"")|\\\\.|[^"])+', "suy")), $R54 = (0, import_lib2.$R)(new RegExp("(?:'(?!'')|\\\\.|[^'])*", "suy")), $R55 = (0, import_lib2.$R)(new RegExp('(?:\\\\.|#(?!\\{)|[^"#])+', "suy")), $R56 = (0, import_lib2.$R)(new RegExp("(?:\\\\.|[^\\]])*", "suy")), $R57 = (0, import_lib2.$R)(new RegExp("(?:\\\\.)", "suy")), $R58 = (0, import_lib2.$R)(new RegExp("[\\s]+", "suy")), $R59 = (0, import_lib2.$R)(new RegExp("\\/(?!\\/\\/)", "suy")), $R60 = (0, import_lib2.$R)(new RegExp("[^[\\/\\s#$\\\\]+|[#$]", "suy")), $R61 = (0, import_lib2.$R)(new RegExp("[*\\/\\r\\n]", "suy")), $R62 = (0, import_lib2.$R)(new RegExp("(?:\\\\.|[^[\\/\\r\\n])+", "suy")), $R63 = (0, import_lib2.$R)(new RegExp("(?:\\p{ID_Continue}|[\\u200C\\u200D$])*", "suy")), $R64 = (0, import_lib2.$R)(new RegExp("(?=[`'\"])", "suy")), $R65 = (0, import_lib2.$R)(new RegExp("(?:\\$(?!\\{)|\\\\.|[^$`])+", "suy")), $R66 = (0, import_lib2.$R)(new RegExp("(?:\\$(?!\\{)|`(?!``)|\\\\.|[^$`])+", "suy")), $R67 = (0, import_lib2.$R)(new RegExp("(?:off|yes|on|no)", "suy")), $R68 = (0, import_lib2.$R)(new RegExp("isnt", "suy")), $R69 = (0, import_lib2.$R)(new RegExp("by", "suy")), $R70 = (0, import_lib2.$R)(new RegExp("of", "suy")), $R71 = (0, import_lib2.$R)(new RegExp("(?:instanceof|interface|protected|continue|debugger|function|default|extends|finally|private|delete|export|import|public|return|static|switch|typeof|unless|await|break|catch|class|const|false|super|throw|until|while|yield|case|else|enum|loop|null|this|true|void|with|and|for|let|new|not|try|var|do|if|in|is|or)", "suy")), $R72 = (0, import_lib2.$R)(new RegExp("(?=\\/|#)", "suy")), $R73 = (0, import_lib2.$R)(new RegExp("\\/\\/(?!\\/)[^\\r\\n]*", "suy")), $R74 = (0, import_lib2.$R)(new RegExp(".", "suy")), $R75 = (0, import_lib2.$R)(new RegExp("#(?!##(?!#))([^\\r\\n]*)", "suy")), $R76 = (0, import_lib2.$R)(new RegExp("[^]*?###", "suy")), $R77 = (0, import_lib2.$R)(new RegExp("###(?!#)", "suy")), $R78 = (0, import_lib2.$R)(new RegExp("\\/\\*(?:(?!\\*\\/)[^\\r\\n])*\\*\\/", "suy")), $R79 = (0, import_lib2.$R)(new RegExp("(?=[ \\t\\/\\\\#])", "suy")), $R80 = (0, import_lib2.$R)(new RegExp("(?=\\s|\\/|#)", "suy")), $R81 = (0, import_lib2.$R)(new RegExp("(?!\\p{ID_Continue}|[^\\u0000-\\u007F\\p{ID_Continue}\\s\xF7\u2014\u2016\u2019\u2022\u2025\u2026\u2047\u2192\u21D2\u2208\u2209\u220B\u220C\u2254\u2260\u2261\u2262\u2263\u2264\u2265\u226A\u226B\u22D9\u25B7\u29FA\u2A75\u2A76])", "suy")), $R82 = (0, import_lib2.$R)(new RegExp("[=:]", "suy")), $R83 = (0, import_lib2.$R)(new RegExp("['\u2019]s", "suy")), $R84 = (0, import_lib2.$R)(new RegExp("(?=[<])", "suy")), $R85 = (0, import_lib2.$R)(new RegExp("(?:\\p{ID_Start}|[_$])(?:\\p{ID_Continue}|[\\u200C\\u200D$-])*", "suy")), $R86 = (0, import_lib2.$R)(new RegExp("[!+-]", "suy")), $R87 = (0, import_lib2.$R)(new RegExp("[\\s>]|\\/>", "suy")), $R88 = (0, import_lib2.$R)(new RegExp("(?:[\\w\\-:]+|\\([^()]*\\)|\\[[^\\[\\]]*\\])+", "suy")), $R89 = (0, import_lib2.$R)(new RegExp(`"[^"]*"|'[^']*'`, "suy")), $R90 = (0, import_lib2.$R)(new RegExp("[<>]", "suy")), $R91 = (0, import_lib2.$R)(new RegExp("[!~+-](?!\\s|[!~+-]*&)", "suy")), $R92 = (0, import_lib2.$R)(new RegExp("(?:-[^-]|[^-]*)*", "suy")), $R93 = (0, import_lib2.$R)(new RegExp("[^{}<>\\r\\n]+", "suy")), $R94 = (0, import_lib2.$R)(new RegExp("[+-]?", "suy")), $R95 = (0, import_lib2.$R)(new RegExp("(?=if|unless)", "suy")), $R96 = (0, import_lib2.$R)(new RegExp("[|&<!=\\-\u21D2\u2192]", "suy")), $R97 = (0, import_lib2.$R)(new RegExp("(extends|not|is)(?!\\p{ID_Continue}|[\\u200C\\u200D$])", "suy")), $R98 = (0, import_lib2.$R)(new RegExp("const|in|out", "suy")), $R99 = (0, import_lib2.$R)(new RegExp("#![^\\r\\n]*", "suy")), $R100 = (0, import_lib2.$R)(new RegExp("[\\t ]*", "suy")), $R101 = (0, import_lib2.$R)(new RegExp("[\\s]*", "suy")), $R102 = (0, import_lib2.$R)(new RegExp("\\s+([+-]?)([a-zA-Z0-9-]+)(\\s*=\\s*([\\p{ID_Continue}.,+-]*))?", "suy")), $R103 = (0, import_lib2.$R)(new RegExp("\\/\\/\\/[^\\r\\n]*", "suy")), $R104 = (0, import_lib2.$R)(new RegExp("(?=[ \\t\\r\\n\\/#]|$)", "suy")), $R105 = (0, import_lib2.$R)(new RegExp("\\r\\n|\\n|\\r|$", "suy")), $R106 = (0, import_lib2.$R)(new RegExp("[^]*", "suy")), Program$parser = (0, import_lib2.$S)(Reset, Init, (0, import_lib2.$E)(EOS), TopLevelStatements, __);
|
|
8056
|
+
var $skip = import_lib2.SKIP, $L0 = (0, import_lib2.$L)(""), $L1 = (0, import_lib2.$L)("{"), $L2 = (0, import_lib2.$L)("/ "), $L3 = (0, import_lib2.$L)("="), $L4 = (0, import_lib2.$L)("("), $L5 = (0, import_lib2.$L)("... "), $L6 = (0, import_lib2.$L)("?"), $L7 = (0, import_lib2.$L)("."), $L8 = (0, import_lib2.$L)("tuple"), $L9 = (0, import_lib2.$L)("++"), $L10 = (0, import_lib2.$L)("--"), $L11 = (0, import_lib2.$L)("\u29FA"), $L12 = (0, import_lib2.$L)("\u2014"), $L13 = (0, import_lib2.$L)("=>"), $L14 = (0, import_lib2.$L)("\u21D2"), $L15 = (0, import_lib2.$L)(":"), $L16 = (0, import_lib2.$L)(" "), $L17 = (0, import_lib2.$L)("<"), $L18 = (0, import_lib2.$L)("implements"), $L19 = (0, import_lib2.$L)("<:"), $L20 = (0, import_lib2.$L)("^"), $L21 = (0, import_lib2.$L)("<?"), $L22 = (0, import_lib2.$L)("-"), $L23 = (0, import_lib2.$L)("import.meta"), $L24 = (0, import_lib2.$L)("return.value"), $L25 = (0, import_lib2.$L)(","), $L26 = (0, import_lib2.$L)("tighter"), $L27 = (0, import_lib2.$L)("looser"), $L28 = (0, import_lib2.$L)("same"), $L29 = (0, import_lib2.$L)("left"), $L30 = (0, import_lib2.$L)("right"), $L31 = (0, import_lib2.$L)("non"), $L32 = (0, import_lib2.$L)("relational"), $L33 = (0, import_lib2.$L)("arguments"), $L34 = (0, import_lib2.$L)("->"), $L35 = (0, import_lib2.$L)("\u2192"), $L36 = (0, import_lib2.$L)("}"), $L37 = (0, import_lib2.$L)("null"), $L38 = (0, import_lib2.$L)("true"), $L39 = (0, import_lib2.$L)("false"), $L40 = (0, import_lib2.$L)("yes"), $L41 = (0, import_lib2.$L)("on"), $L42 = (0, import_lib2.$L)("no"), $L43 = (0, import_lib2.$L)("off"), $L44 = (0, import_lib2.$L)(">"), $L45 = (0, import_lib2.$L)("]"), $L46 = (0, import_lib2.$L)("\u2022"), $L47 = (0, import_lib2.$L)("//"), $L48 = (0, import_lib2.$L)("**="), $L49 = (0, import_lib2.$L)("*="), $L50 = (0, import_lib2.$L)("%/"), $L51 = (0, import_lib2.$L)("\xF7"), $L52 = (0, import_lib2.$L)("%%"), $L53 = (0, import_lib2.$L)("/="), $L54 = (0, import_lib2.$L)("%="), $L55 = (0, import_lib2.$L)("+="), $L56 = (0, import_lib2.$L)("-="), $L57 = (0, import_lib2.$L)("<<="), $L58 = (0, import_lib2.$L)("\u226A="), $L59 = (0, import_lib2.$L)(">>>="), $L60 = (0, import_lib2.$L)("\u22D9="), $L61 = (0, import_lib2.$L)(">>="), $L62 = (0, import_lib2.$L)("\u226B="), $L63 = (0, import_lib2.$L)("&&="), $L64 = (0, import_lib2.$L)("&="), $L65 = (0, import_lib2.$L)("^="), $L66 = (0, import_lib2.$L)("||="), $L67 = (0, import_lib2.$L)("\u2016="), $L68 = (0, import_lib2.$L)("|="), $L69 = (0, import_lib2.$L)("??="), $L70 = (0, import_lib2.$L)("\u2047="), $L71 = (0, import_lib2.$L)("?="), $L72 = (0, import_lib2.$L)("and="), $L73 = (0, import_lib2.$L)("or="), $L74 = (0, import_lib2.$L)("*"), $L75 = (0, import_lib2.$L)("**"), $L76 = (0, import_lib2.$L)("/"), $L77 = (0, import_lib2.$L)("%"), $L78 = (0, import_lib2.$L)("+"), $L79 = (0, import_lib2.$L)("<="), $L80 = (0, import_lib2.$L)("\u2264"), $L81 = (0, import_lib2.$L)(">="), $L82 = (0, import_lib2.$L)("\u2265"), $L83 = (0, import_lib2.$L)("!<?"), $L84 = (0, import_lib2.$L)("<<"), $L85 = (0, import_lib2.$L)("\u226A"), $L86 = (0, import_lib2.$L)(">>>"), $L87 = (0, import_lib2.$L)("\u22D9"), $L88 = (0, import_lib2.$L)(">>"), $L89 = (0, import_lib2.$L)("\u226B"), $L90 = (0, import_lib2.$L)("!=="), $L91 = (0, import_lib2.$L)("\u2262"), $L92 = (0, import_lib2.$L)("!="), $L93 = (0, import_lib2.$L)("\u2260"), $L94 = (0, import_lib2.$L)("isnt"), $L95 = (0, import_lib2.$L)("==="), $L96 = (0, import_lib2.$L)("\u2263"), $L97 = (0, import_lib2.$L)("\u2A76"), $L98 = (0, import_lib2.$L)("=="), $L99 = (0, import_lib2.$L)("\u2261"), $L100 = (0, import_lib2.$L)("\u2A75"), $L101 = (0, import_lib2.$L)("and"), $L102 = (0, import_lib2.$L)("&&"), $L103 = (0, import_lib2.$L)("or"), $L104 = (0, import_lib2.$L)("||"), $L105 = (0, import_lib2.$L)("\u2016"), $L106 = (0, import_lib2.$L)("^^"), $L107 = (0, import_lib2.$L)("xor"), $L108 = (0, import_lib2.$L)("xnor"), $L109 = (0, import_lib2.$L)("??"), $L110 = (0, import_lib2.$L)("\u2047"), $L111 = (0, import_lib2.$L)("instanceof"), $L112 = (0, import_lib2.$L)("\u2208"), $L113 = (0, import_lib2.$L)("\u220B"), $L114 = (0, import_lib2.$L)("\u220C"), $L115 = (0, import_lib2.$L)("\u2209"), $L116 = (0, import_lib2.$L)("&"), $L117 = (0, import_lib2.$L)("|"), $L118 = (0, import_lib2.$L)(";"), $L119 = (0, import_lib2.$L)("some"), $L120 = (0, import_lib2.$L)("every"), $L121 = (0, import_lib2.$L)("count"), $L122 = (0, import_lib2.$L)("first"), $L123 = (0, import_lib2.$L)("sum"), $L124 = (0, import_lib2.$L)("product"), $L125 = (0, import_lib2.$L)("min"), $L126 = (0, import_lib2.$L)("max"), $L127 = (0, import_lib2.$L)("join"), $L128 = (0, import_lib2.$L)("concat"), $L129 = (0, import_lib2.$L)("break"), $L130 = (0, import_lib2.$L)("continue"), $L131 = (0, import_lib2.$L)("debugger"), $L132 = (0, import_lib2.$L)("require"), $L133 = (0, import_lib2.$L)("with"), $L134 = (0, import_lib2.$L)("assert"), $L135 = (0, import_lib2.$L)(":="), $L136 = (0, import_lib2.$L)("\u2254"), $L137 = (0, import_lib2.$L)(".="), $L138 = (0, import_lib2.$L)("::="), $L139 = (0, import_lib2.$L)("/*"), $L140 = (0, import_lib2.$L)("*/"), $L141 = (0, import_lib2.$L)("\\"), $L142 = (0, import_lib2.$L)(")"), $L143 = (0, import_lib2.$L)("abstract"), $L144 = (0, import_lib2.$L)("as"), $L145 = (0, import_lib2.$L)("@"), $L146 = (0, import_lib2.$L)("@@"), $L147 = (0, import_lib2.$L)("async"), $L148 = (0, import_lib2.$L)("await"), $L149 = (0, import_lib2.$L)("`"), $L150 = (0, import_lib2.$L)("by"), $L151 = (0, import_lib2.$L)("case"), $L152 = (0, import_lib2.$L)("catch"), $L153 = (0, import_lib2.$L)("class"), $L154 = (0, import_lib2.$L)("#{"), $L155 = (0, import_lib2.$L)("comptime"), $L156 = (0, import_lib2.$L)("declare"), $L157 = (0, import_lib2.$L)("default"), $L158 = (0, import_lib2.$L)("delete"), $L159 = (0, import_lib2.$L)("do"), $L160 = (0, import_lib2.$L)(".."), $L161 = (0, import_lib2.$L)("\u2025"), $L162 = (0, import_lib2.$L)("..."), $L163 = (0, import_lib2.$L)("\u2026"), $L164 = (0, import_lib2.$L)("::"), $L165 = (0, import_lib2.$L)('"'), $L166 = (0, import_lib2.$L)("each"), $L167 = (0, import_lib2.$L)("else"), $L168 = (0, import_lib2.$L)("!"), $L169 = (0, import_lib2.$L)("export"), $L170 = (0, import_lib2.$L)("extends"), $L171 = (0, import_lib2.$L)("finally"), $L172 = (0, import_lib2.$L)("for"), $L173 = (0, import_lib2.$L)("from"), $L174 = (0, import_lib2.$L)("function"), $L175 = (0, import_lib2.$L)("get"), $L176 = (0, import_lib2.$L)("set"), $L177 = (0, import_lib2.$L)("#"), $L178 = (0, import_lib2.$L)("if"), $L179 = (0, import_lib2.$L)("import"), $L180 = (0, import_lib2.$L)("in"), $L181 = (0, import_lib2.$L)("infer"), $L182 = (0, import_lib2.$L)("let"), $L183 = (0, import_lib2.$L)("const"), $L184 = (0, import_lib2.$L)("is"), $L185 = (0, import_lib2.$L)("var"), $L186 = (0, import_lib2.$L)("like"), $L187 = (0, import_lib2.$L)("loop"), $L188 = (0, import_lib2.$L)("new"), $L189 = (0, import_lib2.$L)("not"), $L190 = (0, import_lib2.$L)("of"), $L191 = (0, import_lib2.$L)("["), $L192 = (0, import_lib2.$L)("operator"), $L193 = (0, import_lib2.$L)("override"), $L194 = (0, import_lib2.$L)("own"), $L195 = (0, import_lib2.$L)("public"), $L196 = (0, import_lib2.$L)("private"), $L197 = (0, import_lib2.$L)("protected"), $L198 = (0, import_lib2.$L)("||>"), $L199 = (0, import_lib2.$L)("|\u25B7"), $L200 = (0, import_lib2.$L)("|>="), $L201 = (0, import_lib2.$L)("\u25B7="), $L202 = (0, import_lib2.$L)("|>"), $L203 = (0, import_lib2.$L)("\u25B7"), $L204 = (0, import_lib2.$L)("readonly"), $L205 = (0, import_lib2.$L)("return"), $L206 = (0, import_lib2.$L)("satisfies"), $L207 = (0, import_lib2.$L)("'"), $L208 = (0, import_lib2.$L)("static"), $L209 = (0, import_lib2.$L)("${"), $L210 = (0, import_lib2.$L)("super"), $L211 = (0, import_lib2.$L)("switch"), $L212 = (0, import_lib2.$L)("target"), $L213 = (0, import_lib2.$L)("then"), $L214 = (0, import_lib2.$L)("this"), $L215 = (0, import_lib2.$L)("throw"), $L216 = (0, import_lib2.$L)('"""'), $L217 = (0, import_lib2.$L)("'''"), $L218 = (0, import_lib2.$L)("///"), $L219 = (0, import_lib2.$L)("```"), $L220 = (0, import_lib2.$L)("try"), $L221 = (0, import_lib2.$L)("typeof"), $L222 = (0, import_lib2.$L)("undefined"), $L223 = (0, import_lib2.$L)("unless"), $L224 = (0, import_lib2.$L)("until"), $L225 = (0, import_lib2.$L)("using"), $L226 = (0, import_lib2.$L)("void"), $L227 = (0, import_lib2.$L)("when"), $L228 = (0, import_lib2.$L)("while"), $L229 = (0, import_lib2.$L)("yield"), $L230 = (0, import_lib2.$L)("/>"), $L231 = (0, import_lib2.$L)("</"), $L232 = (0, import_lib2.$L)("<>"), $L233 = (0, import_lib2.$L)("</>"), $L234 = (0, import_lib2.$L)("<!--"), $L235 = (0, import_lib2.$L)("-->"), $L236 = (0, import_lib2.$L)("type"), $L237 = (0, import_lib2.$L)("enum"), $L238 = (0, import_lib2.$L)("interface"), $L239 = (0, import_lib2.$L)("global"), $L240 = (0, import_lib2.$L)("module"), $L241 = (0, import_lib2.$L)("namespace"), $L242 = (0, import_lib2.$L)("asserts"), $L243 = (0, import_lib2.$L)("keyof"), $L244 = (0, import_lib2.$L)("???"), $L245 = (0, import_lib2.$L)("unique"), $L246 = (0, import_lib2.$L)("symbol"), $L247 = (0, import_lib2.$L)("[]"), $L248 = (0, import_lib2.$L)("civet"), $R0 = (0, import_lib2.$R)(/(?=async|debugger|if|unless|comptime|do|for|loop|until|while|switch|throw|try)/suy), $R1 = (0, import_lib2.$R)(/&(?=\s)/suy), $R2 = (0, import_lib2.$R)(/(as|of|by|satisfies|then|when|implements|xor|xnor)(?!\p{ID_Continue}|[\u200C\u200D$])/suy), $R3 = (0, import_lib2.$R)(/[0-9]/suy), $R4 = (0, import_lib2.$R)(/(?!\p{ID_Start}|[_$0-9(\[{])/suy), $R5 = (0, import_lib2.$R)(/[ \t]/suy), $R6 = (0, import_lib2.$R)(/\p{ID_Continue}|[\u200C\u200D$.#{=]/suy), $R7 = (0, import_lib2.$R)(/[&=]/suy), $R8 = (0, import_lib2.$R)(/[@#]/suy), $R9 = (0, import_lib2.$R)(/(?=['"`])/suy), $R10 = (0, import_lib2.$R)(/(?=[\/?])/suy), $R11 = (0, import_lib2.$R)(/(?=[\/\[{?.!@#'’:])/suy), $R12 = (0, import_lib2.$R)(/%%?/suy), $R13 = (0, import_lib2.$R)(/[.\s]/suy), $R14 = (0, import_lib2.$R)(/[)\]}]/suy), $R15 = (0, import_lib2.$R)(/[+-]/suy), $R16 = (0, import_lib2.$R)(/\+\+|--|⧺|—|[\+\-&]\S/suy), $R17 = (0, import_lib2.$R)(/(?=[0-9.'"tfyno])/suy), $R18 = (0, import_lib2.$R)(/(?=true|false|yes|no|on|off)/suy), $R19 = (0, import_lib2.$R)(/(?=\[|\s*[.•\/])/suy), $R20 = (0, import_lib2.$R)(/([<>])(=?)|([≤≥])/suy), $R21 = (0, import_lib2.$R)(/[ \t]*/suy), $R22 = (0, import_lib2.$R)(/[ \t]+/suy), $R23 = (0, import_lib2.$R)(/[!+-]?/suy), $R24 = (0, import_lib2.$R)(/(?:\p{ID_Continue}|[\u200C\u200D$-])*/suy), $R25 = (0, import_lib2.$R)(/[=>]/suy), $R26 = (0, import_lib2.$R)(/(?=\p{ID_Start}|[_$^≪≫⋙≤≥∈∋∉∌≣≡≢≠=⩶⩵‖⁇&|*\/!?%÷<>⧺+-])/suy), $R27 = (0, import_lib2.$R)(/!\^\^?/suy), $R28 = (0, import_lib2.$R)(/(?!\+\+|--)[!~+-](?!\s)/suy), $R29 = (0, import_lib2.$R)(/[:.]/suy), $R30 = (0, import_lib2.$R)(/(?=for|if|loop|unless|until|while)/suy), $R31 = (0, import_lib2.$R)(/(?:loop|while|until|for|do)(?!\p{ID_Continue})/suy), $R32 = (0, import_lib2.$R)(/(?=loop|comptime|do|for|until|while)/suy), $R33 = (0, import_lib2.$R)(/\s/suy), $R34 = (0, import_lib2.$R)(/[^;"'\s=>]+/suy), $R35 = (0, import_lib2.$R)(/(?=[0-9.])/suy), $R36 = (0, import_lib2.$R)(/(?:0|[1-9](?:_[0-9]|[0-9])*)n/suy), $R37 = (0, import_lib2.$R)(/(?:0|[1-9](?:_[0-9]|[0-9])*)(?=\.(?:\p{ID_Start}|[_$]))/suy), $R38 = (0, import_lib2.$R)(/(?:0|[1-9](?:_[0-9]|[0-9])*)(?:\.(?:[0-9](?:_[0-9]|[0-9])*))?/suy), $R39 = (0, import_lib2.$R)(/(?:\.[0-9](?:_[0-9]|[0-9])*)/suy), $R40 = (0, import_lib2.$R)(/(?:[eE][+-]?[0-9]+(?:_[0-9]|[0-9])*)/suy), $R41 = (0, import_lib2.$R)(/0[bB][01](?:[01]|_[01])*n?/suy), $R42 = (0, import_lib2.$R)(/0[oO][0-7](?:[0-7]|_[0-7])*n?/suy), $R43 = (0, import_lib2.$R)(/0[xX][0-9a-fA-F](?:[0-9a-fA-F]|_[0-9a-fA-F])*n?/suy), $R44 = (0, import_lib2.$R)(/(?=[0-9])/suy), $R45 = (0, import_lib2.$R)(/(?:0|[1-9](?:_[0-9]|[0-9])*)/suy), $R46 = (0, import_lib2.$R)(/(?:\\.|[^"])*/suy), $R47 = (0, import_lib2.$R)(/(?:\\.|[^'])*/suy), $R48 = (0, import_lib2.$R)(/(?:\\.|[^"\n])*/suy), $R49 = (0, import_lib2.$R)(/(?:\\.|[^'\n])*/suy), $R50 = (0, import_lib2.$R)(/(?:"(?!"")|#(?!\{)|\\.|[^#"])+/suy), $R51 = (0, import_lib2.$R)(/(?:"(?!"")|\\.|[^"])+/suy), $R52 = (0, import_lib2.$R)(/(?:'(?!'')|\\.|[^'])*/suy), $R53 = (0, import_lib2.$R)(/(?:\\.|#(?!\{)|[^"#])+/suy), $R54 = (0, import_lib2.$R)(/(?:\\.|[^\]])*/suy), $R55 = (0, import_lib2.$R)(/\\./suy), $R56 = (0, import_lib2.$R)(/[\s]+/suy), $R57 = (0, import_lib2.$R)(/\/(?!\/\/)/suy), $R58 = (0, import_lib2.$R)(/[^[\/\s#$\\]+|[#$]/suy), $R59 = (0, import_lib2.$R)(/[*\/\r\n]/suy), $R60 = (0, import_lib2.$R)(/(?:\\.|[^[\/\r\n])+/suy), $R61 = (0, import_lib2.$R)(/(?:\p{ID_Continue}|[\u200C\u200D$])*/suy), $R62 = (0, import_lib2.$R)(/(?=[`'"])/suy), $R63 = (0, import_lib2.$R)(/(?:\$(?!\{)|\\.|[^$`])+/suy), $R64 = (0, import_lib2.$R)(/(?:\$(?!\{)|`(?!``)|\\.|[^$`])+/suy), $R65 = (0, import_lib2.$R)(/(?:off|yes|on|no)/suy), $R66 = (0, import_lib2.$R)(/isnt/suy), $R67 = (0, import_lib2.$R)(/by/suy), $R68 = (0, import_lib2.$R)(/of/suy), $R69 = (0, import_lib2.$R)(/(?:instanceof|interface|protected|continue|debugger|function|default|extends|finally|private|delete|export|import|public|return|static|switch|typeof|unless|await|break|catch|class|const|false|super|throw|until|while|yield|case|else|enum|loop|null|this|true|void|with|and|for|let|new|not|try|var|do|if|in|is|or)/suy), $R70 = (0, import_lib2.$R)(/(?=\/|#)/suy), $R71 = (0, import_lib2.$R)(/\/\/(?!\/(?!\/))[^\r\n]*/suy), $R72 = (0, import_lib2.$R)(/./suy), $R73 = (0, import_lib2.$R)(/#(?!##(?!#))([^\r\n]*)/suy), $R74 = (0, import_lib2.$R)(/[^]*?###/suy), $R75 = (0, import_lib2.$R)(/###(?!#)/suy), $R76 = (0, import_lib2.$R)(/\/\*(?:(?!\*\/)[^\r\n])*\*\//suy), $R77 = (0, import_lib2.$R)(/(?=[ \t\/\\#])/suy), $R78 = (0, import_lib2.$R)(/(?=\s|\/|#)/suy), $R79 = (0, import_lib2.$R)(/[=:]/suy), $R80 = (0, import_lib2.$R)(/['’]s/suy), $R81 = (0, import_lib2.$R)(/(?=[<])/suy), $R82 = (0, import_lib2.$R)(/(?:\p{ID_Start}|[_$])(?:\p{ID_Continue}|[\u200C\u200D$-])*/suy), $R83 = (0, import_lib2.$R)(/[!+-]/suy), $R84 = (0, import_lib2.$R)(/[\s>]|\/>/suy), $R85 = (0, import_lib2.$R)(/(?:[\w\-:]+|\([^()]*\)|\[[^\[\]]*\])+/suy), $R86 = (0, import_lib2.$R)(/"[^"]*"|'[^']*'/suy), $R87 = (0, import_lib2.$R)(/[<>]/suy), $R88 = (0, import_lib2.$R)(/[!~+-](?!\s|[!~+-]*&)/suy), $R89 = (0, import_lib2.$R)(/(?:-[^-]|[^-]*)*/suy), $R90 = (0, import_lib2.$R)(/[^{}<>\r\n]+/suy), $R91 = (0, import_lib2.$R)(/[+-]?/suy), $R92 = (0, import_lib2.$R)(/(?=if|unless)/suy), $R93 = (0, import_lib2.$R)(/[|&<!=\-⇒→]/suy), $R94 = (0, import_lib2.$R)(/(extends|not|is)(?!\p{ID_Continue}|[\u200C\u200D$])/suy), $R95 = (0, import_lib2.$R)(/const|in|out/suy), $R96 = (0, import_lib2.$R)(/#![^\r\n]*/suy), $R97 = (0, import_lib2.$R)(/[\t ]*/suy), $R98 = (0, import_lib2.$R)(/[\s]*/suy), $R99 = (0, import_lib2.$R)(/\s+([+-]?)([a-zA-Z0-9-]+)(\s*=\s*([\p{ID_Continue}.,+-]*))?/suy), $R100 = (0, import_lib2.$R)(/\/\/\/[^\r\n]*/suy), $R101 = (0, import_lib2.$R)(/(?=[ \t\r\n\/#]|$)/suy), $R102 = (0, import_lib2.$R)(/\r\n|\n|\r|$/suy), $R103 = (0, import_lib2.$R)(/[^]*/suy), $RD0 = (($$ctx, $$state) => {
|
|
8057
|
+
let $$source = `(?=\\p{ID_Start}|[_$\\\\]|${nonAsciiIdentifierPattern})`;
|
|
8058
|
+
return $RD0 = (0, import_lib2.$R)(new RegExp($$source, "suy")), $RD0.source = $$source, $RD0($$ctx, $$state);
|
|
8059
|
+
}), $RD1 = (($$ctx, $$state) => {
|
|
8060
|
+
let $$source = `(?:\\p{ID_Start}|[_$]|${unicodeEscapePattern}|${nonAsciiIdentifierPattern})(?:\\p{ID_Continue}|[\\u200C\\u200D$]|${unicodeEscapePattern}|${nonAsciiIdentifierPattern})*`;
|
|
8061
|
+
return $RD1 = (0, import_lib2.$R)(new RegExp($$source, "suy")), $RD1.source = $$source, $RD1($$ctx, $$state);
|
|
8062
|
+
}), $RD2 = (($$ctx, $$state) => {
|
|
8063
|
+
let $$source = `(?!\\p{ID_Continue}|${nonAsciiIdentifierPattern})`;
|
|
8064
|
+
return $RD2 = (0, import_lib2.$R)(new RegExp($$source, "suy")), $RD2.source = $$source, $RD2($$ctx, $$state);
|
|
8065
|
+
}), Program$parser = (0, import_lib2.$S)(Reset, Init, (0, import_lib2.$E)(EOS), TopLevelStatements, __);
|
|
7989
8066
|
function Program($$ctx, $$state) {
|
|
7990
8067
|
let $$entered = $$ctx.enter?.("Program", $$state);
|
|
7991
8068
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -12224,7 +12301,10 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
12224
12301
|
...c,
|
|
12225
12302
|
// names, blockPrefix, length
|
|
12226
12303
|
type: "ArrayBindingPattern",
|
|
12227
|
-
elements
|
|
12304
|
+
// `c.elements` may differ from `c.children` when adjustBindingElements
|
|
12305
|
+
// omits an anonymous rest from the emitted destructure but still needs
|
|
12306
|
+
// pattern matching / type generation to see it.
|
|
12307
|
+
elements: c.elements ?? c.children,
|
|
12228
12308
|
children: [ws1, open, c.children, ws2, close]
|
|
12229
12309
|
});
|
|
12230
12310
|
})($$value[0], $$value[1], $$value[2], $$value[3], $$value[4]);
|
|
@@ -12239,7 +12319,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
12239
12319
|
if (!$$r)
|
|
12240
12320
|
return;
|
|
12241
12321
|
let $$m = (function(elements) {
|
|
12242
|
-
return elements ? adjustBindingElements(elements) : { children: [], names: [], length: 0 };
|
|
12322
|
+
return elements ? adjustBindingElements(elements) : { children: [], elements: void 0, names: [], length: 0 };
|
|
12243
12323
|
})($$r.value);
|
|
12244
12324
|
return $$r.value = $$m, $$r;
|
|
12245
12325
|
}
|
|
@@ -13786,7 +13866,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
13786
13866
|
})($$r.value[0]);
|
|
13787
13867
|
return $$r.value = $$m, $$ctx.exit?.("SymbolElement", $$state, $$r, $$eventData), $$r;
|
|
13788
13868
|
}
|
|
13789
|
-
var Identifier$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
13869
|
+
var Identifier$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($RD0, () => `Identifier /${$RD0.source}/`), (0, import_lib2.$N)(ReservedWord), IdentifierName);
|
|
13790
13870
|
function Identifier($$ctx, $$state) {
|
|
13791
13871
|
let $$entered = $$ctx.enter?.("Identifier", $$state);
|
|
13792
13872
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -13800,7 +13880,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
13800
13880
|
})($$r.value[2]);
|
|
13801
13881
|
return $$r.value = $$m, $$ctx.exit?.("Identifier", $$state, $$r, $$eventData), $$r;
|
|
13802
13882
|
}
|
|
13803
|
-
var IdentifierName$parser = (0, import_lib2.$EXPECT)($
|
|
13883
|
+
var IdentifierName$parser = (0, import_lib2.$EXPECT)($RD1, () => `IdentifierName /${$RD1.source}/`);
|
|
13804
13884
|
function IdentifierName($$ctx, $$state) {
|
|
13805
13885
|
let $$entered = $$ctx.enter?.("IdentifierName", $$state);
|
|
13806
13886
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -13841,7 +13921,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
13841
13921
|
let $$eventData = $$entered?.data, $$final = UpcomingAssignment$parser($$ctx, $$state);
|
|
13842
13922
|
return $$ctx.exit?.("UpcomingAssignment", $$state, $$final, $$eventData), $$final;
|
|
13843
13923
|
}
|
|
13844
|
-
var ArrayLiteral$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
13924
|
+
var ArrayLiteral$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($R19, "ArrayLiteral /(?=\\[|\\s*[.\u2022\\/])/"), _ArrayLiteral);
|
|
13845
13925
|
function ArrayLiteral($$ctx, $$state) {
|
|
13846
13926
|
let $$entered = $$ctx.enter?.("ArrayLiteral", $$state);
|
|
13847
13927
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -13986,7 +14066,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
13986
14066
|
let $$eventData = $$entered?.data, $$final = OptionalRangeEnd$0($$ctx, $$state) || OptionalRangeEnd$1($$ctx, $$state);
|
|
13987
14067
|
return $$ctx.exit?.("OptionalRangeEnd", $$state, $$final, $$eventData), $$final;
|
|
13988
14068
|
}
|
|
13989
|
-
var RangeEnd$parser = (0, import_lib2.$EXPECT)($
|
|
14069
|
+
var RangeEnd$parser = (0, import_lib2.$EXPECT)($R20, "RangeEnd /([<>])(=?)|([\u2264\u2265])/");
|
|
13990
14070
|
function RangeEnd($$ctx, $$state) {
|
|
13991
14071
|
let $$entered = $$ctx.enter?.("RangeEnd", $$state);
|
|
13992
14072
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -14381,7 +14461,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
14381
14461
|
})($$r.loc, $$r.value[0]);
|
|
14382
14462
|
return $$r.value = $$m, $$ctx.exit?.("BulletIndent", $$state, $$r, $$eventData), $$r;
|
|
14383
14463
|
}
|
|
14384
|
-
var Bullet$0$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L46, 'Bullet "\u2022"'), (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
14464
|
+
var Bullet$0$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L46, 'Bullet "\u2022"'), (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R21, "Bullet /[ \\t]*/"))), Bullet$1$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L7, 'Bullet "."'), (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R22, "Bullet /[ \\t]+/")));
|
|
14385
14465
|
function Bullet$0($$ctx, $$state) {
|
|
14386
14466
|
return Bullet$0$parser($$ctx, $$state);
|
|
14387
14467
|
}
|
|
@@ -14720,7 +14800,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
14720
14800
|
let $$eventData = $$entered?.data, $$final = ObjectPropertyDelimiter$0($$ctx, $$state) || ObjectPropertyDelimiter$1($$ctx, $$state) || ObjectPropertyDelimiter$2($$ctx, $$state);
|
|
14721
14801
|
return $$ctx.exit?.("ObjectPropertyDelimiter", $$state, $$final, $$eventData), $$final;
|
|
14722
14802
|
}
|
|
14723
|
-
var PropertyDefinition$0$parser = (0, import_lib2.$S)((0, import_lib2.$E)(_), InsertDotDotDot, IterationExpression), PropertyDefinition$1$parser = (0, import_lib2.$S)((0, import_lib2.$E)(_), NamedProperty), PropertyDefinition$2$parser = (0, import_lib2.$S)((0, import_lib2.$E)(_), (0, import_lib2.$TEXT)((0, import_lib2.$EXPECT)($
|
|
14803
|
+
var PropertyDefinition$0$parser = (0, import_lib2.$S)((0, import_lib2.$E)(_), InsertDotDotDot, IterationExpression), PropertyDefinition$1$parser = (0, import_lib2.$S)((0, import_lib2.$E)(_), NamedProperty), PropertyDefinition$2$parser = (0, import_lib2.$S)((0, import_lib2.$E)(_), (0, import_lib2.$TEXT)((0, import_lib2.$EXPECT)($R23, "PropertyDefinition /[!+-]?/")), PropertyName, (0, import_lib2.$Y)(ObjectPropertyDelimiter)), PropertyDefinition$3$parser = (0, import_lib2.$S)((0, import_lib2.$E)(_), MethodDefinition), PropertyDefinition$4$parser = (0, import_lib2.$S)((0, import_lib2.$E)(_), DotDotDot, Expression), PropertyDefinition$5$parser = (0, import_lib2.$S)((0, import_lib2.$E)(_), (0, import_lib2.$N)((0, import_lib2.$C)(EOS, (0, import_lib2.$EXPECT)($L7, 'PropertyDefinition "."'))), (0, import_lib2.$Q)(UnaryOp), CallExpression, (0, import_lib2.$E)(UnaryPostfix));
|
|
14724
14804
|
function PropertyDefinition$0($$ctx, $$state) {
|
|
14725
14805
|
let $$r = PropertyDefinition$0$parser($$ctx, $$state);
|
|
14726
14806
|
if (!$$r)
|
|
@@ -14941,7 +15021,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
14941
15021
|
})($$value[0], $$value[1], $$value[2], $$value[3]);
|
|
14942
15022
|
return $$r.value = $$m, $$ctx.exit?.("SnugNamedProperty", $$state, $$r, $$eventData), $$r;
|
|
14943
15023
|
}
|
|
14944
|
-
var PropertyName$3$parser = (0, import_lib2.$TEXT)((0, import_lib2.$S)((0, import_lib2.$E)(IdentifierName), (0, import_lib2.$EXPECT)($L22, 'PropertyName "-"'), (0, import_lib2.$EXPECT)($
|
|
15024
|
+
var PropertyName$3$parser = (0, import_lib2.$TEXT)((0, import_lib2.$S)((0, import_lib2.$E)(IdentifierName), (0, import_lib2.$EXPECT)($L22, 'PropertyName "-"'), (0, import_lib2.$EXPECT)($R24, "PropertyName /(?:\\p{ID_Continue}|[\\u200C\\u200D$-])*/"))), PropertyName$4$parser = IdentifierName;
|
|
14945
15025
|
function PropertyName$0($$ctx, $$state) {
|
|
14946
15026
|
return NumericLiteral($$ctx, $$state);
|
|
14947
15027
|
}
|
|
@@ -15375,7 +15455,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
15375
15455
|
let $$eventData = $$entered?.data, $$final = OperatorAssignmentOp$0($$ctx, $$state) || OperatorAssignmentOp$1($$ctx, $$state) || OperatorAssignmentOp$2($$ctx, $$state) || OperatorAssignmentOp$3($$ctx, $$state);
|
|
15376
15456
|
return $$ctx.exit?.("OperatorAssignmentOp", $$state, $$final, $$eventData), $$final;
|
|
15377
15457
|
}
|
|
15378
|
-
var AssignmentOpSymbol$0$parser = (0, import_lib2.$EXPECT)($L48, 'AssignmentOpSymbol "**="'), AssignmentOpSymbol$1$parser = (0, import_lib2.$EXPECT)($L49, 'AssignmentOpSymbol "*="'), AssignmentOpSymbol$2$parser = (0, import_lib2.$S)((0, import_lib2.$C)((0, import_lib2.$EXPECT)($L50, 'AssignmentOpSymbol "%/"'), (0, import_lib2.$EXPECT)($L51, 'AssignmentOpSymbol "\xF7"')), Equals), AssignmentOpSymbol$3$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L52, 'AssignmentOpSymbol "%%"'), Equals), AssignmentOpSymbol$4$parser = (0, import_lib2.$EXPECT)($L53, 'AssignmentOpSymbol "/="'), AssignmentOpSymbol$5$parser = (0, import_lib2.$EXPECT)($L54, 'AssignmentOpSymbol "%="'), AssignmentOpSymbol$6$parser = (0, import_lib2.$S)((0, import_lib2.$C)((0, import_lib2.$EXPECT)($L9, 'AssignmentOpSymbol "++"'), (0, import_lib2.$EXPECT)($L11, 'AssignmentOpSymbol "\u29FA"')), Equals), AssignmentOpSymbol$7$parser = (0, import_lib2.$EXPECT)($L55, 'AssignmentOpSymbol "+="'), AssignmentOpSymbol$8$parser = (0, import_lib2.$EXPECT)($L56, 'AssignmentOpSymbol "-="'), AssignmentOpSymbol$9$parser = (0, import_lib2.$EXPECT)($L57, 'AssignmentOpSymbol "<<="'), AssignmentOpSymbol$10$parser = (0, import_lib2.$EXPECT)($L58, 'AssignmentOpSymbol "\u226A="'), AssignmentOpSymbol$11$parser = (0, import_lib2.$EXPECT)($L59, 'AssignmentOpSymbol ">>>="'), AssignmentOpSymbol$12$parser = (0, import_lib2.$EXPECT)($L60, 'AssignmentOpSymbol "\u22D9="'), AssignmentOpSymbol$13$parser = (0, import_lib2.$EXPECT)($L61, 'AssignmentOpSymbol ">>="'), AssignmentOpSymbol$14$parser = (0, import_lib2.$EXPECT)($L62, 'AssignmentOpSymbol "\u226B="'), AssignmentOpSymbol$15$parser = (0, import_lib2.$EXPECT)($L63, 'AssignmentOpSymbol "&&="'), AssignmentOpSymbol$16$parser = (0, import_lib2.$EXPECT)($L64, 'AssignmentOpSymbol "&="'), AssignmentOpSymbol$17$parser = (0, import_lib2.$EXPECT)($L65, 'AssignmentOpSymbol "^="'), AssignmentOpSymbol$18$parser = (0, import_lib2.$EXPECT)($L66, 'AssignmentOpSymbol "||="'), AssignmentOpSymbol$19$parser = (0, import_lib2.$EXPECT)($L67, 'AssignmentOpSymbol "\u2016="'), AssignmentOpSymbol$20$parser = (0, import_lib2.$EXPECT)($L68, 'AssignmentOpSymbol "|="'), AssignmentOpSymbol$21$parser = (0, import_lib2.$EXPECT)($L69, 'AssignmentOpSymbol "??="'), AssignmentOpSymbol$22$parser = (0, import_lib2.$EXPECT)($L70, 'AssignmentOpSymbol "\u2047="'), AssignmentOpSymbol$23$parser = (0, import_lib2.$EXPECT)($L71, 'AssignmentOpSymbol "?="'), AssignmentOpSymbol$24$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L3, 'AssignmentOpSymbol "="'), (0, import_lib2.$N)((0, import_lib2.$EXPECT)($
|
|
15458
|
+
var AssignmentOpSymbol$0$parser = (0, import_lib2.$EXPECT)($L48, 'AssignmentOpSymbol "**="'), AssignmentOpSymbol$1$parser = (0, import_lib2.$EXPECT)($L49, 'AssignmentOpSymbol "*="'), AssignmentOpSymbol$2$parser = (0, import_lib2.$S)((0, import_lib2.$C)((0, import_lib2.$EXPECT)($L50, 'AssignmentOpSymbol "%/"'), (0, import_lib2.$EXPECT)($L51, 'AssignmentOpSymbol "\xF7"')), Equals), AssignmentOpSymbol$3$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L52, 'AssignmentOpSymbol "%%"'), Equals), AssignmentOpSymbol$4$parser = (0, import_lib2.$EXPECT)($L53, 'AssignmentOpSymbol "/="'), AssignmentOpSymbol$5$parser = (0, import_lib2.$EXPECT)($L54, 'AssignmentOpSymbol "%="'), AssignmentOpSymbol$6$parser = (0, import_lib2.$S)((0, import_lib2.$C)((0, import_lib2.$EXPECT)($L9, 'AssignmentOpSymbol "++"'), (0, import_lib2.$EXPECT)($L11, 'AssignmentOpSymbol "\u29FA"')), Equals), AssignmentOpSymbol$7$parser = (0, import_lib2.$EXPECT)($L55, 'AssignmentOpSymbol "+="'), AssignmentOpSymbol$8$parser = (0, import_lib2.$EXPECT)($L56, 'AssignmentOpSymbol "-="'), AssignmentOpSymbol$9$parser = (0, import_lib2.$EXPECT)($L57, 'AssignmentOpSymbol "<<="'), AssignmentOpSymbol$10$parser = (0, import_lib2.$EXPECT)($L58, 'AssignmentOpSymbol "\u226A="'), AssignmentOpSymbol$11$parser = (0, import_lib2.$EXPECT)($L59, 'AssignmentOpSymbol ">>>="'), AssignmentOpSymbol$12$parser = (0, import_lib2.$EXPECT)($L60, 'AssignmentOpSymbol "\u22D9="'), AssignmentOpSymbol$13$parser = (0, import_lib2.$EXPECT)($L61, 'AssignmentOpSymbol ">>="'), AssignmentOpSymbol$14$parser = (0, import_lib2.$EXPECT)($L62, 'AssignmentOpSymbol "\u226B="'), AssignmentOpSymbol$15$parser = (0, import_lib2.$EXPECT)($L63, 'AssignmentOpSymbol "&&="'), AssignmentOpSymbol$16$parser = (0, import_lib2.$EXPECT)($L64, 'AssignmentOpSymbol "&="'), AssignmentOpSymbol$17$parser = (0, import_lib2.$EXPECT)($L65, 'AssignmentOpSymbol "^="'), AssignmentOpSymbol$18$parser = (0, import_lib2.$EXPECT)($L66, 'AssignmentOpSymbol "||="'), AssignmentOpSymbol$19$parser = (0, import_lib2.$EXPECT)($L67, 'AssignmentOpSymbol "\u2016="'), AssignmentOpSymbol$20$parser = (0, import_lib2.$EXPECT)($L68, 'AssignmentOpSymbol "|="'), AssignmentOpSymbol$21$parser = (0, import_lib2.$EXPECT)($L69, 'AssignmentOpSymbol "??="'), AssignmentOpSymbol$22$parser = (0, import_lib2.$EXPECT)($L70, 'AssignmentOpSymbol "\u2047="'), AssignmentOpSymbol$23$parser = (0, import_lib2.$EXPECT)($L71, 'AssignmentOpSymbol "?="'), AssignmentOpSymbol$24$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L3, 'AssignmentOpSymbol "="'), (0, import_lib2.$N)((0, import_lib2.$EXPECT)($R25, "AssignmentOpSymbol /[=>]/"))), AssignmentOpSymbol$25$parser = (0, import_lib2.$S)(CoffeeWordAssignmentOp);
|
|
15379
15459
|
function AssignmentOpSymbol$0($$ctx, $$state) {
|
|
15380
15460
|
return AssignmentOpSymbol$0$parser($$ctx, $$state);
|
|
15381
15461
|
}
|
|
@@ -15604,7 +15684,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
15604
15684
|
})($$r.value), $$final = $$m !== import_lib2.SKIP ? ($$r.value = $$m, $$r) : void 0;
|
|
15605
15685
|
return $$ctx.exit?.("IdentifierBinaryOp", $$state, $$final, $$eventData), $$final;
|
|
15606
15686
|
}
|
|
15607
|
-
var BinaryOp$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
15687
|
+
var BinaryOp$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($R26, "BinaryOp /(?=\\p{ID_Start}|[_$^\u226A\u226B\u22D9\u2264\u2265\u2208\u220B\u2209\u220C\u2263\u2261\u2262\u2260=\u2A76\u2A75\u2016\u2047&|*\\/!?%\xF7<>\u29FA+-])/"), _BinaryOp);
|
|
15608
15688
|
function BinaryOp($$ctx, $$state) {
|
|
15609
15689
|
let $$entered = $$ctx.enter?.("BinaryOp", $$state);
|
|
15610
15690
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -15663,7 +15743,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
15663
15743
|
let $$eventData = $$entered?.data, $$final = _BinaryOp$0($$ctx, $$state) || _BinaryOp$1($$ctx, $$state) || _BinaryOp$2($$ctx, $$state);
|
|
15664
15744
|
return $$ctx.exit?.("_BinaryOp", $$state, $$final, $$eventData), $$final;
|
|
15665
15745
|
}
|
|
15666
|
-
var BinaryOpSymbol$0$parser = (0, import_lib2.$EXPECT)($L75, 'BinaryOpSymbol "**"'), BinaryOpSymbol$1$parser = (0, import_lib2.$EXPECT)($L74, 'BinaryOpSymbol "*"'), BinaryOpSymbol$2$parser = (0, import_lib2.$C)((0, import_lib2.$EXPECT)($L50, 'BinaryOpSymbol "%/"'), (0, import_lib2.$EXPECT)($L51, 'BinaryOpSymbol "\xF7"'), (0, import_lib2.$S)(CoffeeDivEnabled, (0, import_lib2.$EXPECT)($L47, 'BinaryOpSymbol "//"'))), BinaryOpSymbol$3$parser = (0, import_lib2.$EXPECT)($L52, 'BinaryOpSymbol "%%"'), BinaryOpSymbol$4$parser = (0, import_lib2.$EXPECT)($L76, 'BinaryOpSymbol "/"'), BinaryOpSymbol$5$parser = (0, import_lib2.$EXPECT)($L77, 'BinaryOpSymbol "%"'), BinaryOpSymbol$6$parser = (0, import_lib2.$C)((0, import_lib2.$EXPECT)($L9, 'BinaryOpSymbol "++"'), (0, import_lib2.$EXPECT)($L11, 'BinaryOpSymbol "\u29FA"')), BinaryOpSymbol$7$parser = (0, import_lib2.$EXPECT)($L78, 'BinaryOpSymbol "+"'), BinaryOpSymbol$8$parser = (0, import_lib2.$EXPECT)($L22, 'BinaryOpSymbol "-"'), BinaryOpSymbol$9$parser = (0, import_lib2.$EXPECT)($L79, 'BinaryOpSymbol "<="'), BinaryOpSymbol$10$parser = (0, import_lib2.$EXPECT)($L80, 'BinaryOpSymbol "\u2264"'), BinaryOpSymbol$11$parser = (0, import_lib2.$EXPECT)($L81, 'BinaryOpSymbol ">="'), BinaryOpSymbol$12$parser = (0, import_lib2.$EXPECT)($L82, 'BinaryOpSymbol "\u2265"'), BinaryOpSymbol$13$parser = (0, import_lib2.$EXPECT)($L21, 'BinaryOpSymbol "<?"'), BinaryOpSymbol$14$parser = (0, import_lib2.$EXPECT)($L83, 'BinaryOpSymbol "!<?"'), BinaryOpSymbol$15$parser = (0, import_lib2.$EXPECT)($L84, 'BinaryOpSymbol "<<"'), BinaryOpSymbol$16$parser = (0, import_lib2.$EXPECT)($L85, 'BinaryOpSymbol "\u226A"'), BinaryOpSymbol$17$parser = (0, import_lib2.$EXPECT)($L17, 'BinaryOpSymbol "<"'), BinaryOpSymbol$18$parser = (0, import_lib2.$EXPECT)($L86, 'BinaryOpSymbol ">>>"'), BinaryOpSymbol$19$parser = (0, import_lib2.$EXPECT)($L87, 'BinaryOpSymbol "\u22D9"'), BinaryOpSymbol$20$parser = (0, import_lib2.$EXPECT)($L88, 'BinaryOpSymbol ">>"'), BinaryOpSymbol$21$parser = (0, import_lib2.$EXPECT)($L89, 'BinaryOpSymbol "\u226B"'), BinaryOpSymbol$22$parser = (0, import_lib2.$EXPECT)($L44, 'BinaryOpSymbol ">"'), BinaryOpSymbol$23$parser = (0, import_lib2.$EXPECT)($L90, 'BinaryOpSymbol "!=="'), BinaryOpSymbol$24$parser = (0, import_lib2.$EXPECT)($L91, 'BinaryOpSymbol "\u2262"'), BinaryOpSymbol$25$parser = (0, import_lib2.$C)((0, import_lib2.$EXPECT)($L92, 'BinaryOpSymbol "!="'), (0, import_lib2.$EXPECT)($L93, 'BinaryOpSymbol "\u2260"')), BinaryOpSymbol$26$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L94, 'BinaryOpSymbol "isnt"'), NonIdContinue), BinaryOpSymbol$27$parser = (0, import_lib2.$EXPECT)($L95, 'BinaryOpSymbol "==="'), BinaryOpSymbol$28$parser = (0, import_lib2.$C)((0, import_lib2.$EXPECT)($L96, 'BinaryOpSymbol "\u2263"'), (0, import_lib2.$EXPECT)($L97, 'BinaryOpSymbol "\u2A76"')), BinaryOpSymbol$29$parser = (0, import_lib2.$C)((0, import_lib2.$EXPECT)($L98, 'BinaryOpSymbol "=="'), (0, import_lib2.$EXPECT)($L99, 'BinaryOpSymbol "\u2261"'), (0, import_lib2.$EXPECT)($L100, 'BinaryOpSymbol "\u2A75"')), BinaryOpSymbol$30$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L101, 'BinaryOpSymbol "and"'), NonIdContinue), BinaryOpSymbol$31$parser = (0, import_lib2.$EXPECT)($L102, 'BinaryOpSymbol "&&"'), BinaryOpSymbol$32$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L103, 'BinaryOpSymbol "or"'), NonIdContinue), BinaryOpSymbol$33$parser = (0, import_lib2.$EXPECT)($L104, 'BinaryOpSymbol "||"'), BinaryOpSymbol$34$parser = (0, import_lib2.$EXPECT)($L105, 'BinaryOpSymbol "\u2016"'), BinaryOpSymbol$35$parser = (0, import_lib2.$C)((0, import_lib2.$EXPECT)($L106, 'BinaryOpSymbol "^^"'), (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L107, 'BinaryOpSymbol "xor"'), NonIdContinue)), BinaryOpSymbol$36$parser = (0, import_lib2.$C)((0, import_lib2.$EXPECT)($
|
|
15746
|
+
var BinaryOpSymbol$0$parser = (0, import_lib2.$EXPECT)($L75, 'BinaryOpSymbol "**"'), BinaryOpSymbol$1$parser = (0, import_lib2.$EXPECT)($L74, 'BinaryOpSymbol "*"'), BinaryOpSymbol$2$parser = (0, import_lib2.$C)((0, import_lib2.$EXPECT)($L50, 'BinaryOpSymbol "%/"'), (0, import_lib2.$EXPECT)($L51, 'BinaryOpSymbol "\xF7"'), (0, import_lib2.$S)(CoffeeDivEnabled, (0, import_lib2.$EXPECT)($L47, 'BinaryOpSymbol "//"'))), BinaryOpSymbol$3$parser = (0, import_lib2.$EXPECT)($L52, 'BinaryOpSymbol "%%"'), BinaryOpSymbol$4$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L76, 'BinaryOpSymbol "/"'), (0, import_lib2.$N)((0, import_lib2.$EXPECT)($L76, 'BinaryOpSymbol "/"'))), BinaryOpSymbol$5$parser = (0, import_lib2.$EXPECT)($L77, 'BinaryOpSymbol "%"'), BinaryOpSymbol$6$parser = (0, import_lib2.$C)((0, import_lib2.$EXPECT)($L9, 'BinaryOpSymbol "++"'), (0, import_lib2.$EXPECT)($L11, 'BinaryOpSymbol "\u29FA"')), BinaryOpSymbol$7$parser = (0, import_lib2.$EXPECT)($L78, 'BinaryOpSymbol "+"'), BinaryOpSymbol$8$parser = (0, import_lib2.$EXPECT)($L22, 'BinaryOpSymbol "-"'), BinaryOpSymbol$9$parser = (0, import_lib2.$EXPECT)($L79, 'BinaryOpSymbol "<="'), BinaryOpSymbol$10$parser = (0, import_lib2.$EXPECT)($L80, 'BinaryOpSymbol "\u2264"'), BinaryOpSymbol$11$parser = (0, import_lib2.$EXPECT)($L81, 'BinaryOpSymbol ">="'), BinaryOpSymbol$12$parser = (0, import_lib2.$EXPECT)($L82, 'BinaryOpSymbol "\u2265"'), BinaryOpSymbol$13$parser = (0, import_lib2.$EXPECT)($L21, 'BinaryOpSymbol "<?"'), BinaryOpSymbol$14$parser = (0, import_lib2.$EXPECT)($L83, 'BinaryOpSymbol "!<?"'), BinaryOpSymbol$15$parser = (0, import_lib2.$EXPECT)($L84, 'BinaryOpSymbol "<<"'), BinaryOpSymbol$16$parser = (0, import_lib2.$EXPECT)($L85, 'BinaryOpSymbol "\u226A"'), BinaryOpSymbol$17$parser = (0, import_lib2.$EXPECT)($L17, 'BinaryOpSymbol "<"'), BinaryOpSymbol$18$parser = (0, import_lib2.$EXPECT)($L86, 'BinaryOpSymbol ">>>"'), BinaryOpSymbol$19$parser = (0, import_lib2.$EXPECT)($L87, 'BinaryOpSymbol "\u22D9"'), BinaryOpSymbol$20$parser = (0, import_lib2.$EXPECT)($L88, 'BinaryOpSymbol ">>"'), BinaryOpSymbol$21$parser = (0, import_lib2.$EXPECT)($L89, 'BinaryOpSymbol "\u226B"'), BinaryOpSymbol$22$parser = (0, import_lib2.$EXPECT)($L44, 'BinaryOpSymbol ">"'), BinaryOpSymbol$23$parser = (0, import_lib2.$EXPECT)($L90, 'BinaryOpSymbol "!=="'), BinaryOpSymbol$24$parser = (0, import_lib2.$EXPECT)($L91, 'BinaryOpSymbol "\u2262"'), BinaryOpSymbol$25$parser = (0, import_lib2.$C)((0, import_lib2.$EXPECT)($L92, 'BinaryOpSymbol "!="'), (0, import_lib2.$EXPECT)($L93, 'BinaryOpSymbol "\u2260"')), BinaryOpSymbol$26$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L94, 'BinaryOpSymbol "isnt"'), NonIdContinue), BinaryOpSymbol$27$parser = (0, import_lib2.$EXPECT)($L95, 'BinaryOpSymbol "==="'), BinaryOpSymbol$28$parser = (0, import_lib2.$C)((0, import_lib2.$EXPECT)($L96, 'BinaryOpSymbol "\u2263"'), (0, import_lib2.$EXPECT)($L97, 'BinaryOpSymbol "\u2A76"')), BinaryOpSymbol$29$parser = (0, import_lib2.$C)((0, import_lib2.$EXPECT)($L98, 'BinaryOpSymbol "=="'), (0, import_lib2.$EXPECT)($L99, 'BinaryOpSymbol "\u2261"'), (0, import_lib2.$EXPECT)($L100, 'BinaryOpSymbol "\u2A75"')), BinaryOpSymbol$30$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L101, 'BinaryOpSymbol "and"'), NonIdContinue), BinaryOpSymbol$31$parser = (0, import_lib2.$EXPECT)($L102, 'BinaryOpSymbol "&&"'), BinaryOpSymbol$32$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L103, 'BinaryOpSymbol "or"'), NonIdContinue), BinaryOpSymbol$33$parser = (0, import_lib2.$EXPECT)($L104, 'BinaryOpSymbol "||"'), BinaryOpSymbol$34$parser = (0, import_lib2.$EXPECT)($L105, 'BinaryOpSymbol "\u2016"'), BinaryOpSymbol$35$parser = (0, import_lib2.$C)((0, import_lib2.$EXPECT)($L106, 'BinaryOpSymbol "^^"'), (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L107, 'BinaryOpSymbol "xor"'), NonIdContinue)), BinaryOpSymbol$36$parser = (0, import_lib2.$C)((0, import_lib2.$EXPECT)($R27, "BinaryOpSymbol /!\\^\\^?/"), (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L108, 'BinaryOpSymbol "xnor"'), NonIdContinue)), BinaryOpSymbol$37$parser = (0, import_lib2.$EXPECT)($L109, 'BinaryOpSymbol "??"'), BinaryOpSymbol$38$parser = (0, import_lib2.$EXPECT)($L110, 'BinaryOpSymbol "\u2047"'), BinaryOpSymbol$39$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L6, 'BinaryOpSymbol "?"'), CoffeeBinaryExistentialEnabled), BinaryOpSymbol$40$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L111, 'BinaryOpSymbol "instanceof"'), NonIdContinue), BinaryOpSymbol$41$parser = (0, import_lib2.$S)(CoffeeOfEnabled, CoffeeOfOp), BinaryOpSymbol$42$parser = (0, import_lib2.$S)(OmittedNegation, __, NotOp), BinaryOpSymbol$43$parser = (0, import_lib2.$C)((0, import_lib2.$S)(Is, __, In), (0, import_lib2.$EXPECT)($L112, 'BinaryOpSymbol "\u2208"')), BinaryOpSymbol$44$parser = (0, import_lib2.$EXPECT)($L113, 'BinaryOpSymbol "\u220B"'), BinaryOpSymbol$45$parser = (0, import_lib2.$EXPECT)($L114, 'BinaryOpSymbol "\u220C"'), BinaryOpSymbol$46$parser = (0, import_lib2.$C)((0, import_lib2.$S)(Is, __, OmittedNegation, __, In), (0, import_lib2.$EXPECT)($L115, 'BinaryOpSymbol "\u2209"')), BinaryOpSymbol$47$parser = (0, import_lib2.$S)((0, import_lib2.$N)(CoffeeNotEnabled), Is, __, Not), BinaryOpSymbol$48$parser = (0, import_lib2.$S)(Is), BinaryOpSymbol$50$parser = (0, import_lib2.$EXPECT)($L116, 'BinaryOpSymbol "&"'), BinaryOpSymbol$51$parser = (0, import_lib2.$EXPECT)($L20, 'BinaryOpSymbol "^"'), BinaryOpSymbol$52$parser = (0, import_lib2.$EXPECT)($L117, 'BinaryOpSymbol "|"');
|
|
15667
15747
|
function BinaryOpSymbol$0($$ctx, $$state) {
|
|
15668
15748
|
return BinaryOpSymbol$0$parser($$ctx, $$state);
|
|
15669
15749
|
}
|
|
@@ -15697,7 +15777,13 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
15697
15777
|
return $$r.value = $$m, $$r;
|
|
15698
15778
|
}
|
|
15699
15779
|
function BinaryOpSymbol$4($$ctx, $$state) {
|
|
15700
|
-
|
|
15780
|
+
let $$r = BinaryOpSymbol$4$parser($$ctx, $$state);
|
|
15781
|
+
if (!$$r)
|
|
15782
|
+
return;
|
|
15783
|
+
let $$m = /* @__PURE__ */ (function($1) {
|
|
15784
|
+
return $1;
|
|
15785
|
+
})($$r.value[0]);
|
|
15786
|
+
return $$r.value = $$m, $$r;
|
|
15701
15787
|
}
|
|
15702
15788
|
function BinaryOpSymbol$5($$ctx, $$state) {
|
|
15703
15789
|
return BinaryOpSymbol$5$parser($$ctx, $$state);
|
|
@@ -16222,7 +16308,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
16222
16308
|
let $$eventData = $$entered?.data, $$final = Xor$0($$ctx, $$state) || Xor$1($$ctx, $$state);
|
|
16223
16309
|
return $$ctx.exit?.("Xor", $$state, $$final, $$eventData), $$final;
|
|
16224
16310
|
}
|
|
16225
|
-
var Xnor$0$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
16311
|
+
var Xnor$0$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R27, "Xnor /!\\^\\^?/")), Xnor$1$parser = (0, import_lib2.$EXPECT)($L108, 'Xnor "xnor"');
|
|
16226
16312
|
function Xnor$0($$ctx, $$state) {
|
|
16227
16313
|
return Xnor$0$parser($$ctx, $$state);
|
|
16228
16314
|
}
|
|
@@ -16235,7 +16321,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
16235
16321
|
let $$eventData = $$entered?.data, $$final = Xnor$0($$ctx, $$state) || Xnor$1($$ctx, $$state);
|
|
16236
16322
|
return $$ctx.exit?.("Xnor", $$state, $$final, $$eventData), $$final;
|
|
16237
16323
|
}
|
|
16238
|
-
var UnaryOp$0$parser = (0, import_lib2.$EXPECT)($
|
|
16324
|
+
var UnaryOp$0$parser = (0, import_lib2.$EXPECT)($R28, "UnaryOp /(?!\\+\\+|--)[!~+-](?!\\s)/"), UnaryOp$2$parser = (0, import_lib2.$S)((0, import_lib2.$C)(Delete, Void, Typeof), (0, import_lib2.$N)((0, import_lib2.$EXPECT)($R29, "UnaryOp /[:.]/")), (0, import_lib2.$E)(_)), UnaryOp$3$parser = (0, import_lib2.$S)(Not, (0, import_lib2.$N)((0, import_lib2.$EXPECT)($R29, "UnaryOp /[:.]/")), (0, import_lib2.$E)((0, import_lib2.$EXPECT)($L16, 'UnaryOp " "')), (0, import_lib2.$E)(_));
|
|
16239
16325
|
function UnaryOp$0($$ctx, $$state) {
|
|
16240
16326
|
let $$r = UnaryOp$0$parser($$ctx, $$state);
|
|
16241
16327
|
if (!$$r)
|
|
@@ -16460,7 +16546,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
16460
16546
|
let $$eventData = $$entered?.data, $$final = PostfixedCommaExpression$0($$ctx, $$state) || PostfixedCommaExpression$1($$ctx, $$state) || PostfixedCommaExpression$2($$ctx, $$state);
|
|
16461
16547
|
return $$ctx.exit?.("PostfixedCommaExpression", $$state, $$final, $$eventData), $$final;
|
|
16462
16548
|
}
|
|
16463
|
-
var PostfixStatement$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
16549
|
+
var PostfixStatement$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($R30, "PostfixStatement /(?=for|if|loop|unless|until|while)/"), _PostfixStatement);
|
|
16464
16550
|
function PostfixStatement($$ctx, $$state) {
|
|
16465
16551
|
let $$entered = $$ctx.enter?.("PostfixStatement", $$state);
|
|
16466
16552
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -16699,7 +16785,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
16699
16785
|
})($$value[0], $$value[1], $$value[2]), $$final = $$m !== import_lib2.SKIP ? ($$r.value = $$m, $$r) : void 0;
|
|
16700
16786
|
return $$ctx.exit?.("Label", $$state, $$final, $$eventData), $$final;
|
|
16701
16787
|
}
|
|
16702
|
-
var LabelIdentifier$0$parser = (0, import_lib2.$S)(Colon, IdentifierName), LabelIdentifier$1$parser = (0, import_lib2.$EXPECT)($
|
|
16788
|
+
var LabelIdentifier$0$parser = (0, import_lib2.$S)(Colon, IdentifierName), LabelIdentifier$1$parser = (0, import_lib2.$EXPECT)($R31, "LabelIdentifier /(?:loop|while|until|for|do)(?!\\p{ID_Continue})/"), LabelIdentifier$2$parser = Identifier;
|
|
16703
16789
|
function LabelIdentifier$0($$ctx, $$state) {
|
|
16704
16790
|
let $$r = LabelIdentifier$0$parser($$ctx, $$state);
|
|
16705
16791
|
if (!$$r)
|
|
@@ -16835,7 +16921,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
16835
16921
|
})($$r.loc, $$value[0], $$value[1], $$value[2]);
|
|
16836
16922
|
return $$r.value = $$m, $$ctx.exit?.("IfClause", $$state, $$r, $$eventData), $$r;
|
|
16837
16923
|
}
|
|
16838
|
-
var IterationStatement$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
16924
|
+
var IterationStatement$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($R32, "IterationStatement /(?=loop|comptime|do|for|until|while)/"), _IterationStatement);
|
|
16839
16925
|
function IterationStatement($$ctx, $$state) {
|
|
16840
16926
|
let $$entered = $$ctx.enter?.("IterationStatement", $$state);
|
|
16841
16927
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -18955,7 +19041,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
18955
19041
|
let $$eventData = $$entered?.data, $$final = MaybeParenNestedExpression$0($$ctx, $$state) || MaybeParenNestedExpression$1($$ctx, $$state) || MaybeParenNestedExpression$2($$ctx, $$state) || MaybeParenNestedExpression$3($$ctx, $$state);
|
|
18956
19042
|
return $$ctx.exit?.("MaybeParenNestedExpression", $$state, $$final, $$eventData), $$final;
|
|
18957
19043
|
}
|
|
18958
|
-
var ImportDeclaration$0$parser = (0, import_lib2.$S)(Import, _, Identifier, (0, import_lib2.$E)(_), Equals, __, (0, import_lib2.$EXPECT)($L132, 'ImportDeclaration "require"'), NonIdContinue, Arguments), ImportDeclaration$1$parser = (0, import_lib2.$S)((0, import_lib2.$C)((0, import_lib2.$S)(Import, SameLineOrIndentedFurther), ImpliedImport), Operator, (0, import_lib2.$E)(OperatorBehavior), SameLineOrIndentedFurther, OperatorNamedImports, SameLineOrIndentedFurther, FromClause), ImportDeclaration$2$parser = (0, import_lib2.$S)(Import, SameLineOrIndentedFurther, (0, import_lib2.$E)((0, import_lib2.$S)(TypeKeyword, SameLineOrIndentedFurther)), ImportClause, __, FromClause), ImportDeclaration$3$parser = (0, import_lib2.$S)(Import, (0, import_lib2.$Y)((0, import_lib2.$EXPECT)($
|
|
19044
|
+
var ImportDeclaration$0$parser = (0, import_lib2.$S)(Import, _, Identifier, (0, import_lib2.$E)(_), Equals, __, (0, import_lib2.$EXPECT)($L132, 'ImportDeclaration "require"'), NonIdContinue, Arguments), ImportDeclaration$1$parser = (0, import_lib2.$S)((0, import_lib2.$C)((0, import_lib2.$S)(Import, SameLineOrIndentedFurther), ImpliedImport), Operator, (0, import_lib2.$E)(OperatorBehavior), SameLineOrIndentedFurther, OperatorNamedImports, SameLineOrIndentedFurther, FromClause), ImportDeclaration$2$parser = (0, import_lib2.$S)(Import, SameLineOrIndentedFurther, (0, import_lib2.$E)((0, import_lib2.$S)(TypeKeyword, SameLineOrIndentedFurther)), ImportClause, __, FromClause), ImportDeclaration$3$parser = (0, import_lib2.$S)(Import, (0, import_lib2.$Y)((0, import_lib2.$EXPECT)($R33, "ImportDeclaration /\\s/")), SameLineOrIndentedFurther, ModuleSpecifier), ImportDeclaration$4$parser = (0, import_lib2.$S)(Import, (0, import_lib2.$E)(_), (0, import_lib2.$E)(UnclosedSingleLineStringLiteral), (0, import_lib2.$Y)(EOS)), ImportDeclaration$5$parser = (0, import_lib2.$S)(ImpliedImport, (0, import_lib2.$E)((0, import_lib2.$S)(TypeKeyword, SameLineOrIndentedFurther)), ImportClause, SameLineOrIndentedFurther, FromClause), ImportDeclaration$6$parser = (0, import_lib2.$S)(FromClause, SameLineOrIndentedFurther, Import, SameLineOrIndentedFurther, Operator, (0, import_lib2.$E)(OperatorBehavior), SameLineOrIndentedFurther, OperatorNamedImports), ImportDeclaration$7$parser = (0, import_lib2.$S)(FromClause, SameLineOrIndentedFurther, Import, SameLineOrIndentedFurther, (0, import_lib2.$E)((0, import_lib2.$S)(TypeKeyword, SameLineOrIndentedFurther)), ImportClause);
|
|
18959
19045
|
function ImportDeclaration$0($$ctx, $$state) {
|
|
18960
19046
|
let $$r = ImportDeclaration$0$parser($$ctx, $$state);
|
|
18961
19047
|
if (!$$r)
|
|
@@ -19505,7 +19591,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
19505
19591
|
let $$eventData = $$entered?.data, $$final = UnprocessedModuleSpecifier$0($$ctx, $$state) || UnprocessedModuleSpecifier$1($$ctx, $$state);
|
|
19506
19592
|
return $$ctx.exit?.("UnprocessedModuleSpecifier", $$state, $$final, $$eventData), $$final;
|
|
19507
19593
|
}
|
|
19508
|
-
var UnquotedSpecifier$parser = (0, import_lib2.$EXPECT)($
|
|
19594
|
+
var UnquotedSpecifier$parser = (0, import_lib2.$EXPECT)($R34, `UnquotedSpecifier /[^;"'\\s=>]+/`);
|
|
19509
19595
|
function UnquotedSpecifier($$ctx, $$state) {
|
|
19510
19596
|
let $$entered = $$ctx.enter?.("UnquotedSpecifier", $$state);
|
|
19511
19597
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -19952,7 +20038,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
19952
20038
|
})($$value[0], $$value[1]);
|
|
19953
20039
|
return $$r.value = $$m, $$ctx.exit?.("VariableDeclarationList", $$state, $$r, $$eventData), $$r;
|
|
19954
20040
|
}
|
|
19955
|
-
var NumericLiteral$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
20041
|
+
var NumericLiteral$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($R35, "NumericLiteral /(?=[0-9.])/"), NumericLiteralKind);
|
|
19956
20042
|
function NumericLiteral($$ctx, $$state) {
|
|
19957
20043
|
let $$entered = $$ctx.enter?.("NumericLiteral", $$state);
|
|
19958
20044
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -19987,14 +20073,14 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
19987
20073
|
let $$eventData = $$entered?.data, $$final = NumericLiteralKind$0($$ctx, $$state) || NumericLiteralKind$1($$ctx, $$state) || NumericLiteralKind$2($$ctx, $$state) || NumericLiteralKind$3($$ctx, $$state) || NumericLiteralKind$4($$ctx, $$state);
|
|
19988
20074
|
return $$ctx.exit?.("NumericLiteralKind", $$state, $$final, $$eventData), $$final;
|
|
19989
20075
|
}
|
|
19990
|
-
var DecimalBigIntegerLiteral$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
20076
|
+
var DecimalBigIntegerLiteral$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R36, "DecimalBigIntegerLiteral /(?:0|[1-9](?:_[0-9]|[0-9])*)n/"));
|
|
19991
20077
|
function DecimalBigIntegerLiteral($$ctx, $$state) {
|
|
19992
20078
|
let $$entered = $$ctx.enter?.("DecimalBigIntegerLiteral", $$state);
|
|
19993
20079
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
19994
20080
|
let $$eventData = $$entered?.data, $$final = DecimalBigIntegerLiteral$parser($$ctx, $$state);
|
|
19995
20081
|
return $$ctx.exit?.("DecimalBigIntegerLiteral", $$state, $$final, $$eventData), $$final;
|
|
19996
20082
|
}
|
|
19997
|
-
var DecimalLiteral$0$parser = (0, import_lib2.$S)((0, import_lib2.$TEXT)((0, import_lib2.$EXPECT)($
|
|
20083
|
+
var DecimalLiteral$0$parser = (0, import_lib2.$S)((0, import_lib2.$TEXT)((0, import_lib2.$EXPECT)($R37, "DecimalLiteral /(?:0|[1-9](?:_[0-9]|[0-9])*)(?=\\.(?:\\p{ID_Start}|[_$]))/")), (0, import_lib2.$N)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($L7, 'DecimalLiteral "."'), ExponentPart))), DecimalLiteral$1$parser = (0, import_lib2.$TEXT)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($R38, "DecimalLiteral /(?:0|[1-9](?:_[0-9]|[0-9])*)(?:\\.(?:[0-9](?:_[0-9]|[0-9])*))?/"), (0, import_lib2.$E)(ExponentPart))), DecimalLiteral$2$parser = (0, import_lib2.$TEXT)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($R39, "DecimalLiteral /(?:\\.[0-9](?:_[0-9]|[0-9])*)/"), (0, import_lib2.$E)(ExponentPart)));
|
|
19998
20084
|
function DecimalLiteral$0($$ctx, $$state) {
|
|
19999
20085
|
let $$r = DecimalLiteral$0$parser($$ctx, $$state);
|
|
20000
20086
|
if (!$$r)
|
|
@@ -20016,35 +20102,35 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20016
20102
|
let $$eventData = $$entered?.data, $$final = DecimalLiteral$0($$ctx, $$state) || DecimalLiteral$1($$ctx, $$state) || DecimalLiteral$2($$ctx, $$state);
|
|
20017
20103
|
return $$ctx.exit?.("DecimalLiteral", $$state, $$final, $$eventData), $$final;
|
|
20018
20104
|
}
|
|
20019
|
-
var ExponentPart$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
20105
|
+
var ExponentPart$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R40, "ExponentPart /(?:[eE][+-]?[0-9]+(?:_[0-9]|[0-9])*)/"));
|
|
20020
20106
|
function ExponentPart($$ctx, $$state) {
|
|
20021
20107
|
let $$entered = $$ctx.enter?.("ExponentPart", $$state);
|
|
20022
20108
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
20023
20109
|
let $$eventData = $$entered?.data, $$final = ExponentPart$parser($$ctx, $$state);
|
|
20024
20110
|
return $$ctx.exit?.("ExponentPart", $$state, $$final, $$eventData), $$final;
|
|
20025
20111
|
}
|
|
20026
|
-
var BinaryIntegerLiteral$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
20112
|
+
var BinaryIntegerLiteral$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R41, "BinaryIntegerLiteral /0[bB][01](?:[01]|_[01])*n?/"));
|
|
20027
20113
|
function BinaryIntegerLiteral($$ctx, $$state) {
|
|
20028
20114
|
let $$entered = $$ctx.enter?.("BinaryIntegerLiteral", $$state);
|
|
20029
20115
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
20030
20116
|
let $$eventData = $$entered?.data, $$final = BinaryIntegerLiteral$parser($$ctx, $$state);
|
|
20031
20117
|
return $$ctx.exit?.("BinaryIntegerLiteral", $$state, $$final, $$eventData), $$final;
|
|
20032
20118
|
}
|
|
20033
|
-
var OctalIntegerLiteral$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
20119
|
+
var OctalIntegerLiteral$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R42, "OctalIntegerLiteral /0[oO][0-7](?:[0-7]|_[0-7])*n?/"));
|
|
20034
20120
|
function OctalIntegerLiteral($$ctx, $$state) {
|
|
20035
20121
|
let $$entered = $$ctx.enter?.("OctalIntegerLiteral", $$state);
|
|
20036
20122
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
20037
20123
|
let $$eventData = $$entered?.data, $$final = OctalIntegerLiteral$parser($$ctx, $$state);
|
|
20038
20124
|
return $$ctx.exit?.("OctalIntegerLiteral", $$state, $$final, $$eventData), $$final;
|
|
20039
20125
|
}
|
|
20040
|
-
var HexIntegerLiteral$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
20126
|
+
var HexIntegerLiteral$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R43, "HexIntegerLiteral /0[xX][0-9a-fA-F](?:[0-9a-fA-F]|_[0-9a-fA-F])*n?/"));
|
|
20041
20127
|
function HexIntegerLiteral($$ctx, $$state) {
|
|
20042
20128
|
let $$entered = $$ctx.enter?.("HexIntegerLiteral", $$state);
|
|
20043
20129
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
20044
20130
|
let $$eventData = $$entered?.data, $$final = HexIntegerLiteral$parser($$ctx, $$state);
|
|
20045
20131
|
return $$ctx.exit?.("HexIntegerLiteral", $$state, $$final, $$eventData), $$final;
|
|
20046
20132
|
}
|
|
20047
|
-
var IntegerLiteral$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
20133
|
+
var IntegerLiteral$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($R44, "IntegerLiteral /(?=[0-9])/"), IntegerLiteralKind);
|
|
20048
20134
|
function IntegerLiteral($$ctx, $$state) {
|
|
20049
20135
|
let $$entered = $$ctx.enter?.("IntegerLiteral", $$state);
|
|
20050
20136
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -20079,7 +20165,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20079
20165
|
let $$eventData = $$entered?.data, $$final = IntegerLiteralKind$0($$ctx, $$state) || IntegerLiteralKind$1($$ctx, $$state) || IntegerLiteralKind$2($$ctx, $$state) || IntegerLiteralKind$3($$ctx, $$state) || IntegerLiteralKind$4($$ctx, $$state);
|
|
20080
20166
|
return $$ctx.exit?.("IntegerLiteralKind", $$state, $$final, $$eventData), $$final;
|
|
20081
20167
|
}
|
|
20082
|
-
var DecimalIntegerLiteral$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
20168
|
+
var DecimalIntegerLiteral$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R45, "DecimalIntegerLiteral /(?:0|[1-9](?:_[0-9]|[0-9])*)/"));
|
|
20083
20169
|
function DecimalIntegerLiteral($$ctx, $$state) {
|
|
20084
20170
|
let $$entered = $$ctx.enter?.("DecimalIntegerLiteral", $$state);
|
|
20085
20171
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -20119,7 +20205,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20119
20205
|
let $$eventData = $$entered?.data, $$final = StringLiteral$0($$ctx, $$state) || StringLiteral$1($$ctx, $$state);
|
|
20120
20206
|
return $$ctx.exit?.("StringLiteral", $$state, $$final, $$eventData), $$final;
|
|
20121
20207
|
}
|
|
20122
|
-
var DoubleStringCharacters$parser = (0, import_lib2.$EXPECT)($
|
|
20208
|
+
var DoubleStringCharacters$parser = (0, import_lib2.$EXPECT)($R46, 'DoubleStringCharacters /(?:\\\\.|[^"])*/');
|
|
20123
20209
|
function DoubleStringCharacters($$ctx, $$state) {
|
|
20124
20210
|
let $$entered = $$ctx.enter?.("DoubleStringCharacters", $$state);
|
|
20125
20211
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -20133,7 +20219,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20133
20219
|
})($$r.loc, $$r.value[0]);
|
|
20134
20220
|
return $$r.value = $$m, $$ctx.exit?.("DoubleStringCharacters", $$state, $$r, $$eventData), $$r;
|
|
20135
20221
|
}
|
|
20136
|
-
var SingleStringCharacters$parser = (0, import_lib2.$EXPECT)($
|
|
20222
|
+
var SingleStringCharacters$parser = (0, import_lib2.$EXPECT)($R47, "SingleStringCharacters /(?:\\\\.|[^'])*/");
|
|
20137
20223
|
function SingleStringCharacters($$ctx, $$state) {
|
|
20138
20224
|
let $$entered = $$ctx.enter?.("SingleStringCharacters", $$state);
|
|
20139
20225
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -20147,7 +20233,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20147
20233
|
})($$r.loc, $$r.value[0]);
|
|
20148
20234
|
return $$r.value = $$m, $$ctx.exit?.("SingleStringCharacters", $$state, $$r, $$eventData), $$r;
|
|
20149
20235
|
}
|
|
20150
|
-
var SingleLineStringLiteral$parser = (0, import_lib2.$C)((0, import_lib2.$TEXT)((0, import_lib2.$S)(DoubleQuote, (0, import_lib2.$EXPECT)($
|
|
20236
|
+
var SingleLineStringLiteral$parser = (0, import_lib2.$C)((0, import_lib2.$TEXT)((0, import_lib2.$S)(DoubleQuote, (0, import_lib2.$EXPECT)($R48, 'SingleLineStringLiteral /(?:\\\\.|[^"\\n])*/'), DoubleQuote)), (0, import_lib2.$TEXT)((0, import_lib2.$S)(SingleQuote, (0, import_lib2.$EXPECT)($R49, "SingleLineStringLiteral /(?:\\\\.|[^'\\n])*/"), SingleQuote)));
|
|
20151
20237
|
function SingleLineStringLiteral($$ctx, $$state) {
|
|
20152
20238
|
let $$entered = $$ctx.enter?.("SingleLineStringLiteral", $$state);
|
|
20153
20239
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -20165,7 +20251,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20165
20251
|
})($$r.loc, $$r.value);
|
|
20166
20252
|
return $$r.value = $$m, $$ctx.exit?.("SingleLineStringLiteral", $$state, $$r, $$eventData), $$r;
|
|
20167
20253
|
}
|
|
20168
|
-
var UnclosedSingleLineStringLiteral$parser = (0, import_lib2.$S)((0, import_lib2.$C)((0, import_lib2.$TEXT)((0, import_lib2.$S)(DoubleQuote, (0, import_lib2.$EXPECT)($
|
|
20254
|
+
var UnclosedSingleLineStringLiteral$parser = (0, import_lib2.$S)((0, import_lib2.$C)((0, import_lib2.$TEXT)((0, import_lib2.$S)(DoubleQuote, (0, import_lib2.$EXPECT)($R48, 'UnclosedSingleLineStringLiteral /(?:\\\\.|[^"\\n])*/'))), (0, import_lib2.$TEXT)((0, import_lib2.$S)(SingleQuote, (0, import_lib2.$EXPECT)($R49, "UnclosedSingleLineStringLiteral /(?:\\\\.|[^'\\n])*/")))), (0, import_lib2.$Y)(EOS));
|
|
20169
20255
|
function UnclosedSingleLineStringLiteral($$ctx, $$state) {
|
|
20170
20256
|
let $$entered = $$ctx.enter?.("UnclosedSingleLineStringLiteral", $$state);
|
|
20171
20257
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -20214,7 +20300,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20214
20300
|
let $$eventData = $$entered?.data, $$final = TripleDoubleStringContents$0($$ctx, $$state) || TripleDoubleStringContents$1($$ctx, $$state);
|
|
20215
20301
|
return $$ctx.exit?.("TripleDoubleStringContents", $$state, $$final, $$eventData), $$final;
|
|
20216
20302
|
}
|
|
20217
|
-
var CoffeeTripleDoubleStringCharacters$parser = (0, import_lib2.$EXPECT)($
|
|
20303
|
+
var CoffeeTripleDoubleStringCharacters$parser = (0, import_lib2.$EXPECT)($R50, 'CoffeeTripleDoubleStringCharacters /(?:"(?!"")|#(?!\\{)|\\\\.|[^#"])+/');
|
|
20218
20304
|
function CoffeeTripleDoubleStringCharacters($$ctx, $$state) {
|
|
20219
20305
|
let $$entered = $$ctx.enter?.("CoffeeTripleDoubleStringCharacters", $$state);
|
|
20220
20306
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -20228,7 +20314,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20228
20314
|
})($$r.loc, $$r.value[0]);
|
|
20229
20315
|
return $$r.value = $$m, $$ctx.exit?.("CoffeeTripleDoubleStringCharacters", $$state, $$r, $$eventData), $$r;
|
|
20230
20316
|
}
|
|
20231
|
-
var TripleDoubleStringCharacters$parser = (0, import_lib2.$EXPECT)($
|
|
20317
|
+
var TripleDoubleStringCharacters$parser = (0, import_lib2.$EXPECT)($R51, 'TripleDoubleStringCharacters /(?:"(?!"")|\\\\.|[^"])+/');
|
|
20232
20318
|
function TripleDoubleStringCharacters($$ctx, $$state) {
|
|
20233
20319
|
let $$entered = $$ctx.enter?.("TripleDoubleStringCharacters", $$state);
|
|
20234
20320
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -20242,7 +20328,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20242
20328
|
})($$r.loc, $$r.value[0]);
|
|
20243
20329
|
return $$r.value = $$m, $$ctx.exit?.("TripleDoubleStringCharacters", $$state, $$r, $$eventData), $$r;
|
|
20244
20330
|
}
|
|
20245
|
-
var TripleSingleStringCharacters$parser = (0, import_lib2.$EXPECT)($
|
|
20331
|
+
var TripleSingleStringCharacters$parser = (0, import_lib2.$EXPECT)($R52, "TripleSingleStringCharacters /(?:'(?!'')|\\\\.|[^'])*/");
|
|
20246
20332
|
function TripleSingleStringCharacters($$ctx, $$state) {
|
|
20247
20333
|
let $$entered = $$ctx.enter?.("TripleSingleStringCharacters", $$state);
|
|
20248
20334
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -20284,7 +20370,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20284
20370
|
})($$r.loc, $$value[1], $$value[2], $$value[3]);
|
|
20285
20371
|
return $$r.value = $$m, $$ctx.exit?.("CoffeeInterpolatedDoubleQuotedString", $$state, $$r, $$eventData), $$r;
|
|
20286
20372
|
}
|
|
20287
|
-
var CoffeeDoubleQuotedStringCharacters$parser = (0, import_lib2.$EXPECT)($
|
|
20373
|
+
var CoffeeDoubleQuotedStringCharacters$parser = (0, import_lib2.$EXPECT)($R53, 'CoffeeDoubleQuotedStringCharacters /(?:\\\\.|#(?!\\{)|[^"#])+/');
|
|
20288
20374
|
function CoffeeDoubleQuotedStringCharacters($$ctx, $$state) {
|
|
20289
20375
|
let $$entered = $$ctx.enter?.("CoffeeDoubleQuotedStringCharacters", $$state);
|
|
20290
20376
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -20335,7 +20421,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20335
20421
|
})($$r.loc, $$r.value);
|
|
20336
20422
|
return $$r.value = $$m, $$ctx.exit?.("RegularExpressionClass", $$state, $$r, $$eventData), $$r;
|
|
20337
20423
|
}
|
|
20338
|
-
var RegularExpressionClassCharacters$parser = (0, import_lib2.$EXPECT)($
|
|
20424
|
+
var RegularExpressionClassCharacters$parser = (0, import_lib2.$EXPECT)($R54, "RegularExpressionClassCharacters /(?:\\\\.|[^\\]])*/");
|
|
20339
20425
|
function RegularExpressionClassCharacters($$ctx, $$state) {
|
|
20340
20426
|
let $$entered = $$ctx.enter?.("RegularExpressionClassCharacters", $$state);
|
|
20341
20427
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -20358,7 +20444,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20358
20444
|
$$ctx.exit?.("HeregexLiteral", $$state, void 0, $$eventData);
|
|
20359
20445
|
return;
|
|
20360
20446
|
}
|
|
20361
|
-
let $$value = $$r.value, $$m = (function($0, open, body, close, flags) {
|
|
20447
|
+
let $$value = $$r.value, $$m = (function($loc, $0, open, body, close, flags) {
|
|
20362
20448
|
if (body.some((part) => part.type === "Substitution")) {
|
|
20363
20449
|
let children = [
|
|
20364
20450
|
{ ...open, token: "RegExp(`" },
|
|
@@ -20366,7 +20452,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20366
20452
|
body.map(
|
|
20367
20453
|
(e) => e.type === "Substitution" ? e : {
|
|
20368
20454
|
...e,
|
|
20369
|
-
token: e.token.replace(
|
|
20455
|
+
token: e.token.replace(/[`\\$]/g, "\\$&")
|
|
20370
20456
|
}
|
|
20371
20457
|
),
|
|
20372
20458
|
"`"
|
|
@@ -20379,14 +20465,24 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20379
20465
|
children
|
|
20380
20466
|
};
|
|
20381
20467
|
}
|
|
20468
|
+
if (!body.map(($14) => $14.token).join("").length) {
|
|
20469
|
+
let pos = open.$loc.pos + open.$loc.length, empty = {
|
|
20470
|
+
token: "(?:)",
|
|
20471
|
+
$loc: { pos, length: close.$loc.pos - pos }
|
|
20472
|
+
}, children = [open, empty, close];
|
|
20473
|
+
return flags.length && children.push(flags), {
|
|
20474
|
+
type: "RegularExpressionLiteral",
|
|
20475
|
+
children
|
|
20476
|
+
};
|
|
20477
|
+
}
|
|
20382
20478
|
return {
|
|
20383
20479
|
type: "RegularExpressionLiteral",
|
|
20384
20480
|
children: $0
|
|
20385
20481
|
};
|
|
20386
|
-
})($$value, $$value[0], $$value[1], $$value[2], $$value[3]);
|
|
20482
|
+
})($$r.loc, $$value, $$value[0], $$value[1], $$value[2], $$value[3]);
|
|
20387
20483
|
return $$r.value = $$m, $$ctx.exit?.("HeregexLiteral", $$state, $$r, $$eventData), $$r;
|
|
20388
20484
|
}
|
|
20389
|
-
var HeregexBody$parser = (0, import_lib2.$S)((0, import_lib2.$N)(
|
|
20485
|
+
var HeregexBody$parser = (0, import_lib2.$S)((0, import_lib2.$N)((0, import_lib2.$EXPECT)($L76, 'HeregexBody "/"')), (0, import_lib2.$Q)(HeregexPart));
|
|
20390
20486
|
function HeregexBody($$ctx, $$state) {
|
|
20391
20487
|
let $$entered = $$ctx.enter?.("HeregexBody", $$state);
|
|
20392
20488
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -20395,12 +20491,12 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20395
20491
|
$$ctx.exit?.("HeregexBody", $$state, void 0, $$eventData);
|
|
20396
20492
|
return;
|
|
20397
20493
|
}
|
|
20398
|
-
let $$m = /* @__PURE__ */ (function(
|
|
20399
|
-
return
|
|
20494
|
+
let $$m = /* @__PURE__ */ (function(body) {
|
|
20495
|
+
return body;
|
|
20400
20496
|
})($$r.value[1]);
|
|
20401
20497
|
return $$r.value = $$m, $$ctx.exit?.("HeregexBody", $$state, $$r, $$eventData), $$r;
|
|
20402
20498
|
}
|
|
20403
|
-
var HeregexPart$1$parser = (0, import_lib2.$S)(CoffeeInterpolationEnabled, CoffeeStringSubstitution), HeregexPart$2$parser = (0, import_lib2.$S)(TemplateSubstitution), HeregexPart$3$parser = (0, import_lib2.$EXPECT)($
|
|
20499
|
+
var HeregexPart$1$parser = (0, import_lib2.$S)(CoffeeInterpolationEnabled, CoffeeStringSubstitution), HeregexPart$2$parser = (0, import_lib2.$S)(TemplateSubstitution), HeregexPart$3$parser = (0, import_lib2.$TEXT)((0, import_lib2.$EXPECT)($R55, "HeregexPart /\\\\./")), HeregexPart$4$parser = (0, import_lib2.$S)(HeregexComment), HeregexPart$5$parser = (0, import_lib2.$EXPECT)($R56, "HeregexPart /[\\s]+/"), HeregexPart$6$parser = (0, import_lib2.$EXPECT)($R57, "HeregexPart /\\/(?!\\/\\/)/"), HeregexPart$7$parser = (0, import_lib2.$EXPECT)($R58, "HeregexPart /[^[\\/\\s#$\\\\]+|[#$]/");
|
|
20404
20500
|
function HeregexPart$0($$ctx, $$state) {
|
|
20405
20501
|
return RegularExpressionClass($$ctx, $$state);
|
|
20406
20502
|
}
|
|
@@ -20426,22 +20522,9 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20426
20522
|
let $$r = HeregexPart$3$parser($$ctx, $$state);
|
|
20427
20523
|
if (!$$r)
|
|
20428
20524
|
return;
|
|
20429
|
-
let $$m = (function($loc,
|
|
20430
|
-
|
|
20431
|
-
|
|
20432
|
-
case `
|
|
20433
|
-
`:
|
|
20434
|
-
token = "\\n";
|
|
20435
|
-
break;
|
|
20436
|
-
case "\r":
|
|
20437
|
-
token = "\\r";
|
|
20438
|
-
break;
|
|
20439
|
-
case " ":
|
|
20440
|
-
token = " ";
|
|
20441
|
-
break;
|
|
20442
|
-
}
|
|
20443
|
-
return { $loc, token };
|
|
20444
|
-
})($$r.loc, $$r.value[0]);
|
|
20525
|
+
let $$m = (function($loc, escape) {
|
|
20526
|
+
return { $loc, token: heregexEscapes[escape[1]] ?? escape };
|
|
20527
|
+
})($$r.loc, $$r.value);
|
|
20445
20528
|
return $$r.value = $$m, $$r;
|
|
20446
20529
|
}
|
|
20447
20530
|
function HeregexPart$4($$ctx, $$state) {
|
|
@@ -20505,7 +20588,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20505
20588
|
let $$eventData = $$entered?.data, $$final = HeregexComment$0($$ctx, $$state) || HeregexComment$1($$ctx, $$state);
|
|
20506
20589
|
return $$ctx.exit?.("HeregexComment", $$state, $$final, $$eventData), $$final;
|
|
20507
20590
|
}
|
|
20508
|
-
var RegularExpressionBody$parser = (0, import_lib2.$S)((0, import_lib2.$N)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
20591
|
+
var RegularExpressionBody$parser = (0, import_lib2.$S)((0, import_lib2.$N)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R59, "RegularExpressionBody /[*\\/\\r\\n]/"))), (0, import_lib2.$Q)(RegExpPart));
|
|
20509
20592
|
function RegularExpressionBody($$ctx, $$state) {
|
|
20510
20593
|
let $$entered = $$ctx.enter?.("RegularExpressionBody", $$state);
|
|
20511
20594
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -20524,21 +20607,21 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20524
20607
|
let $$eventData = $$entered?.data, $$final = RegExpPart$0($$ctx, $$state) || RegExpPart$1($$ctx, $$state);
|
|
20525
20608
|
return $$ctx.exit?.("RegExpPart", $$state, $$final, $$eventData), $$final;
|
|
20526
20609
|
}
|
|
20527
|
-
var RegExpCharacter$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
20610
|
+
var RegExpCharacter$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R60, "RegExpCharacter /(?:\\\\.|[^[\\/\\r\\n])+/"));
|
|
20528
20611
|
function RegExpCharacter($$ctx, $$state) {
|
|
20529
20612
|
let $$entered = $$ctx.enter?.("RegExpCharacter", $$state);
|
|
20530
20613
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
20531
20614
|
let $$eventData = $$entered?.data, $$final = RegExpCharacter$parser($$ctx, $$state);
|
|
20532
20615
|
return $$ctx.exit?.("RegExpCharacter", $$state, $$final, $$eventData), $$final;
|
|
20533
20616
|
}
|
|
20534
|
-
var RegularExpressionFlags$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
20617
|
+
var RegularExpressionFlags$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R61, "RegularExpressionFlags /(?:\\p{ID_Continue}|[\\u200C\\u200D$])*/"));
|
|
20535
20618
|
function RegularExpressionFlags($$ctx, $$state) {
|
|
20536
20619
|
let $$entered = $$ctx.enter?.("RegularExpressionFlags", $$state);
|
|
20537
20620
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
20538
20621
|
let $$eventData = $$entered?.data, $$final = RegularExpressionFlags$parser($$ctx, $$state);
|
|
20539
20622
|
return $$ctx.exit?.("RegularExpressionFlags", $$state, $$final, $$eventData), $$final;
|
|
20540
20623
|
}
|
|
20541
|
-
var TemplateLiteral$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
20624
|
+
var TemplateLiteral$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($R62, "TemplateLiteral /(?=[`'\"])/"), _TemplateLiteral);
|
|
20542
20625
|
function TemplateLiteral($$ctx, $$state) {
|
|
20543
20626
|
let $$entered = $$ctx.enter?.("TemplateLiteral", $$state);
|
|
20544
20627
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -20618,7 +20701,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20618
20701
|
})($$value[0], $$value[2]), $$final = $$m !== import_lib2.SKIP ? ($$r.value = $$m, $$r) : void 0;
|
|
20619
20702
|
return $$ctx.exit?.("TemplateSubstitution", $$state, $$final, $$eventData), $$final;
|
|
20620
20703
|
}
|
|
20621
|
-
var TemplateCharacters$parser = (0, import_lib2.$EXPECT)($
|
|
20704
|
+
var TemplateCharacters$parser = (0, import_lib2.$EXPECT)($R63, "TemplateCharacters /(?:\\$(?!\\{)|\\\\.|[^$`])+/");
|
|
20622
20705
|
function TemplateCharacters($$ctx, $$state) {
|
|
20623
20706
|
let $$entered = $$ctx.enter?.("TemplateCharacters", $$state);
|
|
20624
20707
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -20632,7 +20715,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20632
20715
|
})($$r.loc, $$r.value[0]);
|
|
20633
20716
|
return $$r.value = $$m, $$ctx.exit?.("TemplateCharacters", $$state, $$r, $$eventData), $$r;
|
|
20634
20717
|
}
|
|
20635
|
-
var TemplateBlockCharacters$parser = (0, import_lib2.$EXPECT)($
|
|
20718
|
+
var TemplateBlockCharacters$parser = (0, import_lib2.$EXPECT)($R64, "TemplateBlockCharacters /(?:\\$(?!\\{)|`(?!``)|\\\\.|[^$`])+/");
|
|
20636
20719
|
function TemplateBlockCharacters($$ctx, $$state) {
|
|
20637
20720
|
let $$entered = $$ctx.enter?.("TemplateBlockCharacters", $$state);
|
|
20638
20721
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -20646,7 +20729,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20646
20729
|
})($$r.loc, $$r.value[0]);
|
|
20647
20730
|
return $$r.value = $$m, $$ctx.exit?.("TemplateBlockCharacters", $$state, $$r, $$eventData), $$r;
|
|
20648
20731
|
}
|
|
20649
|
-
var ReservedWord$0$parser = (0, import_lib2.$S)((0, import_lib2.$TEXT)((0, import_lib2.$EXPECT)($
|
|
20732
|
+
var ReservedWord$0$parser = (0, import_lib2.$S)((0, import_lib2.$TEXT)((0, import_lib2.$EXPECT)($R65, "ReservedWord /(?:off|yes|on|no)/")), NonIdContinue, CoffeeBooleansEnabled), ReservedWord$1$parser = (0, import_lib2.$S)((0, import_lib2.$TEXT)((0, import_lib2.$EXPECT)($R66, "ReservedWord /isnt/")), NonIdContinue, CoffeeIsntEnabled), ReservedWord$2$parser = (0, import_lib2.$S)((0, import_lib2.$TEXT)((0, import_lib2.$EXPECT)($R67, "ReservedWord /by/")), NonIdContinue, CoffeeForLoopsEnabled), ReservedWord$3$parser = (0, import_lib2.$S)((0, import_lib2.$TEXT)((0, import_lib2.$EXPECT)($R68, "ReservedWord /of/")), NonIdContinue, CoffeeOfEnabled), ReservedWord$4$parser = (0, import_lib2.$S)((0, import_lib2.$TEXT)((0, import_lib2.$EXPECT)($R69, "ReservedWord /(?:instanceof|interface|protected|continue|debugger|function|default|extends|finally|private|delete|export|import|public|return|static|switch|typeof|unless|await|break|catch|class|const|false|super|throw|until|while|yield|case|else|enum|loop|null|this|true|void|with|and|for|let|new|not|try|var|do|if|in|is|or)/")), NonIdContinue);
|
|
20650
20733
|
function ReservedWord$0($$ctx, $$state) {
|
|
20651
20734
|
let $$r = ReservedWord$0$parser($$ctx, $$state);
|
|
20652
20735
|
if (!$$r)
|
|
@@ -20698,7 +20781,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20698
20781
|
let $$eventData = $$entered?.data, $$final = ReservedWord$0($$ctx, $$state) || ReservedWord$1($$ctx, $$state) || ReservedWord$2($$ctx, $$state) || ReservedWord$3($$ctx, $$state) || ReservedWord$4($$ctx, $$state);
|
|
20699
20782
|
return $$ctx.exit?.("ReservedWord", $$state, $$final, $$eventData), $$final;
|
|
20700
20783
|
}
|
|
20701
|
-
var Comment$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
20784
|
+
var Comment$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($R70, "Comment /(?=\\/|#)/"), _Comment);
|
|
20702
20785
|
function Comment($$ctx, $$state) {
|
|
20703
20786
|
let $$entered = $$ctx.enter?.("Comment", $$state);
|
|
20704
20787
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -20737,7 +20820,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20737
20820
|
let $$eventData = $$entered?.data, $$final = SingleLineComment$0($$ctx, $$state) || SingleLineComment$1($$ctx, $$state);
|
|
20738
20821
|
return $$ctx.exit?.("SingleLineComment", $$state, $$final, $$eventData), $$final;
|
|
20739
20822
|
}
|
|
20740
|
-
var JSSingleLineComment$parser = (0, import_lib2.$EXPECT)($
|
|
20823
|
+
var JSSingleLineComment$parser = (0, import_lib2.$EXPECT)($R71, "JSSingleLineComment /\\/\\/(?!\\/(?!\\/))[^\\r\\n]*/");
|
|
20741
20824
|
function JSSingleLineComment($$ctx, $$state) {
|
|
20742
20825
|
let $$entered = $$ctx.enter?.("JSSingleLineComment", $$state);
|
|
20743
20826
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -20763,7 +20846,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20763
20846
|
let $$eventData = $$entered?.data, $$final = MultiLineComment$0($$ctx, $$state) || MultiLineComment$1($$ctx, $$state);
|
|
20764
20847
|
return $$ctx.exit?.("MultiLineComment", $$state, $$final, $$eventData), $$final;
|
|
20765
20848
|
}
|
|
20766
|
-
var JSMultiLineComment$parser = (0, import_lib2.$TEXT)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($L139, 'JSMultiLineComment "/*"'), (0, import_lib2.$Q)((0, import_lib2.$S)((0, import_lib2.$N)((0, import_lib2.$EXPECT)($L140, 'JSMultiLineComment "*/"')), (0, import_lib2.$EXPECT)($
|
|
20849
|
+
var JSMultiLineComment$parser = (0, import_lib2.$TEXT)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($L139, 'JSMultiLineComment "/*"'), (0, import_lib2.$Q)((0, import_lib2.$S)((0, import_lib2.$N)((0, import_lib2.$EXPECT)($L140, 'JSMultiLineComment "*/"')), (0, import_lib2.$EXPECT)($R72, "JSMultiLineComment /./"))), (0, import_lib2.$EXPECT)($L140, 'JSMultiLineComment "*/"')));
|
|
20767
20850
|
function JSMultiLineComment($$ctx, $$state) {
|
|
20768
20851
|
let $$entered = $$ctx.enter?.("JSMultiLineComment", $$state);
|
|
20769
20852
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -20777,7 +20860,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20777
20860
|
})($$r.loc, $$r.value);
|
|
20778
20861
|
return $$r.value = $$m, $$ctx.exit?.("JSMultiLineComment", $$state, $$r, $$eventData), $$r;
|
|
20779
20862
|
}
|
|
20780
|
-
var CoffeeSingleLineComment$parser = (0, import_lib2.$EXPECT)($
|
|
20863
|
+
var CoffeeSingleLineComment$parser = (0, import_lib2.$EXPECT)($R73, "CoffeeSingleLineComment /#(?!##(?!#))([^\\r\\n]*)/");
|
|
20781
20864
|
function CoffeeSingleLineComment($$ctx, $$state) {
|
|
20782
20865
|
let $$entered = $$ctx.enter?.("CoffeeSingleLineComment", $$state);
|
|
20783
20866
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -20791,7 +20874,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20791
20874
|
})($$r.loc, $$r.value[1]);
|
|
20792
20875
|
return $$r.value = $$m, $$ctx.exit?.("CoffeeSingleLineComment", $$state, $$r, $$eventData), $$r;
|
|
20793
20876
|
}
|
|
20794
|
-
var CoffeeMultiLineComment$parser = (0, import_lib2.$S)(CoffeeHereCommentStart, (0, import_lib2.$TEXT)((0, import_lib2.$EXPECT)($
|
|
20877
|
+
var CoffeeMultiLineComment$parser = (0, import_lib2.$S)(CoffeeHereCommentStart, (0, import_lib2.$TEXT)((0, import_lib2.$EXPECT)($R74, "CoffeeMultiLineComment /[^]*?###/")));
|
|
20795
20878
|
function CoffeeMultiLineComment($$ctx, $$state) {
|
|
20796
20879
|
let $$entered = $$ctx.enter?.("CoffeeMultiLineComment", $$state);
|
|
20797
20880
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -20805,14 +20888,14 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20805
20888
|
})($$r.loc, $$r.value[1]);
|
|
20806
20889
|
return $$r.value = $$m, $$ctx.exit?.("CoffeeMultiLineComment", $$state, $$r, $$eventData), $$r;
|
|
20807
20890
|
}
|
|
20808
|
-
var CoffeeHereCommentStart$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
20891
|
+
var CoffeeHereCommentStart$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R75, "CoffeeHereCommentStart /###(?!#)/"));
|
|
20809
20892
|
function CoffeeHereCommentStart($$ctx, $$state) {
|
|
20810
20893
|
let $$entered = $$ctx.enter?.("CoffeeHereCommentStart", $$state);
|
|
20811
20894
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
20812
20895
|
let $$eventData = $$entered?.data, $$final = CoffeeHereCommentStart$parser($$ctx, $$state);
|
|
20813
20896
|
return $$ctx.exit?.("CoffeeHereCommentStart", $$state, $$final, $$eventData), $$final;
|
|
20814
20897
|
}
|
|
20815
|
-
var InlineComment$0$parser = (0, import_lib2.$EXPECT)($
|
|
20898
|
+
var InlineComment$0$parser = (0, import_lib2.$EXPECT)($R76, "InlineComment /\\/\\*(?:(?!\\*\\/)[^\\r\\n])*\\*\\//");
|
|
20816
20899
|
function InlineComment$0($$ctx, $$state) {
|
|
20817
20900
|
let $$r = InlineComment$0$parser($$ctx, $$state);
|
|
20818
20901
|
if (!$$r)
|
|
@@ -20845,7 +20928,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20845
20928
|
let $$eventData = $$entered?.data, $$final = TrailingComment$parser($$ctx, $$state);
|
|
20846
20929
|
return $$ctx.exit?.("TrailingComment", $$state, $$final, $$eventData), $$final;
|
|
20847
20930
|
}
|
|
20848
|
-
var _$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
20931
|
+
var _$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($R77, "_ /(?=[ \\t\\/\\\\#])/"), (0, import_lib2.$P)((0, import_lib2.$C)(NonNewlineWhitespace, InlineComment)));
|
|
20849
20932
|
function _($$ctx, $$state) {
|
|
20850
20933
|
let $$entered = $$ctx.enter?.("_", $$state);
|
|
20851
20934
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -20859,7 +20942,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20859
20942
|
})($$r.value[1]);
|
|
20860
20943
|
return $$r.value = $$m, $$ctx.exit?.("_", $$state, $$r, $$eventData), $$r;
|
|
20861
20944
|
}
|
|
20862
|
-
var NonNewlineWhitespace$0$parser = (0, import_lib2.$EXPECT)($
|
|
20945
|
+
var NonNewlineWhitespace$0$parser = (0, import_lib2.$EXPECT)($R22, "NonNewlineWhitespace /[ \\t]+/"), NonNewlineWhitespace$1$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L141, 'NonNewlineWhitespace "\\\\\\\\"'), CoffeeLineContinuationEnabled, EOL);
|
|
20863
20946
|
function NonNewlineWhitespace$0($$ctx, $$state) {
|
|
20864
20947
|
let $$r = NonNewlineWhitespace$0$parser($$ctx, $$state);
|
|
20865
20948
|
if (!$$r)
|
|
@@ -20898,7 +20981,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20898
20981
|
})($$r.value);
|
|
20899
20982
|
return $$r.value = $$m, $$ctx.exit?.("Trimmed_", $$state, $$r, $$eventData), $$r;
|
|
20900
20983
|
}
|
|
20901
|
-
var __$0$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
20984
|
+
var __$0$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($R78, "__ /(?=\\s|\\/|#)/"), (0, import_lib2.$Q)((0, import_lib2.$C)(Whitespace, Comment))), __$1$parser = (0, import_lib2.$EXPECT)($L0, '__ ""');
|
|
20902
20985
|
function __$0($$ctx, $$state) {
|
|
20903
20986
|
let $$r = __$0$parser($$ctx, $$state);
|
|
20904
20987
|
if (!$$r)
|
|
@@ -20917,7 +21000,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
20917
21000
|
let $$eventData = $$entered?.data, $$final = __$0($$ctx, $$state) || __$1($$ctx, $$state);
|
|
20918
21001
|
return $$ctx.exit?.("__", $$state, $$final, $$eventData), $$final;
|
|
20919
21002
|
}
|
|
20920
|
-
var Whitespace$parser = (0, import_lib2.$EXPECT)($
|
|
21003
|
+
var Whitespace$parser = (0, import_lib2.$EXPECT)($R56, "Whitespace /[\\s]+/");
|
|
20921
21004
|
function Whitespace($$ctx, $$state) {
|
|
20922
21005
|
let $$entered = $$ctx.enter?.("Whitespace", $$state);
|
|
20923
21006
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -21025,7 +21108,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
21025
21108
|
})($$r.value);
|
|
21026
21109
|
return $$r.value = $$m, $$ctx.exit?.("SemicolonDelimiter", $$state, $$r, $$eventData), $$r;
|
|
21027
21110
|
}
|
|
21028
|
-
var NonIdContinue$parser = (0, import_lib2.$EXPECT)($
|
|
21111
|
+
var NonIdContinue$parser = (0, import_lib2.$EXPECT)($RD2, () => `NonIdContinue /${$RD2.source}/`);
|
|
21029
21112
|
function NonIdContinue($$ctx, $$state) {
|
|
21030
21113
|
let $$entered = $$ctx.enter?.("NonIdContinue", $$state);
|
|
21031
21114
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -21304,7 +21387,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
21304
21387
|
})($$r.loc);
|
|
21305
21388
|
return $$r.value = $$m, $$ctx.exit?.("CoffeeSubstitutionStart", $$state, $$r, $$eventData), $$r;
|
|
21306
21389
|
}
|
|
21307
|
-
var Colon$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L15, 'Colon ":"'), (0, import_lib2.$N)((0, import_lib2.$EXPECT)($
|
|
21390
|
+
var Colon$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L15, 'Colon ":"'), (0, import_lib2.$N)((0, import_lib2.$EXPECT)($R79, "Colon /[=:]/")));
|
|
21308
21391
|
function Colon($$ctx, $$state) {
|
|
21309
21392
|
let $$entered = $$ctx.enter?.("Colon", $$state);
|
|
21310
21393
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -21416,7 +21499,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
21416
21499
|
})($$r.loc, $$r.value[0]);
|
|
21417
21500
|
return $$r.value = $$m, $$ctx.exit?.("Do", $$state, $$r, $$eventData), $$r;
|
|
21418
21501
|
}
|
|
21419
|
-
var Dot$0$parser = (0, import_lib2.$EXPECT)($L7, 'Dot "."'), Dot$1$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
21502
|
+
var Dot$0$parser = (0, import_lib2.$EXPECT)($L7, 'Dot "."'), Dot$1$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($R80, "Dot /['\u2019]s/"), Trimmed_);
|
|
21420
21503
|
function Dot$0($$ctx, $$state) {
|
|
21421
21504
|
let $$r = Dot$0$parser($$ctx, $$state);
|
|
21422
21505
|
if (!$$r)
|
|
@@ -22553,7 +22636,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
22553
22636
|
})($$value[0], $$value[1]);
|
|
22554
22637
|
return $$r.value = $$m, $$ctx.exit?.("JSXImplicitFragment", $$state, $$r, $$eventData), $$r;
|
|
22555
22638
|
}
|
|
22556
|
-
var JSXTag$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
22639
|
+
var JSXTag$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($R81, "JSXTag /(?=[<])/"), _JSXTag);
|
|
22557
22640
|
function JSXTag($$ctx, $$state) {
|
|
22558
22641
|
let $$entered = $$ctx.enter?.("JSXTag", $$state);
|
|
22559
22642
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -22792,7 +22875,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
22792
22875
|
let $$eventData = $$entered?.data, $$final = JSXElementName$0($$ctx, $$state) || JSXElementName$1($$ctx, $$state);
|
|
22793
22876
|
return $$ctx.exit?.("JSXElementName", $$state, $$final, $$eventData), $$final;
|
|
22794
22877
|
}
|
|
22795
|
-
var JSXIdentifierName$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
22878
|
+
var JSXIdentifierName$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R82, "JSXIdentifierName /(?:\\p{ID_Start}|[_$])(?:\\p{ID_Continue}|[\\u200C\\u200D$-])*/"));
|
|
22796
22879
|
function JSXIdentifierName($$ctx, $$state) {
|
|
22797
22880
|
let $$entered = $$ctx.enter?.("JSXIdentifierName", $$state);
|
|
22798
22881
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -22852,7 +22935,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
22852
22935
|
})($$r.value);
|
|
22853
22936
|
return $$r.value = $$m, $$ctx.exit?.("JSXAttributes", $$state, $$r, $$eventData), $$r;
|
|
22854
22937
|
}
|
|
22855
|
-
var JSXAttribute$0$parser = (0, import_lib2.$S)(BracedObjectLiteral), JSXAttribute$1$parser = (0, import_lib2.$S)(JSXAttributeName, (0, import_lib2.$C)(JSXAttributeInitializer, (0, import_lib2.$Y)(JSXAttributeSpace))), JSXAttribute$2$parser = (0, import_lib2.$S)(InsertInlineOpenBrace, DotDotDot, InlineJSXAttributeValue, InsertCloseBrace, (0, import_lib2.$Y)(JSXAttributeSpace)), JSXAttribute$3$parser = (0, import_lib2.$S)(AtThis, (0, import_lib2.$E)(Identifier), (0, import_lib2.$Q)(InlineJSXCallExpressionRest), (0, import_lib2.$Y)(JSXAttributeSpace)), JSXAttribute$4$parser = (0, import_lib2.$S)(Identifier, (0, import_lib2.$P)(InlineJSXCallExpressionRest), (0, import_lib2.$Y)(JSXAttributeSpace)), JSXAttribute$5$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L177, 'JSXAttribute "#"'), JSXShorthandString), JSXAttribute$6$parser = (0, import_lib2.$S)(Dot, JSXShorthandString), JSXAttribute$7$parser = (0, import_lib2.$S)((0, import_lib2.$TEXT)((0, import_lib2.$EXPECT)($
|
|
22938
|
+
var JSXAttribute$0$parser = (0, import_lib2.$S)(BracedObjectLiteral), JSXAttribute$1$parser = (0, import_lib2.$S)(JSXAttributeName, (0, import_lib2.$C)(JSXAttributeInitializer, (0, import_lib2.$Y)(JSXAttributeSpace))), JSXAttribute$2$parser = (0, import_lib2.$S)(InsertInlineOpenBrace, DotDotDot, InlineJSXAttributeValue, InsertCloseBrace, (0, import_lib2.$Y)(JSXAttributeSpace)), JSXAttribute$3$parser = (0, import_lib2.$S)(AtThis, (0, import_lib2.$E)(Identifier), (0, import_lib2.$Q)(InlineJSXCallExpressionRest), (0, import_lib2.$Y)(JSXAttributeSpace)), JSXAttribute$4$parser = (0, import_lib2.$S)(Identifier, (0, import_lib2.$P)(InlineJSXCallExpressionRest), (0, import_lib2.$Y)(JSXAttributeSpace)), JSXAttribute$5$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L177, 'JSXAttribute "#"'), JSXShorthandString), JSXAttribute$6$parser = (0, import_lib2.$S)(Dot, JSXShorthandString), JSXAttribute$7$parser = (0, import_lib2.$S)((0, import_lib2.$TEXT)((0, import_lib2.$EXPECT)($R83, "JSXAttribute /[!+-]/")), JSXAttributeName, (0, import_lib2.$Y)(JSXAttributeSpace));
|
|
22856
22939
|
function JSXAttribute$0($$ctx, $$state) {
|
|
22857
22940
|
let $$r = JSXAttribute$0$parser($$ctx, $$state);
|
|
22858
22941
|
if (!$$r)
|
|
@@ -22963,14 +23046,14 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
22963
23046
|
let $$eventData = $$entered?.data, $$final = JSXAttribute$0($$ctx, $$state) || JSXAttribute$1($$ctx, $$state) || JSXAttribute$2($$ctx, $$state) || JSXAttribute$3($$ctx, $$state) || JSXAttribute$4($$ctx, $$state) || JSXAttribute$5($$ctx, $$state) || JSXAttribute$6($$ctx, $$state) || JSXAttribute$7($$ctx, $$state);
|
|
22964
23047
|
return $$ctx.exit?.("JSXAttribute", $$state, $$final, $$eventData), $$final;
|
|
22965
23048
|
}
|
|
22966
|
-
var JSXAttributeSpace$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
23049
|
+
var JSXAttributeSpace$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R84, "JSXAttributeSpace /[\\s>]|\\/>/"));
|
|
22967
23050
|
function JSXAttributeSpace($$ctx, $$state) {
|
|
22968
23051
|
let $$entered = $$ctx.enter?.("JSXAttributeSpace", $$state);
|
|
22969
23052
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
22970
23053
|
let $$eventData = $$entered?.data, $$final = JSXAttributeSpace$parser($$ctx, $$state);
|
|
22971
23054
|
return $$ctx.exit?.("JSXAttributeSpace", $$state, $$final, $$eventData), $$final;
|
|
22972
23055
|
}
|
|
22973
|
-
var JSXShorthandString$0$parser = (0, import_lib2.$EXPECT)($
|
|
23056
|
+
var JSXShorthandString$0$parser = (0, import_lib2.$EXPECT)($R85, "JSXShorthandString /(?:[\\w\\-:]+|\\([^()]*\\)|\\[[^\\[\\]]*\\])+/"), JSXShorthandString$1$parser = (0, import_lib2.$S)(TemplateLiteral), JSXShorthandString$3$parser = (0, import_lib2.$S)(OpenBrace, PostfixedExpressionOrCommaLoop, __, CloseBrace);
|
|
22974
23057
|
function JSXShorthandString$0($$ctx, $$state) {
|
|
22975
23058
|
let $$r = JSXShorthandString$0$parser($$ctx, $$state);
|
|
22976
23059
|
if (!$$r)
|
|
@@ -23049,7 +23132,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
23049
23132
|
let $$eventData = $$entered?.data, $$final = JSXAttributeInitializer$0($$ctx, $$state) || JSXAttributeInitializer$1($$ctx, $$state);
|
|
23050
23133
|
return $$ctx.exit?.("JSXAttributeInitializer", $$state, $$final, $$eventData), $$final;
|
|
23051
23134
|
}
|
|
23052
|
-
var JSXAttributeValue$0$parser = (0, import_lib2.$S)(OpenBrace, PostfixedExpressionOrCommaLoop, __, CloseBrace), JSXAttributeValue$3$parser = (0, import_lib2.$S)(InsertInlineOpenBrace, InlineJSXAttributeValue, InsertCloseBrace, (0, import_lib2.$Y)(JSXAttributeSpace)), JSXAttributeValue$4$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
23135
|
+
var JSXAttributeValue$0$parser = (0, import_lib2.$S)(OpenBrace, PostfixedExpressionOrCommaLoop, __, CloseBrace), JSXAttributeValue$3$parser = (0, import_lib2.$S)(InsertInlineOpenBrace, InlineJSXAttributeValue, InsertCloseBrace, (0, import_lib2.$Y)(JSXAttributeSpace)), JSXAttributeValue$4$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R86, `JSXAttributeValue /"[^"]*"|'[^']*'/`));
|
|
23053
23136
|
function JSXAttributeValue$0($$ctx, $$state) {
|
|
23054
23137
|
return JSXAttributeValue$0$parser($$ctx, $$state);
|
|
23055
23138
|
}
|
|
@@ -23091,7 +23174,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
23091
23174
|
})($$value, $$value[0], $$value[1]);
|
|
23092
23175
|
return $$r.value = $$m, $$ctx.exit?.("InlineJSXAttributeValue", $$state, $$r, $$eventData), $$r;
|
|
23093
23176
|
}
|
|
23094
|
-
var InlineJSXBinaryOpRHS$parser = (0, import_lib2.$S)((0, import_lib2.$N)((0, import_lib2.$EXPECT)($
|
|
23177
|
+
var InlineJSXBinaryOpRHS$parser = (0, import_lib2.$S)((0, import_lib2.$N)((0, import_lib2.$EXPECT)($R87, "InlineJSXBinaryOpRHS /[<>]/")), BinaryOp, InlineJSXUnaryExpression);
|
|
23095
23178
|
function InlineJSXBinaryOpRHS($$ctx, $$state) {
|
|
23096
23179
|
let $$entered = $$ctx.enter?.("InlineJSXBinaryOpRHS", $$state);
|
|
23097
23180
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -23119,7 +23202,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
23119
23202
|
})($$value[0], $$value[1], $$value[2]);
|
|
23120
23203
|
return $$r.value = $$m, $$ctx.exit?.("InlineJSXUnaryExpression", $$state, $$r, $$eventData), $$r;
|
|
23121
23204
|
}
|
|
23122
|
-
var InlineJSXUnaryOp$parser = (0, import_lib2.$EXPECT)($
|
|
23205
|
+
var InlineJSXUnaryOp$parser = (0, import_lib2.$EXPECT)($R88, "InlineJSXUnaryOp /[!~+-](?!\\s|[!~+-]*&)/");
|
|
23123
23206
|
function InlineJSXUnaryOp($$ctx, $$state) {
|
|
23124
23207
|
let $$entered = $$ctx.enter?.("InlineJSXUnaryOp", $$state);
|
|
23125
23208
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -23551,7 +23634,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
23551
23634
|
})($$r.value[1]);
|
|
23552
23635
|
return $$r.value = $$m, $$ctx.exit?.("JSXComment", $$state, $$r, $$eventData), $$r;
|
|
23553
23636
|
}
|
|
23554
|
-
var JSXCommentContent$parser = (0, import_lib2.$EXPECT)($
|
|
23637
|
+
var JSXCommentContent$parser = (0, import_lib2.$EXPECT)($R89, "JSXCommentContent /(?:-[^-]|[^-]*)*/");
|
|
23555
23638
|
function JSXCommentContent($$ctx, $$state) {
|
|
23556
23639
|
let $$entered = $$ctx.enter?.("JSXCommentContent", $$state);
|
|
23557
23640
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -23565,7 +23648,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
23565
23648
|
})($$r.loc, $$r.value[0]);
|
|
23566
23649
|
return $$r.value = $$m, $$ctx.exit?.("JSXCommentContent", $$state, $$r, $$eventData), $$r;
|
|
23567
23650
|
}
|
|
23568
|
-
var JSXText$parser = (0, import_lib2.$EXPECT)($
|
|
23651
|
+
var JSXText$parser = (0, import_lib2.$EXPECT)($R90, "JSXText /[^{}<>\\r\\n]+/");
|
|
23569
23652
|
function JSXText($$ctx, $$state) {
|
|
23570
23653
|
let $$entered = $$ctx.enter?.("JSXText", $$state);
|
|
23571
23654
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -24453,7 +24536,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
24453
24536
|
})($$value[0], $$value[1]);
|
|
24454
24537
|
return $$r.value = $$m, $$ctx.exit?.("TypeProperty", $$state, $$r, $$eventData), $$r;
|
|
24455
24538
|
}
|
|
24456
|
-
var TypeIndexSignature$parser = (0, import_lib2.$S)((0, import_lib2.$E)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
24539
|
+
var TypeIndexSignature$parser = (0, import_lib2.$S)((0, import_lib2.$E)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($R91, "TypeIndexSignature /[+-]?/"), Readonly, NotDedented)), OpenBracket, TypeIndex, CloseBracket, (0, import_lib2.$E)((0, import_lib2.$S)(__, (0, import_lib2.$EXPECT)($R15, "TypeIndexSignature /[+-]/"), (0, import_lib2.$Y)((0, import_lib2.$S)((0, import_lib2.$E)(_), QuestionMark)))));
|
|
24457
24540
|
function TypeIndexSignature($$ctx, $$state) {
|
|
24458
24541
|
let $$entered = $$ctx.enter?.("TypeIndexSignature", $$state);
|
|
24459
24542
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -25247,7 +25330,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
25247
25330
|
})($$value[0], $$value[0], $$value[1]);
|
|
25248
25331
|
return $$r.value = $$m, $$ctx.exit?.("TypeWithPostfix", $$state, $$r, $$eventData), $$r;
|
|
25249
25332
|
}
|
|
25250
|
-
var TypeConditional$0$parser = (0, import_lib2.$S)((0, import_lib2.$E)(_), (0, import_lib2.$EXPECT)($
|
|
25333
|
+
var TypeConditional$0$parser = (0, import_lib2.$S)((0, import_lib2.$E)(_), (0, import_lib2.$EXPECT)($R92, "TypeConditional /(?=if|unless)/"), TypeIfThenElse), TypeConditional$1$parser = (0, import_lib2.$S)(TypeCondition, NotDedented, QuestionMark, __, Type, __, Colon, __, Type), TypeConditional$2$parser = TypeBinary;
|
|
25251
25334
|
function TypeConditional$0($$ctx, $$state) {
|
|
25252
25335
|
let $$r = TypeConditional$0$parser($$ctx, $$state);
|
|
25253
25336
|
if (!$$r)
|
|
@@ -25563,7 +25646,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
25563
25646
|
if (abstract && !new_ && (children[1] = {
|
|
25564
25647
|
type: "Error",
|
|
25565
25648
|
message: "abstract function types must be constructors (abstract new)"
|
|
25566
|
-
}), returnType.$loc && returnType.token === "") {
|
|
25649
|
+
}), "token" in returnType && returnType.$loc && returnType.token === "") {
|
|
25567
25650
|
let t = {
|
|
25568
25651
|
type: "VoidType",
|
|
25569
25652
|
$loc: returnType.$loc,
|
|
@@ -25659,7 +25742,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
25659
25742
|
let $$eventData = $$entered?.data, $$final = TypeApplicationStart$0($$ctx, $$state) || TypeApplicationStart$1($$ctx, $$state);
|
|
25660
25743
|
return $$ctx.exit?.("TypeApplicationStart", $$state, $$final, $$eventData), $$final;
|
|
25661
25744
|
}
|
|
25662
|
-
var ForbiddenImplicitTypeCalls$1$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
25745
|
+
var ForbiddenImplicitTypeCalls$1$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R93, "ForbiddenImplicitTypeCalls /[|&<!=\\-\u21D2\u2192]/")), ForbiddenImplicitTypeCalls$2$parser = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R94, "ForbiddenImplicitTypeCalls /(extends|not|is)(?!\\p{ID_Continue}|[\\u200C\\u200D$])/"));
|
|
25663
25746
|
function ForbiddenImplicitTypeCalls$0($$ctx, $$state) {
|
|
25664
25747
|
return ReservedBinary($$ctx, $$state);
|
|
25665
25748
|
}
|
|
@@ -25829,7 +25912,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
25829
25912
|
})($$value, $$value[1]);
|
|
25830
25913
|
return $$r.value = $$m, $$ctx.exit?.("TypeParameters", $$state, $$r, $$eventData), $$r;
|
|
25831
25914
|
}
|
|
25832
|
-
var TypeParameter$parser = (0, import_lib2.$S)(__, (0, import_lib2.$Q)((0, import_lib2.$S)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
25915
|
+
var TypeParameter$parser = (0, import_lib2.$S)(__, (0, import_lib2.$Q)((0, import_lib2.$S)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R95, "TypeParameter /const|in|out/")), _)), Identifier, (0, import_lib2.$E)(TypeConstraint), (0, import_lib2.$E)(TypeInitializer), TypeParameterDelimiter);
|
|
25833
25916
|
function TypeParameter($$ctx, $$state) {
|
|
25834
25917
|
let $$entered = $$ctx.enter?.("TypeParameter", $$state);
|
|
25835
25918
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -25895,14 +25978,14 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
25895
25978
|
})($$r.value);
|
|
25896
25979
|
return $$r.value = $$m, $$ctx.exit?.("ThisType", $$state, $$r, $$eventData), $$r;
|
|
25897
25980
|
}
|
|
25898
|
-
var Shebang$parser = (0, import_lib2.$S)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
25981
|
+
var Shebang$parser = (0, import_lib2.$S)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R96, "Shebang /#![^\\r\\n]*/")), EOL);
|
|
25899
25982
|
function Shebang($$ctx, $$state) {
|
|
25900
25983
|
let $$entered = $$ctx.enter?.("Shebang", $$state);
|
|
25901
25984
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
25902
25985
|
let $$eventData = $$entered?.data, $$final = Shebang$parser($$ctx, $$state);
|
|
25903
25986
|
return $$ctx.exit?.("Shebang", $$state, $$final, $$eventData), $$final;
|
|
25904
25987
|
}
|
|
25905
|
-
var CivetPrologue$0$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
25988
|
+
var CivetPrologue$0$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($R97, "CivetPrologue /[\\t ]*/"), DoubleQuote, CivetPrologueContent, DoubleQuote, SimpleStatementDelimiter, (0, import_lib2.$EXPECT)($R21, "CivetPrologue /[ \\t]*/"), (0, import_lib2.$C)(EOL, (0, import_lib2.$Y)(RestOfLine))), CivetPrologue$1$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($R97, "CivetPrologue /[\\t ]*/"), SingleQuote, CivetPrologueContent, SingleQuote, SimpleStatementDelimiter, (0, import_lib2.$EXPECT)($R21, "CivetPrologue /[ \\t]*/"), (0, import_lib2.$C)(EOL, (0, import_lib2.$Y)(RestOfLine)));
|
|
25906
25989
|
function CivetPrologue$0($$ctx, $$state) {
|
|
25907
25990
|
let $$r = CivetPrologue$0$parser($$ctx, $$state);
|
|
25908
25991
|
if (!$$r)
|
|
@@ -25927,7 +26010,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
25927
26010
|
let $$eventData = $$entered?.data, $$final = CivetPrologue$0($$ctx, $$state) || CivetPrologue$1($$ctx, $$state);
|
|
25928
26011
|
return $$ctx.exit?.("CivetPrologue", $$state, $$final, $$eventData), $$final;
|
|
25929
26012
|
}
|
|
25930
|
-
var CivetPrologueContent$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L248, 'CivetPrologueContent "civet"'), NonIdContinue, (0, import_lib2.$Q)(CivetOption), (0, import_lib2.$EXPECT)($
|
|
26013
|
+
var CivetPrologueContent$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($L248, 'CivetPrologueContent "civet"'), NonIdContinue, (0, import_lib2.$Q)(CivetOption), (0, import_lib2.$EXPECT)($R98, "CivetPrologueContent /[\\s]*/"));
|
|
25931
26014
|
function CivetPrologueContent($$ctx, $$state) {
|
|
25932
26015
|
let $$entered = $$ctx.enter?.("CivetPrologueContent", $$state);
|
|
25933
26016
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -25945,7 +26028,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
25945
26028
|
})($$r.value[2]);
|
|
25946
26029
|
return $$r.value = $$m, $$ctx.exit?.("CivetPrologueContent", $$state, $$r, $$eventData), $$r;
|
|
25947
26030
|
}
|
|
25948
|
-
var CivetOption$parser = (0, import_lib2.$EXPECT)($
|
|
26031
|
+
var CivetOption$parser = (0, import_lib2.$EXPECT)($R99, "CivetOption /\\s+([+-]?)([a-zA-Z0-9-]+)(\\s*=\\s*([\\p{ID_Continue}.,+-]*))?/");
|
|
25949
26032
|
function CivetOption($$ctx, $$state) {
|
|
25950
26033
|
let $$entered = $$ctx.enter?.("CivetOption", $$state);
|
|
25951
26034
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -25970,14 +26053,14 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
25970
26053
|
})($$value[1], $$value[2], $$value[3], $$value[4]);
|
|
25971
26054
|
return $$r.value = $$m, $$ctx.exit?.("CivetOption", $$state, $$r, $$eventData), $$r;
|
|
25972
26055
|
}
|
|
25973
|
-
var UnknownPrologue$parser = (0, import_lib2.$S)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
26056
|
+
var UnknownPrologue$parser = (0, import_lib2.$S)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R97, "UnknownPrologue /[\\t ]*/")), StringLiteral, (0, import_lib2.$TEXT)(SimpleStatementDelimiter), EOS);
|
|
25974
26057
|
function UnknownPrologue($$ctx, $$state) {
|
|
25975
26058
|
let $$entered = $$ctx.enter?.("UnknownPrologue", $$state);
|
|
25976
26059
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
25977
26060
|
let $$eventData = $$entered?.data, $$final = UnknownPrologue$parser($$ctx, $$state);
|
|
25978
26061
|
return $$ctx.exit?.("UnknownPrologue", $$state, $$final, $$eventData), $$final;
|
|
25979
26062
|
}
|
|
25980
|
-
var TripleSlashDirective$parser = (0, import_lib2.$S)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
26063
|
+
var TripleSlashDirective$parser = (0, import_lib2.$S)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R100, "TripleSlashDirective /\\/\\/\\/[^\\r\\n]*/")), (0, import_lib2.$E)(EOS));
|
|
25981
26064
|
function TripleSlashDirective($$ctx, $$state) {
|
|
25982
26065
|
let $$entered = $$ctx.enter?.("TripleSlashDirective", $$state);
|
|
25983
26066
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -26010,7 +26093,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
26010
26093
|
let $$eventData = $$entered?.data, $$final = PrologueString$0($$ctx, $$state) || PrologueString$1($$ctx, $$state);
|
|
26011
26094
|
return $$ctx.exit?.("PrologueString", $$state, $$final, $$eventData), $$final;
|
|
26012
26095
|
}
|
|
26013
|
-
var EOS$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
26096
|
+
var EOS$parser = (0, import_lib2.$S)((0, import_lib2.$EXPECT)($R101, "EOS /(?=[ \\t\\r\\n\\/#]|$)/"), (0, import_lib2.$P)(RestOfLine));
|
|
26014
26097
|
function EOS($$ctx, $$state) {
|
|
26015
26098
|
let $$entered = $$ctx.enter?.("EOS", $$state);
|
|
26016
26099
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -26024,7 +26107,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
26024
26107
|
})($$r.value[1]);
|
|
26025
26108
|
return $$r.value = $$m, $$ctx.exit?.("EOS", $$state, $$r, $$eventData), $$r;
|
|
26026
26109
|
}
|
|
26027
|
-
var EOL$parser = (0, import_lib2.$EXPECT)($
|
|
26110
|
+
var EOL$parser = (0, import_lib2.$EXPECT)($R102, "EOL /\\r\\n|\\n|\\r|$/");
|
|
26028
26111
|
function EOL($$ctx, $$state) {
|
|
26029
26112
|
let $$entered = $$ctx.enter?.("EOL", $$state);
|
|
26030
26113
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -26806,14 +26889,14 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
26806
26889
|
let $$eventData = $$entered?.data, $$final = Prologue$parser($$ctx, $$state);
|
|
26807
26890
|
return $$ctx.exit?.("Prologue", $$state, $$final, $$eventData), $$final;
|
|
26808
26891
|
}
|
|
26809
|
-
var ProloguePrefix$parser = (0, import_lib2.$S)(Prologue, (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
26892
|
+
var ProloguePrefix$parser = (0, import_lib2.$S)(Prologue, (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R103, "ProloguePrefix /[^]*/")));
|
|
26810
26893
|
function ProloguePrefix($$ctx, $$state) {
|
|
26811
26894
|
let $$entered = $$ctx.enter?.("ProloguePrefix", $$state);
|
|
26812
26895
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
26813
26896
|
let $$eventData = $$entered?.data, $$final = ProloguePrefix$parser($$ctx, $$state);
|
|
26814
26897
|
return $$ctx.exit?.("ProloguePrefix", $$state, $$final, $$eventData), $$final;
|
|
26815
26898
|
}
|
|
26816
|
-
var Indent$parser = (0, import_lib2.$EXPECT)($
|
|
26899
|
+
var Indent$parser = (0, import_lib2.$EXPECT)($R21, "Indent /[ \\t]*/");
|
|
26817
26900
|
function Indent($$ctx, $$state) {
|
|
26818
26901
|
let $$entered = $$ctx.enter?.("Indent", $$state);
|
|
26819
26902
|
if ($$entered && "cache" in $$entered) return $$entered.cache;
|
|
@@ -27081,7 +27164,7 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
27081
27164
|
let root = parse(input, options);
|
|
27082
27165
|
return sync ? (filename = initialConfig = sync = null, root) : processProgramAsync(root).then(() => (filename = initialConfig = sync = null, root));
|
|
27083
27166
|
}
|
|
27084
|
-
var wellKnownSymbols = [
|
|
27167
|
+
var unicodeEscapePattern = String.raw`\\u\{0*(?:[\dA-Fa-f]{1,5}|10[\dA-Fa-f]{4})\}|\\u[\dA-Fa-f]{4}`, nonAsciiIdentifierPattern = String.raw`[^\u0000-\u007F\p{ID_Continue}\s÷—‖’•‥…⁇→⇒∈∉∋∌≔≠≡≢≣≤≥≪≫⋙▷⧺⩵⩶]`, wellKnownSymbols = [
|
|
27085
27168
|
"asyncIterator",
|
|
27086
27169
|
"hasInstance",
|
|
27087
27170
|
"isConcatSpreadable",
|
|
@@ -27096,6 +27179,16 @@ const `, convertNamedImportsToObject(runtimeNamed, !0, "destructuring"), " = ",
|
|
|
27096
27179
|
"toStringTag",
|
|
27097
27180
|
"unscopables"
|
|
27098
27181
|
];
|
|
27182
|
+
var heregexEscapes = {
|
|
27183
|
+
"\n": "\\n",
|
|
27184
|
+
"\r": "\\r",
|
|
27185
|
+
"\u2028": "\\u2028",
|
|
27186
|
+
"\u2029": "\\u2029",
|
|
27187
|
+
" ": "\\t",
|
|
27188
|
+
"\v": "\\v",
|
|
27189
|
+
"\f": "\\f",
|
|
27190
|
+
" ": " "
|
|
27191
|
+
};
|
|
27099
27192
|
|
|
27100
27193
|
// source/sourcemap.civet
|
|
27101
27194
|
var sourcemap_exports = {};
|