@danielx/civet 0.11.2 → 0.11.4
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 +24 -0
- package/README.md +3 -0
- package/dist/browser.js +301 -124
- package/dist/civet +91 -35
- package/dist/config.js +3 -0
- package/dist/config.mjs +3 -0
- package/dist/main.js +422 -194
- package/dist/main.mjs +422 -194
- package/dist/unplugin/unplugin.js +176 -3
- package/dist/unplugin/unplugin.mjs +183 -3
- package/package.json +6 -2
package/dist/browser.js
CHANGED
|
@@ -57,7 +57,7 @@ var Civet = (() => {
|
|
|
57
57
|
$N: () => $N2,
|
|
58
58
|
$P: () => $P2,
|
|
59
59
|
$Q: () => $Q2,
|
|
60
|
-
$R: () => $
|
|
60
|
+
$R: () => $R106,
|
|
61
61
|
$R$0: () => $R$02,
|
|
62
62
|
$S: () => $S2,
|
|
63
63
|
$T: () => $T2,
|
|
@@ -90,7 +90,7 @@ var Civet = (() => {
|
|
|
90
90
|
};
|
|
91
91
|
};
|
|
92
92
|
}
|
|
93
|
-
function $
|
|
93
|
+
function $R106(regExp) {
|
|
94
94
|
return function(_ctx, state2) {
|
|
95
95
|
let { input, pos } = state2;
|
|
96
96
|
regExp.lastIndex = state2.pos;
|
|
@@ -2328,17 +2328,49 @@ ${js}`
|
|
|
2328
2328
|
};
|
|
2329
2329
|
}
|
|
2330
2330
|
function implicitFunctionBlock(f) {
|
|
2331
|
-
if (f.abstract || f.block || f.signature?.optional)
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2331
|
+
if (!(f.abstract || f.block || f.signature?.optional))
|
|
2332
|
+
if (followingOverloads(f).length)
|
|
2333
|
+
f.ts = !0;
|
|
2334
|
+
else {
|
|
2335
|
+
let block = makeEmptyBlock();
|
|
2336
|
+
block.parent = f, f.block = block, f.children.push(block), f.ts = !1;
|
|
2337
|
+
}
|
|
2338
|
+
}
|
|
2339
|
+
function overloadsInDirection(f, direction) {
|
|
2340
|
+
if (f.name == null)
|
|
2341
|
+
return [];
|
|
2342
|
+
let ancestor = f.parent, child = f;
|
|
2343
|
+
if (ancestor?.type === "ExportDeclaration" && (child = ancestor, ancestor = ancestor.parent), ancestor?.type !== "BlockStatement")
|
|
2344
|
+
return [];
|
|
2345
|
+
let { expressions } = ancestor, index = findChildIndex(expressions, child);
|
|
2346
|
+
if (!(index >= 0))
|
|
2347
|
+
return [];
|
|
2348
|
+
if (direction < 0) {
|
|
2349
|
+
let results1 = [];
|
|
2350
|
+
for (; --index >= 0; ) {
|
|
2351
|
+
let candidate = expressions[index][1];
|
|
2352
|
+
if (!candidate || (candidate.type === "ExportDeclaration" && (candidate = candidate.declaration), !(candidate && candidate.type === f.type && candidate.name === f.name)))
|
|
2353
|
+
break;
|
|
2354
|
+
results1.push(candidate);
|
|
2355
|
+
}
|
|
2356
|
+
return results1;
|
|
2357
|
+
} else {
|
|
2358
|
+
let results2 = [];
|
|
2359
|
+
for (; ++index < expressions.length; ) {
|
|
2360
|
+
let candidate = expressions[index][1];
|
|
2361
|
+
if (!candidate || (candidate.type === "ExportDeclaration" && (candidate = candidate.declaration), !(candidate && candidate.type === f.type && candidate.name === f.name)))
|
|
2362
|
+
break;
|
|
2363
|
+
results2.push(candidate);
|
|
2364
|
+
}
|
|
2365
|
+
return results2;
|
|
2340
2366
|
}
|
|
2341
2367
|
}
|
|
2368
|
+
function precedingOverloads(f) {
|
|
2369
|
+
return overloadsInDirection(f, -1);
|
|
2370
|
+
}
|
|
2371
|
+
function followingOverloads(f) {
|
|
2372
|
+
return overloadsInDirection(f, 1);
|
|
2373
|
+
}
|
|
2342
2374
|
function processReturn(f, implicitReturns) {
|
|
2343
2375
|
let { returnType } = f.signature;
|
|
2344
2376
|
if (returnType && returnType.optional && convertOptionalType(returnType), !processReturnValue(f) && (implicitReturns || f.signature.implicitReturn)) {
|
|
@@ -3076,10 +3108,7 @@ ${js}`
|
|
|
3076
3108
|
let { ancestor } = findAncestor(f, ($10) => $10.type === "ClassExpression");
|
|
3077
3109
|
if (ancestor != null) {
|
|
3078
3110
|
let fields = new Set(gatherRecursiveWithinFunction(ancestor, ($11) => $11.type === "FieldDefinition").map(($12) => $12.id).filter((a3) => typeof a3 == "object" && a3 != null && "type" in a3 && a3.type === "Identifier").map(($13) => $13.name)), classExpressions = ancestor.body.expressions, index2 = findChildIndex(classExpressions, f);
|
|
3079
|
-
assert.notEqual(index2, -1, "Could not find constructor in class");
|
|
3080
|
-
let m7;
|
|
3081
|
-
for (; m7 = classExpressions[index2 - 1]?.[1], typeof m7 == "object" && m7 != null && "type" in m7 && m7.type === "MethodDefinition" && "name" in m7 && m7.name === "constructor"; )
|
|
3082
|
-
index2--;
|
|
3111
|
+
assert.notEqual(index2, -1, "Could not find constructor in class"), index2 -= precedingOverloads(f).length;
|
|
3083
3112
|
let fStatement = classExpressions[index2];
|
|
3084
3113
|
for (let ref20 = gatherRecursive(parameters, ($14) => $14.type === "Parameter"), i10 = 0, len9 = ref20.length; i10 < len9; i10++) {
|
|
3085
3114
|
let parameter = ref20[i10], { accessModifier } = parameter;
|
|
@@ -3145,10 +3174,10 @@ ${js}`
|
|
|
3145
3174
|
return -1;
|
|
3146
3175
|
}
|
|
3147
3176
|
function processSignature(f) {
|
|
3148
|
-
let { block, signature } = f;
|
|
3177
|
+
let { block, signature } = f, addAsync = !1, addGenerator = !1;
|
|
3149
3178
|
if (!f.async?.length && hasAwait(block))
|
|
3150
3179
|
if (f.async != null)
|
|
3151
|
-
|
|
3180
|
+
addAsync = !0;
|
|
3152
3181
|
else
|
|
3153
3182
|
for (let ref23 = gatherRecursiveWithinFunction(block, ($17) => $17.type === "Await"), i13 = 0, len12 = ref23.length; i13 < len12; i13++) {
|
|
3154
3183
|
let a = ref23[i13], i = findChildIndex(a.parent, a);
|
|
@@ -3159,7 +3188,7 @@ ${js}`
|
|
|
3159
3188
|
}
|
|
3160
3189
|
if (!f.generator?.length && hasYield(block))
|
|
3161
3190
|
if (f.generator != null)
|
|
3162
|
-
|
|
3191
|
+
addGenerator = !0;
|
|
3163
3192
|
else
|
|
3164
3193
|
for (let ref24 = gatherRecursiveWithinFunction(block, ($18) => $18.type === "YieldExpression"), i14 = 0, len13 = ref24.length; i14 < len13; i14++) {
|
|
3165
3194
|
let y = ref24[i14], i = y.children.findIndex(($19) => $19.type === "Yield");
|
|
@@ -3168,15 +3197,18 @@ ${js}`
|
|
|
3168
3197
|
message: `yield invalid in ${f.type === "ArrowFunction" ? "=> arrow function" : signature.modifier.get ? "getter" : signature.modifier.set ? "setter" : signature.name}`
|
|
3169
3198
|
});
|
|
3170
3199
|
}
|
|
3171
|
-
|
|
3172
|
-
|
|
3173
|
-
|
|
3174
|
-
|
|
3175
|
-
|
|
3200
|
+
for (let ref25 = [f, ...precedingOverloads(f)], i15 = 0, len14 = ref25.length; i15 < len14; i15++) {
|
|
3201
|
+
let overload = ref25[i15];
|
|
3202
|
+
addAsync && overload.async != null && !overload.async.length && (overload.async.push("async "), overload.signature.modifier.async = !0), addGenerator && overload.generator != null && !overload.generator.length && (overload.generator.push("*"), overload.signature.modifier.generator = !0), overload.signature.modifier.async && !overload.signature.modifier.generator && overload.signature.returnType && !isPromiseType(overload.signature.returnType.t) && replaceNode(
|
|
3203
|
+
overload.signature.returnType.t,
|
|
3204
|
+
wrapTypeInPromise(overload.signature.returnType.t),
|
|
3205
|
+
overload.signature.returnType
|
|
3206
|
+
);
|
|
3207
|
+
}
|
|
3176
3208
|
}
|
|
3177
3209
|
function processFunctions(statements, config2) {
|
|
3178
|
-
for (let
|
|
3179
|
-
let f =
|
|
3210
|
+
for (let ref26 = gatherRecursiveAll(statements, ($20) => $20.type === "FunctionExpression" || $20.type === "ArrowFunction" || $20.type === "MethodDefinition"), i16 = 0, len15 = ref26.length; i16 < len15; i16++) {
|
|
3211
|
+
let f = ref26[i16];
|
|
3180
3212
|
(f.type === "FunctionExpression" || f.type === "MethodDefinition") && implicitFunctionBlock(f), processSignature(f), processParams(f), processReturn(f, config2.implicitReturns);
|
|
3181
3213
|
}
|
|
3182
3214
|
}
|
|
@@ -3223,17 +3255,17 @@ ${js}`
|
|
|
3223
3255
|
}
|
|
3224
3256
|
let done;
|
|
3225
3257
|
if (!async) {
|
|
3226
|
-
let
|
|
3227
|
-
if ((
|
|
3228
|
-
let { block: parentBlock, index } =
|
|
3258
|
+
let ref27;
|
|
3259
|
+
if ((ref27 = blockContainingStatement(exp)) && typeof ref27 == "object" && "block" in ref27 && "index" in ref27) {
|
|
3260
|
+
let { block: parentBlock, index } = ref27;
|
|
3229
3261
|
statements[0][0] = parentBlock.expressions[index][0], parentBlock.expressions.splice(index, index + 1 - index, ...statements), updateParentPointers(parentBlock), braceBlock(parentBlock), done = !0;
|
|
3230
3262
|
}
|
|
3231
3263
|
}
|
|
3232
3264
|
done || (generator || (statements[statements.length - 1][1] = wrapWithReturn(statements[statements.length - 1][1])), children.splice(i, 1, wrapIIFE(statements, async, generator)), updateParentPointers(exp));
|
|
3233
3265
|
}
|
|
3234
3266
|
function processIterationExpressions(statements) {
|
|
3235
|
-
for (let
|
|
3236
|
-
let s =
|
|
3267
|
+
for (let ref28 = gatherRecursiveAll(statements, ($21) => $21.type === "IterationExpression"), i17 = 0, len16 = ref28.length; i17 < len16; i17++) {
|
|
3268
|
+
let s = ref28[i17];
|
|
3237
3269
|
expressionizeIteration(s);
|
|
3238
3270
|
}
|
|
3239
3271
|
}
|
|
@@ -3248,13 +3280,13 @@ ${js}`
|
|
|
3248
3280
|
ws = trimFirstSpace(ws);
|
|
3249
3281
|
let args = [];
|
|
3250
3282
|
if (typeof expression == "object" && expression != null && "type" in expression && expression.type === "ArrowFunction" || typeof expression == "object" && expression != null && "type" in expression && expression.type === "FunctionExpression") {
|
|
3251
|
-
let { parameters } = expression, parameterList = parameters.parameters,
|
|
3252
|
-
for (let
|
|
3253
|
-
let parameter = parameterList[
|
|
3283
|
+
let { parameters } = expression, parameterList = parameters.parameters, results3 = [];
|
|
3284
|
+
for (let i18 = 0, len17 = parameterList.length; i18 < len17; i18++) {
|
|
3285
|
+
let parameter = parameterList[i18];
|
|
3254
3286
|
if (typeof parameter == "object" && parameter != null && "type" in parameter && parameter.type === "Parameter") {
|
|
3255
|
-
let
|
|
3256
|
-
if (
|
|
3257
|
-
let initializer =
|
|
3287
|
+
let ref29;
|
|
3288
|
+
if (ref29 = parameter.initializer) {
|
|
3289
|
+
let initializer = ref29;
|
|
3258
3290
|
args.push(initializer.expression, parameter.delim), parameter = {
|
|
3259
3291
|
...parameter,
|
|
3260
3292
|
initializer: void 0,
|
|
@@ -3265,9 +3297,9 @@ ${js}`
|
|
|
3265
3297
|
(a7) => a7 !== parameter.typeSuffix
|
|
3266
3298
|
));
|
|
3267
3299
|
}
|
|
3268
|
-
|
|
3300
|
+
results3.push(parameter);
|
|
3269
3301
|
}
|
|
3270
|
-
let newParameterList =
|
|
3302
|
+
let newParameterList = results3, newParameters = {
|
|
3271
3303
|
...parameters,
|
|
3272
3304
|
parameters: newParameterList,
|
|
3273
3305
|
children: parameters.children.map(($22) => $22 === parameterList ? newParameterList : $22)
|
|
@@ -6734,12 +6766,16 @@ ${js}`
|
|
|
6734
6766
|
CommaDelimiter,
|
|
6735
6767
|
OptionalCommaDelimiter,
|
|
6736
6768
|
ArgumentList,
|
|
6769
|
+
PostfixedArgumentList,
|
|
6737
6770
|
NestedArguments,
|
|
6738
6771
|
NestedArgumentList,
|
|
6739
6772
|
NestedArgument,
|
|
6740
6773
|
SingleLineArgumentExpressions,
|
|
6741
6774
|
WArgumentPart,
|
|
6775
|
+
SingleLinePostfixedArgumentExpressions,
|
|
6776
|
+
WPostfixedArgumentPart,
|
|
6742
6777
|
ArgumentPart,
|
|
6778
|
+
PostfixedArgumentPart,
|
|
6743
6779
|
BinaryOpExpression,
|
|
6744
6780
|
BinaryOpNotDedented,
|
|
6745
6781
|
BinaryOpRHS,
|
|
@@ -7122,6 +7158,7 @@ ${js}`
|
|
|
7122
7158
|
Debugger,
|
|
7123
7159
|
MaybeNestedNonPipelineExpression,
|
|
7124
7160
|
MaybeNestedPostfixedExpression,
|
|
7161
|
+
MaybeNestedPostfixedCommaExpression,
|
|
7125
7162
|
NestedPostfixedExpressionNoTrailing,
|
|
7126
7163
|
MaybeNestedExpression,
|
|
7127
7164
|
MaybeParenNestedExpression,
|
|
@@ -7177,6 +7214,8 @@ ${js}`
|
|
|
7177
7214
|
StringLiteral,
|
|
7178
7215
|
DoubleStringCharacters,
|
|
7179
7216
|
SingleStringCharacters,
|
|
7217
|
+
SingleLineStringLiteral,
|
|
7218
|
+
UnclosedSingleLineStringLiteral,
|
|
7180
7219
|
TripleDoubleStringContents,
|
|
7181
7220
|
CoffeeTripleDoubleStringCharacters,
|
|
7182
7221
|
TripleDoubleStringCharacters,
|
|
@@ -7555,7 +7594,7 @@ ${js}`
|
|
|
7555
7594
|
Dedented,
|
|
7556
7595
|
PushExtraIndent1
|
|
7557
7596
|
};
|
|
7558
|
-
var $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)("import"), $L16 = (0, import_lib2.$L)(":"), $L17 = (0, import_lib2.$L)(" "), $L18 = (0, import_lib2.$L)("<"), $L19 = (0, import_lib2.$L)("implements"), $L20 = (0, import_lib2.$L)("<:"), $L21 = (0, import_lib2.$L)("^"), $L22 = (0, import_lib2.$L)("<?"), $L23 = (0, import_lib2.$L)("-"), $L24 = (0, import_lib2.$L)("import.meta"), $L25 = (0, import_lib2.$L)("return.value"), $L26 = (0, import_lib2.$L)(","), $L27 = (0, import_lib2.$L)("tighter"), $L28 = (0, import_lib2.$L)("looser"), $L29 = (0, import_lib2.$L)("same"), $L30 = (0, import_lib2.$L)("left"), $L31 = (0, import_lib2.$L)("right"), $L32 = (0, import_lib2.$L)("non"), $L33 = (0, import_lib2.$L)("relational"), $L34 = (0, import_lib2.$L)("arguments"), $L35 = (0, import_lib2.$L)("->"), $L36 = (0, import_lib2.$L)("\u2192"), $L37 = (0, import_lib2.$L)("}"), $L38 = (0, import_lib2.$L)("null"), $L39 = (0, import_lib2.$L)("true"), $L40 = (0, import_lib2.$L)("false"), $L41 = (0, import_lib2.$L)("yes"), $L42 = (0, import_lib2.$L)("on"), $L43 = (0, import_lib2.$L)("no"), $L44 = (0, import_lib2.$L)("off"), $L45 = (0, import_lib2.$L)(">"), $L46 = (0, import_lib2.$L)("]"), $L47 = (0, import_lib2.$L)("\u2022"), $L48 = (0, import_lib2.$L)("//"), $L49 = (0, import_lib2.$L)("**="), $L50 = (0, import_lib2.$L)("*="), $L51 = (0, import_lib2.$L)("%/"), $L52 = (0, import_lib2.$L)("\xF7"), $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)("<<="), $L59 = (0, import_lib2.$L)("\u226A="), $L60 = (0, import_lib2.$L)(">>>="), $L61 = (0, import_lib2.$L)("\u22D9="), $L62 = (0, import_lib2.$L)(">>="), $L63 = (0, import_lib2.$L)("\u226B="), $L64 = (0, import_lib2.$L)("&&="), $L65 = (0, import_lib2.$L)("&="), $L66 = (0, import_lib2.$L)("^="), $L67 = (0, import_lib2.$L)("||="), $L68 = (0, import_lib2.$L)("\u2016="), $L69 = (0, import_lib2.$L)("|="), $L70 = (0, import_lib2.$L)("??="), $L71 = (0, import_lib2.$L)("\u2047="), $L72 = (0, import_lib2.$L)("?="), $L73 = (0, import_lib2.$L)("and="), $L74 = (0, import_lib2.$L)("or="), $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)("<="), $L81 = (0, import_lib2.$L)("\u2264"), $L82 = (0, import_lib2.$L)(">="), $L83 = (0, import_lib2.$L)("\u2265"), $L84 = (0, import_lib2.$L)("!<?"), $L85 = (0, import_lib2.$L)("<<"), $L86 = (0, import_lib2.$L)("\u226A"), $L87 = (0, import_lib2.$L)(">>>"), $L88 = (0, import_lib2.$L)("\u22D9"), $L89 = (0, import_lib2.$L)(">>"), $L90 = (0, import_lib2.$L)("\u226B"), $L91 = (0, import_lib2.$L)("!=="), $L92 = (0, import_lib2.$L)("\u2262"), $L93 = (0, import_lib2.$L)("!="), $L94 = (0, import_lib2.$L)("\u2260"), $L95 = (0, import_lib2.$L)("isnt"), $L96 = (0, import_lib2.$L)("==="), $L97 = (0, import_lib2.$L)("\u2263"), $L98 = (0, import_lib2.$L)("\u2A76"), $L99 = (0, import_lib2.$L)("=="), $L100 = (0, import_lib2.$L)("\u2261"), $L101 = (0, import_lib2.$L)("\u2A75"), $L102 = (0, import_lib2.$L)("and"), $L103 = (0, import_lib2.$L)("&&"), $L104 = (0, import_lib2.$L)("or"), $L105 = (0, import_lib2.$L)("||"), $L106 = (0, import_lib2.$L)("\u2016"), $L107 = (0, import_lib2.$L)("^^"), $L108 = (0, import_lib2.$L)("xor"), $L109 = (0, import_lib2.$L)("xnor"), $L110 = (0, import_lib2.$L)("??"), $L111 = (0, import_lib2.$L)("\u2047"), $L112 = (0, import_lib2.$L)("instanceof"), $L113 = (0, import_lib2.$L)("\u2208"), $L114 = (0, import_lib2.$L)("\u220B"), $L115 = (0, import_lib2.$L)("\u220C"), $L116 = (0, import_lib2.$L)("\u2209"), $L117 = (0, import_lib2.$L)("&"), $L118 = (0, import_lib2.$L)("|"), $L119 = (0, import_lib2.$L)(";"), $L120 = (0, import_lib2.$L)("some"), $L121 = (0, import_lib2.$L)("every"), $L122 = (0, import_lib2.$L)("count"), $L123 = (0, import_lib2.$L)("first"), $L124 = (0, import_lib2.$L)("sum"), $L125 = (0, import_lib2.$L)("product"), $L126 = (0, import_lib2.$L)("min"), $L127 = (0, import_lib2.$L)("max"), $L128 = (0, import_lib2.$L)("join"), $L129 = (0, import_lib2.$L)("concat"), $L130 = (0, import_lib2.$L)("break"), $L131 = (0, import_lib2.$L)("continue"), $L132 = (0, import_lib2.$L)("debugger"), $L133 = (0, import_lib2.$L)("require"), $L134 = (0, import_lib2.$L)("with"), $L135 = (0, import_lib2.$L)("assert"), $L136 = (0, import_lib2.$L)(":="), $L137 = (0, import_lib2.$L)("\u2254"), $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)(")"), $L144 = (0, import_lib2.$L)("abstract"), $L145 = (0, import_lib2.$L)("as"), $L146 = (0, import_lib2.$L)("@"), $L147 = (0, import_lib2.$L)("@@"), $L148 = (0, import_lib2.$L)("async"), $L149 = (0, import_lib2.$L)("await"), $L150 = (0, import_lib2.$L)("`"), $L151 = (0, import_lib2.$L)("by"), $L152 = (0, import_lib2.$L)("case"), $L153 = (0, import_lib2.$L)("catch"), $L154 = (0, import_lib2.$L)("class"), $L155 = (0, import_lib2.$L)("#{"), $L156 = (0, import_lib2.$L)("comptime"), $L157 = (0, import_lib2.$L)("declare"), $L158 = (0, import_lib2.$L)("default"), $L159 = (0, import_lib2.$L)("delete"), $L160 = (0, import_lib2.$L)("do"), $L161 = (0, import_lib2.$L)(".."), $L162 = (0, import_lib2.$L)("\u2025"), $L163 = (0, import_lib2.$L)("..."), $L164 = (0, import_lib2.$L)("\u2026"), $L165 = (0, import_lib2.$L)("::"), $L166 = (0, import_lib2.$L)('"'), $L167 = (0, import_lib2.$L)("each"), $L168 = (0, import_lib2.$L)("else"), $L169 = (0, import_lib2.$L)("!"), $L170 = (0, import_lib2.$L)("export"), $L171 = (0, import_lib2.$L)("extends"), $L172 = (0, import_lib2.$L)("finally"), $L173 = (0, import_lib2.$L)("for"), $L174 = (0, import_lib2.$L)("from"), $L175 = (0, import_lib2.$L)("function"), $L176 = (0, import_lib2.$L)("get"), $L177 = (0, import_lib2.$L)("set"), $L178 = (0, import_lib2.$L)("#"), $L179 = (0, import_lib2.$L)("if"), $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("(?=[\\/\\[{?.!@#'\u2019:])", "suy")), $R11 = (0, import_lib2.$R)(new RegExp("%%?", "suy")), $R12 = (0, import_lib2.$R)(new RegExp("[.\\s]", "suy")), $R13 = (0, import_lib2.$R)(new RegExp("[)\\]}]", "suy")), $R14 = (0, import_lib2.$R)(new RegExp("[+-]", "suy")), $R15 = (0, import_lib2.$R)(new RegExp("\\+\\+|--|\u29FA|\u2014|[\\+\\-&]\\S", "suy")), $R16 = (0, import_lib2.$R)(new RegExp(`(?=[0-9.'"tfyno])`, "suy")), $R17 = (0, import_lib2.$R)(new RegExp("(?=true|false|yes|no|on|off)", "suy")), $R18 = (0, import_lib2.$R)(new RegExp("(?=\\p{ID_Start}|[_$])", "suy")), $R19 = (0, import_lib2.$R)(new RegExp("(?:\\p{ID_Start}|[_$])(?:\\p{ID_Continue}|[\\u200C\\u200D$])*", "suy")), $R20 = (0, import_lib2.$R)(new RegExp("(?=\\[|\\s*[.\u2022\\/])", "suy")), $R21 = (0, import_lib2.$R)(new RegExp("([<>])(=?)|([\u2264\u2265])", "suy")), $R22 = (0, import_lib2.$R)(new RegExp("[ \\t]*", "suy")), $R23 = (0, import_lib2.$R)(new RegExp("[ \\t]+", "suy")), $R24 = (0, import_lib2.$R)(new RegExp("[!+-]?", "suy")), $R25 = (0, import_lib2.$R)(new RegExp("(?:\\p{ID_Continue}|[\\u200C\\u200D$-])*", "suy")), $R26 = (0, import_lib2.$R)(new RegExp("[=>]", "suy")), $R27 = (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")), $R28 = (0, import_lib2.$R)(new RegExp("!\\^\\^?", "suy")), $R29 = (0, import_lib2.$R)(new RegExp("(?!\\+\\+|--)[!~+-](?!\\s)", "suy")), $R30 = (0, import_lib2.$R)(new RegExp("[:.]", "suy")), $R31 = (0, import_lib2.$R)(new RegExp("(?=for|if|loop|unless|until|while)", "suy")), $R32 = (0, import_lib2.$R)(new RegExp("(?:loop|while|until|for|do)(?!\\p{ID_Continue})", "suy")), $R33 = (0, import_lib2.$R)(new RegExp("(?=loop|comptime|do|for|until|while)", "suy")), $R34 = (0, import_lib2.$R)(new RegExp('[^;"\\s=>]+', "suy")), $R35 = (0, import_lib2.$R)(new RegExp("(?=[0-9.])", "suy")), $R36 = (0, import_lib2.$R)(new RegExp("(?:0|[1-9](?:_[0-9]|[0-9])*)n", "suy")), $R37 = (0, import_lib2.$R)(new RegExp("(?:0|[1-9](?:_[0-9]|[0-9])*)(?=\\.(?:\\p{ID_Start}|[_$]))", "suy")), $R38 = (0, import_lib2.$R)(new RegExp("(?:0|[1-9](?:_[0-9]|[0-9])*)(?:\\.(?:[0-9](?:_[0-9]|[0-9])*))?", "suy")), $R39 = (0, import_lib2.$R)(new RegExp("(?:\\.[0-9](?:_[0-9]|[0-9])*)", "suy")), $R40 = (0, import_lib2.$R)(new RegExp("(?:[eE][+-]?[0-9]+(?:_[0-9]|[0-9])*)", "suy")), $R41 = (0, import_lib2.$R)(new RegExp("0[bB][01](?:[01]|_[01])*n?", "suy")), $R42 = (0, import_lib2.$R)(new RegExp("0[oO][0-7](?:[0-7]|_[0-7])*n?", "suy")), $R43 = (0, import_lib2.$R)(new RegExp("0[xX][0-9a-fA-F](?:[0-9a-fA-F]|_[0-9a-fA-F])*n?", "suy")), $R44 = (0, import_lib2.$R)(new RegExp("(?=[0-9])", "suy")), $R45 = (0, import_lib2.$R)(new RegExp("(?:0|[1-9](?:_[0-9]|[0-9])*)", "suy")), $R46 = (0, import_lib2.$R)(new RegExp('(?:\\\\.|[^"])*', "suy")), $R47 = (0, import_lib2.$R)(new RegExp("(?:\\\\.|[^'])*", "suy")), $R48 = (0, import_lib2.$R)(new RegExp('(?:"(?!"")|#(?!\\{)|\\\\.|[^#"])+', "suy")), $R49 = (0, import_lib2.$R)(new RegExp('(?:"(?!"")|\\\\.|[^"])+', "suy")), $R50 = (0, import_lib2.$R)(new RegExp("(?:'(?!'')|\\\\.|[^'])*", "suy")), $R51 = (0, import_lib2.$R)(new RegExp('(?:\\\\.|#(?!\\{)|[^"#])+', "suy")), $R52 = (0, import_lib2.$R)(new RegExp("(?:\\\\.|[^\\]])*", "suy")), $R53 = (0, import_lib2.$R)(new RegExp("(?:\\\\.)", "suy")), $R54 = (0, import_lib2.$R)(new RegExp("[\\s]+", "suy")), $R55 = (0, import_lib2.$R)(new RegExp("\\/(?!\\/\\/)", "suy")), $R56 = (0, import_lib2.$R)(new RegExp("[^[\\/\\s#$\\\\]+|[#$]", "suy")), $R57 = (0, import_lib2.$R)(new RegExp("[*\\/\\r\\n]", "suy")), $R58 = (0, import_lib2.$R)(new RegExp("(?:\\\\.|[^[\\/\\r\\n])+", "suy")), $R59 = (0, import_lib2.$R)(new RegExp("(?:\\p{ID_Continue}|[\\u200C\\u200D$])*", "suy")), $R60 = (0, import_lib2.$R)(new RegExp("(?=[`'\"])", "suy")), $R61 = (0, import_lib2.$R)(new RegExp("(?:\\$(?!\\{)|\\\\.|[^$`])+", "suy")), $R62 = (0, import_lib2.$R)(new RegExp("(?:\\$(?!\\{)|`(?!``)|\\\\.|[^$`])+", "suy")), $R63 = (0, import_lib2.$R)(new RegExp("(?:on|off|yes|no)(?!\\p{ID_Continue})", "suy")), $R64 = (0, import_lib2.$R)(new RegExp("(?:isnt)(?!\\p{ID_Continue})", "suy")), $R65 = (0, import_lib2.$R)(new RegExp("(?:by)(?!\\p{ID_Continue})", "suy")), $R66 = (0, import_lib2.$R)(new RegExp("(?:of)(?!\\p{ID_Continue})", "suy")), $R67 = (0, import_lib2.$R)(new RegExp("(?:and|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|false|finally|for|function|if|import|in|instanceof|interface|is|let|loop|new|not|null|or|private|protected|public|return|static|super|switch|this|throw|true|try|typeof|unless|until|var|void|while|with|yield)(?!\\p{ID_Continue})", "suy")), $R68 = (0, import_lib2.$R)(new RegExp("(?=\\/|#)", "suy")), $R69 = (0, import_lib2.$R)(new RegExp("\\/\\/(?!\\/)[^\\r\\n]*", "suy")), $R70 = (0, import_lib2.$R)(new RegExp(".", "suy")), $R71 = (0, import_lib2.$R)(new RegExp("#(?!##(?!#))([^\\r\\n]*)", "suy")), $R72 = (0, import_lib2.$R)(new RegExp("[^]*?###", "suy")), $R73 = (0, import_lib2.$R)(new RegExp("###(?!#)", "suy")), $R74 = (0, import_lib2.$R)(new RegExp("\\/\\*(?:(?!\\*\\/)[^\\r\\n])*\\*\\/", "suy")), $R75 = (0, import_lib2.$R)(new RegExp("(?=[ \\t\\/\\\\#])", "suy")), $R76 = (0, import_lib2.$R)(new RegExp("(?=\\s|\\/|#)", "suy")), $R77 = (0, import_lib2.$R)(new RegExp("(?!\\p{ID_Continue})", "suy")), $R78 = (0, import_lib2.$R)(new RegExp("[=:]", "suy")), $R79 = (0, import_lib2.$R)(new RegExp("['\u2019]s", "suy")), $R80 = (0, import_lib2.$R)(new RegExp("\\s", "suy")), $R81 = (0, import_lib2.$R)(new RegExp("(?=[<])", "suy")), $R82 = (0, import_lib2.$R)(new RegExp("(?:\\p{ID_Start}|[_$])(?:\\p{ID_Continue}|[\\u200C\\u200D$-])*", "suy")), $R83 = (0, import_lib2.$R)(new RegExp("[!+-]", "suy")), $R84 = (0, import_lib2.$R)(new RegExp("[\\s>]|\\/>", "suy")), $R85 = (0, import_lib2.$R)(new RegExp("(?:[\\w\\-:]+|\\([^()]*\\)|\\[[^\\[\\]]*\\])+", "suy")), $R86 = (0, import_lib2.$R)(new RegExp(`"[^"]*"|'[^']*'`, "suy")), $R87 = (0, import_lib2.$R)(new RegExp("[<>]", "suy")), $R88 = (0, import_lib2.$R)(new RegExp("[!~+-](?!\\s|[!~+-]*&)", "suy")), $R89 = (0, import_lib2.$R)(new RegExp("(?:-[^-]|[^-]*)*", "suy")), $R90 = (0, import_lib2.$R)(new RegExp("[^{}<>\\r\\n]+", "suy")), $R91 = (0, import_lib2.$R)(new RegExp("[+-]?", "suy")), $R92 = (0, import_lib2.$R)(new RegExp("(?=if|unless)", "suy")), $R93 = (0, import_lib2.$R)(new RegExp("[|&<!=\\-\u21D2\u2192]", "suy")), $R94 = (0, import_lib2.$R)(new RegExp("(extends|not|is)(?!\\p{ID_Continue}|[\\u200C\\u200D$])", "suy")), $R95 = (0, import_lib2.$R)(new RegExp("const|in|out", "suy")), $R96 = (0, import_lib2.$R)(new RegExp("#![^\\r\\n]*", "suy")), $R97 = (0, import_lib2.$R)(new RegExp("[\\t ]*", "suy")), $R98 = (0, import_lib2.$R)(new RegExp("[\\s]*", "suy")), $R99 = (0, import_lib2.$R)(new RegExp("\\s+([+-]?)([a-zA-Z0-9-]+)(\\s*=\\s*([\\p{ID_Continue}.,+-]*))?", "suy")), $R100 = (0, import_lib2.$R)(new RegExp("\\/\\/\\/[^\\r\\n]*", "suy")), $R101 = (0, import_lib2.$R)(new RegExp("(?=[ \\t\\r\\n\\/#]|$)", "suy")), $R102 = (0, import_lib2.$R)(new RegExp("\\r\\n|\\n|\\r|$", "suy")), $R103 = (0, import_lib2.$R)(new RegExp("[^]*", "suy")), Program$0 = (0, import_lib2.$TS)((0, import_lib2.$S)(Reset, Init, (0, import_lib2.$E)(EOS), TopLevelStatements, __), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
|
|
7597
|
+
var $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)("import"), $L16 = (0, import_lib2.$L)(":"), $L17 = (0, import_lib2.$L)(" "), $L18 = (0, import_lib2.$L)("<"), $L19 = (0, import_lib2.$L)("implements"), $L20 = (0, import_lib2.$L)("<:"), $L21 = (0, import_lib2.$L)("^"), $L22 = (0, import_lib2.$L)("<?"), $L23 = (0, import_lib2.$L)("-"), $L24 = (0, import_lib2.$L)("import.meta"), $L25 = (0, import_lib2.$L)("return.value"), $L26 = (0, import_lib2.$L)(","), $L27 = (0, import_lib2.$L)("tighter"), $L28 = (0, import_lib2.$L)("looser"), $L29 = (0, import_lib2.$L)("same"), $L30 = (0, import_lib2.$L)("left"), $L31 = (0, import_lib2.$L)("right"), $L32 = (0, import_lib2.$L)("non"), $L33 = (0, import_lib2.$L)("relational"), $L34 = (0, import_lib2.$L)("arguments"), $L35 = (0, import_lib2.$L)("->"), $L36 = (0, import_lib2.$L)("\u2192"), $L37 = (0, import_lib2.$L)("}"), $L38 = (0, import_lib2.$L)("null"), $L39 = (0, import_lib2.$L)("true"), $L40 = (0, import_lib2.$L)("false"), $L41 = (0, import_lib2.$L)("yes"), $L42 = (0, import_lib2.$L)("on"), $L43 = (0, import_lib2.$L)("no"), $L44 = (0, import_lib2.$L)("off"), $L45 = (0, import_lib2.$L)(">"), $L46 = (0, import_lib2.$L)("]"), $L47 = (0, import_lib2.$L)("\u2022"), $L48 = (0, import_lib2.$L)("//"), $L49 = (0, import_lib2.$L)("**="), $L50 = (0, import_lib2.$L)("*="), $L51 = (0, import_lib2.$L)("%/"), $L52 = (0, import_lib2.$L)("\xF7"), $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)("<<="), $L59 = (0, import_lib2.$L)("\u226A="), $L60 = (0, import_lib2.$L)(">>>="), $L61 = (0, import_lib2.$L)("\u22D9="), $L62 = (0, import_lib2.$L)(">>="), $L63 = (0, import_lib2.$L)("\u226B="), $L64 = (0, import_lib2.$L)("&&="), $L65 = (0, import_lib2.$L)("&="), $L66 = (0, import_lib2.$L)("^="), $L67 = (0, import_lib2.$L)("||="), $L68 = (0, import_lib2.$L)("\u2016="), $L69 = (0, import_lib2.$L)("|="), $L70 = (0, import_lib2.$L)("??="), $L71 = (0, import_lib2.$L)("\u2047="), $L72 = (0, import_lib2.$L)("?="), $L73 = (0, import_lib2.$L)("and="), $L74 = (0, import_lib2.$L)("or="), $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)("<="), $L81 = (0, import_lib2.$L)("\u2264"), $L82 = (0, import_lib2.$L)(">="), $L83 = (0, import_lib2.$L)("\u2265"), $L84 = (0, import_lib2.$L)("!<?"), $L85 = (0, import_lib2.$L)("<<"), $L86 = (0, import_lib2.$L)("\u226A"), $L87 = (0, import_lib2.$L)(">>>"), $L88 = (0, import_lib2.$L)("\u22D9"), $L89 = (0, import_lib2.$L)(">>"), $L90 = (0, import_lib2.$L)("\u226B"), $L91 = (0, import_lib2.$L)("!=="), $L92 = (0, import_lib2.$L)("\u2262"), $L93 = (0, import_lib2.$L)("!="), $L94 = (0, import_lib2.$L)("\u2260"), $L95 = (0, import_lib2.$L)("isnt"), $L96 = (0, import_lib2.$L)("==="), $L97 = (0, import_lib2.$L)("\u2263"), $L98 = (0, import_lib2.$L)("\u2A76"), $L99 = (0, import_lib2.$L)("=="), $L100 = (0, import_lib2.$L)("\u2261"), $L101 = (0, import_lib2.$L)("\u2A75"), $L102 = (0, import_lib2.$L)("and"), $L103 = (0, import_lib2.$L)("&&"), $L104 = (0, import_lib2.$L)("or"), $L105 = (0, import_lib2.$L)("||"), $L106 = (0, import_lib2.$L)("\u2016"), $L107 = (0, import_lib2.$L)("^^"), $L108 = (0, import_lib2.$L)("xor"), $L109 = (0, import_lib2.$L)("xnor"), $L110 = (0, import_lib2.$L)("??"), $L111 = (0, import_lib2.$L)("\u2047"), $L112 = (0, import_lib2.$L)("instanceof"), $L113 = (0, import_lib2.$L)("\u2208"), $L114 = (0, import_lib2.$L)("\u220B"), $L115 = (0, import_lib2.$L)("\u220C"), $L116 = (0, import_lib2.$L)("\u2209"), $L117 = (0, import_lib2.$L)("&"), $L118 = (0, import_lib2.$L)("|"), $L119 = (0, import_lib2.$L)(";"), $L120 = (0, import_lib2.$L)("some"), $L121 = (0, import_lib2.$L)("every"), $L122 = (0, import_lib2.$L)("count"), $L123 = (0, import_lib2.$L)("first"), $L124 = (0, import_lib2.$L)("sum"), $L125 = (0, import_lib2.$L)("product"), $L126 = (0, import_lib2.$L)("min"), $L127 = (0, import_lib2.$L)("max"), $L128 = (0, import_lib2.$L)("join"), $L129 = (0, import_lib2.$L)("concat"), $L130 = (0, import_lib2.$L)("break"), $L131 = (0, import_lib2.$L)("continue"), $L132 = (0, import_lib2.$L)("debugger"), $L133 = (0, import_lib2.$L)("require"), $L134 = (0, import_lib2.$L)("with"), $L135 = (0, import_lib2.$L)("assert"), $L136 = (0, import_lib2.$L)(":="), $L137 = (0, import_lib2.$L)("\u2254"), $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)(")"), $L144 = (0, import_lib2.$L)("abstract"), $L145 = (0, import_lib2.$L)("as"), $L146 = (0, import_lib2.$L)("@"), $L147 = (0, import_lib2.$L)("@@"), $L148 = (0, import_lib2.$L)("async"), $L149 = (0, import_lib2.$L)("await"), $L150 = (0, import_lib2.$L)("`"), $L151 = (0, import_lib2.$L)("by"), $L152 = (0, import_lib2.$L)("case"), $L153 = (0, import_lib2.$L)("catch"), $L154 = (0, import_lib2.$L)("class"), $L155 = (0, import_lib2.$L)("#{"), $L156 = (0, import_lib2.$L)("comptime"), $L157 = (0, import_lib2.$L)("declare"), $L158 = (0, import_lib2.$L)("default"), $L159 = (0, import_lib2.$L)("delete"), $L160 = (0, import_lib2.$L)("do"), $L161 = (0, import_lib2.$L)(".."), $L162 = (0, import_lib2.$L)("\u2025"), $L163 = (0, import_lib2.$L)("..."), $L164 = (0, import_lib2.$L)("\u2026"), $L165 = (0, import_lib2.$L)("::"), $L166 = (0, import_lib2.$L)('"'), $L167 = (0, import_lib2.$L)("each"), $L168 = (0, import_lib2.$L)("else"), $L169 = (0, import_lib2.$L)("!"), $L170 = (0, import_lib2.$L)("export"), $L171 = (0, import_lib2.$L)("extends"), $L172 = (0, import_lib2.$L)("finally"), $L173 = (0, import_lib2.$L)("for"), $L174 = (0, import_lib2.$L)("from"), $L175 = (0, import_lib2.$L)("function"), $L176 = (0, import_lib2.$L)("get"), $L177 = (0, import_lib2.$L)("set"), $L178 = (0, import_lib2.$L)("#"), $L179 = (0, import_lib2.$L)("if"), $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("(?=[\\/\\[{?.!@#'\u2019:])", "suy")), $R11 = (0, import_lib2.$R)(new RegExp("%%?", "suy")), $R12 = (0, import_lib2.$R)(new RegExp("[.\\s]", "suy")), $R13 = (0, import_lib2.$R)(new RegExp("[)\\]}]", "suy")), $R14 = (0, import_lib2.$R)(new RegExp("[+-]", "suy")), $R15 = (0, import_lib2.$R)(new RegExp("\\+\\+|--|\u29FA|\u2014|[\\+\\-&]\\S", "suy")), $R16 = (0, import_lib2.$R)(new RegExp(`(?=[0-9.'"tfyno])`, "suy")), $R17 = (0, import_lib2.$R)(new RegExp("(?=true|false|yes|no|on|off)", "suy")), $R18 = (0, import_lib2.$R)(new RegExp("(?=\\p{ID_Start}|[_$])", "suy")), $R19 = (0, import_lib2.$R)(new RegExp("(?:\\p{ID_Start}|[_$])(?:\\p{ID_Continue}|[\\u200C\\u200D$])*", "suy")), $R20 = (0, import_lib2.$R)(new RegExp("(?=\\[|\\s*[.\u2022\\/])", "suy")), $R21 = (0, import_lib2.$R)(new RegExp("([<>])(=?)|([\u2264\u2265])", "suy")), $R22 = (0, import_lib2.$R)(new RegExp("[ \\t]*", "suy")), $R23 = (0, import_lib2.$R)(new RegExp("[ \\t]+", "suy")), $R24 = (0, import_lib2.$R)(new RegExp("[!+-]?", "suy")), $R25 = (0, import_lib2.$R)(new RegExp("(?:\\p{ID_Continue}|[\\u200C\\u200D$-])*", "suy")), $R26 = (0, import_lib2.$R)(new RegExp("[=>]", "suy")), $R27 = (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")), $R28 = (0, import_lib2.$R)(new RegExp("!\\^\\^?", "suy")), $R29 = (0, import_lib2.$R)(new RegExp("(?!\\+\\+|--)[!~+-](?!\\s)", "suy")), $R30 = (0, import_lib2.$R)(new RegExp("[:.]", "suy")), $R31 = (0, import_lib2.$R)(new RegExp("(?=for|if|loop|unless|until|while)", "suy")), $R32 = (0, import_lib2.$R)(new RegExp("(?:loop|while|until|for|do)(?!\\p{ID_Continue})", "suy")), $R33 = (0, import_lib2.$R)(new RegExp("(?=loop|comptime|do|for|until|while)", "suy")), $R34 = (0, import_lib2.$R)(new RegExp(`[^;"'\\s=>]+`, "suy")), $R35 = (0, import_lib2.$R)(new RegExp("(?=[0-9.])", "suy")), $R36 = (0, import_lib2.$R)(new RegExp("(?:0|[1-9](?:_[0-9]|[0-9])*)n", "suy")), $R37 = (0, import_lib2.$R)(new RegExp("(?:0|[1-9](?:_[0-9]|[0-9])*)(?=\\.(?:\\p{ID_Start}|[_$]))", "suy")), $R38 = (0, import_lib2.$R)(new RegExp("(?:0|[1-9](?:_[0-9]|[0-9])*)(?:\\.(?:[0-9](?:_[0-9]|[0-9])*))?", "suy")), $R39 = (0, import_lib2.$R)(new RegExp("(?:\\.[0-9](?:_[0-9]|[0-9])*)", "suy")), $R40 = (0, import_lib2.$R)(new RegExp("(?:[eE][+-]?[0-9]+(?:_[0-9]|[0-9])*)", "suy")), $R41 = (0, import_lib2.$R)(new RegExp("0[bB][01](?:[01]|_[01])*n?", "suy")), $R42 = (0, import_lib2.$R)(new RegExp("0[oO][0-7](?:[0-7]|_[0-7])*n?", "suy")), $R43 = (0, import_lib2.$R)(new RegExp("0[xX][0-9a-fA-F](?:[0-9a-fA-F]|_[0-9a-fA-F])*n?", "suy")), $R44 = (0, import_lib2.$R)(new RegExp("(?=[0-9])", "suy")), $R45 = (0, import_lib2.$R)(new RegExp("(?:0|[1-9](?:_[0-9]|[0-9])*)", "suy")), $R46 = (0, import_lib2.$R)(new RegExp('(?:\\\\.|[^"])*', "suy")), $R47 = (0, import_lib2.$R)(new RegExp("(?:\\\\.|[^'])*", "suy")), $R48 = (0, import_lib2.$R)(new RegExp('(?:\\\\.|[^"\\n])*', "suy")), $R49 = (0, import_lib2.$R)(new RegExp("(?:\\\\.|[^'\\n])*", "suy")), $R50 = (0, import_lib2.$R)(new RegExp('(?:"(?!"")|#(?!\\{)|\\\\.|[^#"])+', "suy")), $R51 = (0, import_lib2.$R)(new RegExp('(?:"(?!"")|\\\\.|[^"])+', "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("[\\s]+", "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("[*\\/\\r\\n]", "suy")), $R60 = (0, import_lib2.$R)(new RegExp("(?:\\\\.|[^[\\/\\r\\n])+", "suy")), $R61 = (0, import_lib2.$R)(new RegExp("(?:\\p{ID_Continue}|[\\u200C\\u200D$])*", "suy")), $R62 = (0, import_lib2.$R)(new RegExp("(?=[`'\"])", "suy")), $R63 = (0, import_lib2.$R)(new RegExp("(?:\\$(?!\\{)|\\\\.|[^$`])+", "suy")), $R64 = (0, import_lib2.$R)(new RegExp("(?:\\$(?!\\{)|`(?!``)|\\\\.|[^$`])+", "suy")), $R65 = (0, import_lib2.$R)(new RegExp("(?:on|off|yes|no)(?!\\p{ID_Continue})", "suy")), $R66 = (0, import_lib2.$R)(new RegExp("(?:isnt)(?!\\p{ID_Continue})", "suy")), $R67 = (0, import_lib2.$R)(new RegExp("(?:by)(?!\\p{ID_Continue})", "suy")), $R68 = (0, import_lib2.$R)(new RegExp("(?:of)(?!\\p{ID_Continue})", "suy")), $R69 = (0, import_lib2.$R)(new RegExp("(?:and|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|false|finally|for|function|if|import|in|instanceof|interface|is|let|loop|new|not|null|or|private|protected|public|return|static|super|switch|this|throw|true|try|typeof|unless|until|var|void|while|with|yield)(?!\\p{ID_Continue})", "suy")), $R70 = (0, import_lib2.$R)(new RegExp("(?=\\/|#)", "suy")), $R71 = (0, import_lib2.$R)(new RegExp("\\/\\/(?!\\/)[^\\r\\n]*", "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("###(?!#)", "suy")), $R76 = (0, import_lib2.$R)(new RegExp("\\/\\*(?:(?!\\*\\/)[^\\r\\n])*\\*\\/", "suy")), $R77 = (0, import_lib2.$R)(new RegExp("(?=[ \\t\\/\\\\#])", "suy")), $R78 = (0, import_lib2.$R)(new RegExp("(?=\\s|\\/|#)", "suy")), $R79 = (0, import_lib2.$R)(new RegExp("(?!\\p{ID_Continue})", "suy")), $R80 = (0, import_lib2.$R)(new RegExp("[=:]", "suy")), $R81 = (0, import_lib2.$R)(new RegExp("['\u2019]s", "suy")), $R82 = (0, import_lib2.$R)(new RegExp("\\s", "suy")), $R83 = (0, import_lib2.$R)(new RegExp("(?=[<])", "suy")), $R84 = (0, import_lib2.$R)(new RegExp("(?:\\p{ID_Start}|[_$])(?:\\p{ID_Continue}|[\\u200C\\u200D$-])*", "suy")), $R85 = (0, import_lib2.$R)(new RegExp("[!+-]", "suy")), $R86 = (0, import_lib2.$R)(new RegExp("[\\s>]|\\/>", "suy")), $R87 = (0, import_lib2.$R)(new RegExp("(?:[\\w\\-:]+|\\([^()]*\\)|\\[[^\\[\\]]*\\])+", "suy")), $R88 = (0, import_lib2.$R)(new RegExp(`"[^"]*"|'[^']*'`, "suy")), $R89 = (0, import_lib2.$R)(new RegExp("[<>]", "suy")), $R90 = (0, import_lib2.$R)(new RegExp("[!~+-](?!\\s|[!~+-]*&)", "suy")), $R91 = (0, import_lib2.$R)(new RegExp("(?:-[^-]|[^-]*)*", "suy")), $R92 = (0, import_lib2.$R)(new RegExp("[^{}<>\\r\\n]+", "suy")), $R93 = (0, import_lib2.$R)(new RegExp("[+-]?", "suy")), $R94 = (0, import_lib2.$R)(new RegExp("(?=if|unless)", "suy")), $R95 = (0, import_lib2.$R)(new RegExp("[|&<!=\\-\u21D2\u2192]", "suy")), $R96 = (0, import_lib2.$R)(new RegExp("(extends|not|is)(?!\\p{ID_Continue}|[\\u200C\\u200D$])", "suy")), $R97 = (0, import_lib2.$R)(new RegExp("const|in|out", "suy")), $R98 = (0, import_lib2.$R)(new RegExp("#![^\\r\\n]*", "suy")), $R99 = (0, import_lib2.$R)(new RegExp("[\\t ]*", "suy")), $R100 = (0, import_lib2.$R)(new RegExp("[\\s]*", "suy")), $R101 = (0, import_lib2.$R)(new RegExp("\\s+([+-]?)([a-zA-Z0-9-]+)(\\s*=\\s*([\\p{ID_Continue}.,+-]*))?", "suy")), $R102 = (0, import_lib2.$R)(new RegExp("\\/\\/\\/[^\\r\\n]*", "suy")), $R103 = (0, import_lib2.$R)(new RegExp("(?=[ \\t\\r\\n\\/#]|$)", "suy")), $R104 = (0, import_lib2.$R)(new RegExp("\\r\\n|\\n|\\r|$", "suy")), $R105 = (0, import_lib2.$R)(new RegExp("[^]*", "suy")), Program$0 = (0, import_lib2.$TS)((0, import_lib2.$S)(Reset, Init, (0, import_lib2.$E)(EOS), TopLevelStatements, __), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
|
|
7559
7598
|
var reset = $1, init = $2, ws1 = $3, statements = $4, ws2 = $5;
|
|
7560
7599
|
let program = {
|
|
7561
7600
|
type: "BlockStatement",
|
|
@@ -7729,7 +7768,7 @@ ${js}`
|
|
|
7729
7768
|
function ImplicitArguments(ctx, state2) {
|
|
7730
7769
|
return (0, import_lib2.$EVENT)(ctx, state2, "ImplicitArguments", ImplicitArguments$0);
|
|
7731
7770
|
}
|
|
7732
|
-
var ExplicitArguments$0 = (0, import_lib2.$TS)((0, import_lib2.$S)(OpenParen, AllowAll, (0, import_lib2.$E)((0, import_lib2.$S)(
|
|
7771
|
+
var ExplicitArguments$0 = (0, import_lib2.$TS)((0, import_lib2.$S)(OpenParen, AllowAll, (0, import_lib2.$E)((0, import_lib2.$S)(PostfixedArgumentList, (0, import_lib2.$E)((0, import_lib2.$S)(__, Comma)))), __, RestoreAll, CloseParen), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6) {
|
|
7733
7772
|
var open = $1, args = $3, ws = $4, close = $6;
|
|
7734
7773
|
return args ? args[1] ? args = [...args[0], args[1]] : args = args[0] : args = [], {
|
|
7735
7774
|
type: "Call",
|
|
@@ -7828,6 +7867,31 @@ ${js}`
|
|
|
7828
7867
|
function ArgumentList(ctx, state2) {
|
|
7829
7868
|
return (0, import_lib2.$EVENT_C)(ctx, state2, "ArgumentList", ArgumentList$$);
|
|
7830
7869
|
}
|
|
7870
|
+
var PostfixedArgumentList$0 = (0, import_lib2.$TS)((0, import_lib2.$S)((0, import_lib2.$N)(EOS), PostfixedArgumentPart, (0, import_lib2.$Q)((0, import_lib2.$S)(CommaDelimiter, (0, import_lib2.$N)(EOS), (0, import_lib2.$E)(_), PostfixedArgumentPart)), (0, import_lib2.$S)(CommaDelimiter, NestedArguments), (0, import_lib2.$Q)((0, import_lib2.$S)(OptionalCommaDelimiter, NestedArguments))), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
|
|
7871
|
+
return [
|
|
7872
|
+
$2,
|
|
7873
|
+
...$3.flatMap(([comma, eos, ws, arg]) => [comma, prepend(ws, arg)]),
|
|
7874
|
+
...Array.isArray($4[1]) ? [$4[0], ...$4[1]] : $4,
|
|
7875
|
+
...$5.flatMap(
|
|
7876
|
+
([comma, args]) => Array.isArray(args) ? [comma, ...args] : [comma, args]
|
|
7877
|
+
)
|
|
7878
|
+
];
|
|
7879
|
+
}), PostfixedArgumentList$1 = (0, import_lib2.$TS)((0, import_lib2.$S)(NestedArguments, (0, import_lib2.$Q)((0, import_lib2.$S)(OptionalCommaDelimiter, NestedArguments))), function($skip, $loc, $0, $1, $2) {
|
|
7880
|
+
return Array.isArray($1) || ($1 = [$1]), [
|
|
7881
|
+
...trimFirstSpace($1),
|
|
7882
|
+
...$2.flatMap(
|
|
7883
|
+
([comma, args]) => Array.isArray(args) ? [comma, ...args] : [comma, args]
|
|
7884
|
+
)
|
|
7885
|
+
];
|
|
7886
|
+
}), PostfixedArgumentList$2 = (0, import_lib2.$TS)((0, import_lib2.$S)((0, import_lib2.$E)(_), PostfixedArgumentPart, (0, import_lib2.$Q)((0, import_lib2.$S)(CommaDelimiter, (0, import_lib2.$E)(_), PostfixedArgumentPart))), function($skip, $loc, $0, $1, $2, $3) {
|
|
7887
|
+
return [
|
|
7888
|
+
prepend($1, $2),
|
|
7889
|
+
...$3.flatMap(([comma, ws, arg]) => [comma, prepend(ws, arg)])
|
|
7890
|
+
];
|
|
7891
|
+
}), PostfixedArgumentList$$ = [PostfixedArgumentList$0, PostfixedArgumentList$1, PostfixedArgumentList$2];
|
|
7892
|
+
function PostfixedArgumentList(ctx, state2) {
|
|
7893
|
+
return (0, import_lib2.$EVENT_C)(ctx, state2, "PostfixedArgumentList", PostfixedArgumentList$$);
|
|
7894
|
+
}
|
|
7831
7895
|
var NestedArguments$0 = NestedBulletedArray, NestedArguments$1 = NestedImplicitObjectLiteral, NestedArguments$2 = NestedArgumentList, NestedArguments$$ = [NestedArguments$0, NestedArguments$1, NestedArguments$2];
|
|
7832
7896
|
function NestedArguments(ctx, state2) {
|
|
7833
7897
|
return (0, import_lib2.$EVENT_C)(ctx, state2, "NestedArguments", NestedArguments$$);
|
|
@@ -7839,7 +7903,7 @@ ${js}`
|
|
|
7839
7903
|
function NestedArgumentList(ctx, state2) {
|
|
7840
7904
|
return (0, import_lib2.$EVENT)(ctx, state2, "NestedArgumentList", NestedArgumentList$0);
|
|
7841
7905
|
}
|
|
7842
|
-
var NestedArgument$0 = (0, import_lib2.$TS)((0, import_lib2.$S)((0, import_lib2.$N)(NestedImplicitPropertyDefinition), Nested, (0, import_lib2.$N)(Bullet),
|
|
7906
|
+
var NestedArgument$0 = (0, import_lib2.$TS)((0, import_lib2.$S)((0, import_lib2.$N)(NestedImplicitPropertyDefinition), Nested, (0, import_lib2.$N)(Bullet), SingleLinePostfixedArgumentExpressions, ParameterElementDelimiter), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
|
|
7843
7907
|
var indent = $2, args = $4, comma = $5;
|
|
7844
7908
|
let [arg0, ...rest] = args;
|
|
7845
7909
|
return arg0 = prepend(indent, arg0), [arg0, ...rest, comma];
|
|
@@ -7859,6 +7923,18 @@ ${js}`
|
|
|
7859
7923
|
function WArgumentPart(ctx, state2) {
|
|
7860
7924
|
return (0, import_lib2.$EVENT)(ctx, state2, "WArgumentPart", WArgumentPart$0);
|
|
7861
7925
|
}
|
|
7926
|
+
var SingleLinePostfixedArgumentExpressions$0 = (0, import_lib2.$TS)((0, import_lib2.$S)(WPostfixedArgumentPart, (0, import_lib2.$Q)((0, import_lib2.$S)((0, import_lib2.$S)((0, import_lib2.$E)(_), Comma), WPostfixedArgumentPart))), function($skip, $loc, $0, $1, $2) {
|
|
7927
|
+
return [$1, ...$2.flat()];
|
|
7928
|
+
});
|
|
7929
|
+
function SingleLinePostfixedArgumentExpressions(ctx, state2) {
|
|
7930
|
+
return (0, import_lib2.$EVENT)(ctx, state2, "SingleLinePostfixedArgumentExpressions", SingleLinePostfixedArgumentExpressions$0);
|
|
7931
|
+
}
|
|
7932
|
+
var WPostfixedArgumentPart$0 = (0, import_lib2.$TS)((0, import_lib2.$S)((0, import_lib2.$E)(_), PostfixedArgumentPart), function($skip, $loc, $0, $1, $2) {
|
|
7933
|
+
return prepend($1, $2);
|
|
7934
|
+
});
|
|
7935
|
+
function WPostfixedArgumentPart(ctx, state2) {
|
|
7936
|
+
return (0, import_lib2.$EVENT)(ctx, state2, "WPostfixedArgumentPart", WPostfixedArgumentPart$0);
|
|
7937
|
+
}
|
|
7862
7938
|
var ArgumentPart$0 = (0, import_lib2.$TS)((0, import_lib2.$S)(DotDotDot, Expression), function($skip, $loc, $0, $1, $2) {
|
|
7863
7939
|
var spread = $1, expression = $2;
|
|
7864
7940
|
return {
|
|
@@ -7879,6 +7955,26 @@ ${js}`
|
|
|
7879
7955
|
function ArgumentPart(ctx, state2) {
|
|
7880
7956
|
return (0, import_lib2.$EVENT_C)(ctx, state2, "ArgumentPart", ArgumentPart$$);
|
|
7881
7957
|
}
|
|
7958
|
+
var PostfixedArgumentPart$0 = (0, import_lib2.$TS)((0, import_lib2.$S)(DotDotDot, PostfixedExpression), function($skip, $loc, $0, $1, $2) {
|
|
7959
|
+
var spread = $1, expression = $2;
|
|
7960
|
+
return {
|
|
7961
|
+
type: "Argument",
|
|
7962
|
+
children: $0,
|
|
7963
|
+
expression,
|
|
7964
|
+
spread
|
|
7965
|
+
};
|
|
7966
|
+
}), PostfixedArgumentPart$1 = (0, import_lib2.$TS)((0, import_lib2.$S)(PostfixedExpression, (0, import_lib2.$E)(DotDotDot)), function($skip, $loc, $0, $1, $2) {
|
|
7967
|
+
var expression = $1, spread = $2;
|
|
7968
|
+
return {
|
|
7969
|
+
type: "Argument",
|
|
7970
|
+
children: spread ? [spread, expression] : [expression],
|
|
7971
|
+
expression,
|
|
7972
|
+
spread
|
|
7973
|
+
};
|
|
7974
|
+
}), PostfixedArgumentPart$$ = [PostfixedArgumentPart$0, PostfixedArgumentPart$1];
|
|
7975
|
+
function PostfixedArgumentPart(ctx, state2) {
|
|
7976
|
+
return (0, import_lib2.$EVENT_C)(ctx, state2, "PostfixedArgumentPart", PostfixedArgumentPart$$);
|
|
7977
|
+
}
|
|
7882
7978
|
var BinaryOpExpression$0 = (0, import_lib2.$TS)((0, import_lib2.$S)(UnaryExpression, (0, import_lib2.$Q)(BinaryOpRHS)), function($skip, $loc, $0, $1, $2) {
|
|
7883
7979
|
return $2.length ? processBinaryOpExpression($0) : $1;
|
|
7884
7980
|
});
|
|
@@ -7901,9 +7997,10 @@ ${js}`
|
|
|
7901
7997
|
return [[], op, [], rhs];
|
|
7902
7998
|
}), BinaryOpRHS$2 = (0, import_lib2.$TS)((0, import_lib2.$S)(NewlineBinaryOpAllowed, NotDedentedBinaryOp, WRHS), function($skip, $loc, $0, $1, $2, $3) {
|
|
7903
7999
|
var op = $2, rhs = $3;
|
|
7904
|
-
return [...op, ...rhs];
|
|
7905
|
-
}), BinaryOpRHS$3 = (0, import_lib2.$
|
|
7906
|
-
|
|
8000
|
+
return op[1].token === ">" && op[0].length === 0 ? $skip : [...op, ...rhs];
|
|
8001
|
+
}), BinaryOpRHS$3 = (0, import_lib2.$TS)((0, import_lib2.$S)((0, import_lib2.$N)(NewlineBinaryOpAllowed), SingleLineBinaryOpRHS), function($skip, $loc, $0, $1, $2) {
|
|
8002
|
+
let [ws1, op] = $2;
|
|
8003
|
+
return op.token === ">" && !ws1.length ? $skip : $2;
|
|
7907
8004
|
}), BinaryOpRHS$$ = [BinaryOpRHS$0, BinaryOpRHS$1, BinaryOpRHS$2, BinaryOpRHS$3];
|
|
7908
8005
|
function BinaryOpRHS(ctx, state2) {
|
|
7909
8006
|
return (0, import_lib2.$EVENT_C)(ctx, state2, "BinaryOpRHS", BinaryOpRHS$$);
|
|
@@ -8627,7 +8724,7 @@ ${js}`
|
|
|
8627
8724
|
children: [id, " = ", exp]
|
|
8628
8725
|
};
|
|
8629
8726
|
}
|
|
8630
|
-
}), FieldDefinition$1 = (0, import_lib2.$TS)((0, import_lib2.$S)(InsertReadonly, ClassElementName, (0, import_lib2.$E)(TypeSuffix), __, ConstAssignment,
|
|
8727
|
+
}), FieldDefinition$1 = (0, import_lib2.$TS)((0, import_lib2.$S)(InsertReadonly, ClassElementName, (0, import_lib2.$E)(TypeSuffix), __, ConstAssignment, MaybeNestedPostfixedCommaExpression), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6) {
|
|
8631
8728
|
var readonly = $1, id = $2, typeSuffix = $3, ca = $5;
|
|
8632
8729
|
return readonly.children[0].$loc = {
|
|
8633
8730
|
pos: ca.$loc.pos - 1,
|
|
@@ -9026,7 +9123,21 @@ ${js}`
|
|
|
9026
9123
|
dot,
|
|
9027
9124
|
children: [dot, ...comments, ...id.children]
|
|
9028
9125
|
};
|
|
9029
|
-
}), PropertyAccess$3 = (0, import_lib2.$TS)((0, import_lib2.$S)(
|
|
9126
|
+
}), PropertyAccess$3 = (0, import_lib2.$TS)((0, import_lib2.$S)(ExplicitAccessStart, (0, import_lib2.$Y)(EOS)), function($skip, $loc, $0, $1, $2) {
|
|
9127
|
+
var dot = $1;
|
|
9128
|
+
return {
|
|
9129
|
+
type: "PropertyAccess",
|
|
9130
|
+
name: "",
|
|
9131
|
+
dot,
|
|
9132
|
+
children: [
|
|
9133
|
+
dot,
|
|
9134
|
+
{
|
|
9135
|
+
type: "Error",
|
|
9136
|
+
message: "Missing property name after '.'"
|
|
9137
|
+
}
|
|
9138
|
+
]
|
|
9139
|
+
};
|
|
9140
|
+
}), PropertyAccess$4 = (0, import_lib2.$TS)((0, import_lib2.$S)(ImplicitAccessStart, (0, import_lib2.$C)(PrivateIdentifier, LengthShorthand)), function($skip, $loc, $0, $1, $2) {
|
|
9030
9141
|
var dot = $1, id = $2;
|
|
9031
9142
|
return {
|
|
9032
9143
|
type: "PropertyAccess",
|
|
@@ -9034,7 +9145,7 @@ ${js}`
|
|
|
9034
9145
|
dot,
|
|
9035
9146
|
children: [dot, ...id.children]
|
|
9036
9147
|
};
|
|
9037
|
-
}), PropertyAccess$
|
|
9148
|
+
}), PropertyAccess$5 = (0, import_lib2.$TS)((0, import_lib2.$S)(CoffeePrototypeEnabled, (0, import_lib2.$E)(PropertyAccessModifier), DoubleColon, (0, import_lib2.$E)(IdentifierName)), function($skip, $loc, $0, $1, $2, $3, $4) {
|
|
9038
9149
|
var modifier = $2, p = $3, id = $4;
|
|
9039
9150
|
let dot = { token: ".", $loc: p.$loc }, start = {
|
|
9040
9151
|
type: "AccessStart",
|
|
@@ -9052,7 +9163,7 @@ ${js}`
|
|
|
9052
9163
|
dot: start,
|
|
9053
9164
|
children: [start, "prototype"]
|
|
9054
9165
|
};
|
|
9055
|
-
}), PropertyAccess$$ = [PropertyAccess$0, PropertyAccess$1, PropertyAccess$2, PropertyAccess$3, PropertyAccess$4];
|
|
9166
|
+
}), PropertyAccess$$ = [PropertyAccess$0, PropertyAccess$1, PropertyAccess$2, PropertyAccess$3, PropertyAccess$4, PropertyAccess$5];
|
|
9056
9167
|
function PropertyAccess(ctx, state2) {
|
|
9057
9168
|
return (0, import_lib2.$EVENT_C)(ctx, state2, "PropertyAccess", PropertyAccess$$);
|
|
9058
9169
|
}
|
|
@@ -11478,19 +11589,25 @@ ${js}`
|
|
|
11478
11589
|
function PostfixedNoCommaStatement(ctx, state2) {
|
|
11479
11590
|
return (0, import_lib2.$EVENT)(ctx, state2, "PostfixedNoCommaStatement", PostfixedNoCommaStatement$0);
|
|
11480
11591
|
}
|
|
11481
|
-
var PostfixedExpression$0 = (0, import_lib2.$TS)((0, import_lib2.$S)(
|
|
11592
|
+
var PostfixedExpression$0 = (0, import_lib2.$TS)((0, import_lib2.$S)(AssignmentExpressionSpread, (0, import_lib2.$E)(_), (0, import_lib2.$N)(IfClause), PostfixStatement), function($skip, $loc, $0, $1, $2, $3, $4) {
|
|
11593
|
+
var expression = $1, ws = $2, post = $4;
|
|
11594
|
+
return attachPostfixStatementAsExpression(expression, [ws, post]);
|
|
11595
|
+
}), PostfixedExpression$1 = (0, import_lib2.$TS)((0, import_lib2.$S)(Expression, (0, import_lib2.$S)((0, import_lib2.$E)(_), PostfixStatement)), function($skip, $loc, $0, $1, $2) {
|
|
11482
11596
|
var expression = $1, post = $2;
|
|
11483
|
-
return
|
|
11484
|
-
});
|
|
11597
|
+
return attachPostfixStatementAsExpression(expression, post);
|
|
11598
|
+
}), PostfixedExpression$2 = Expression, PostfixedExpression$$ = [PostfixedExpression$0, PostfixedExpression$1, PostfixedExpression$2];
|
|
11485
11599
|
function PostfixedExpression(ctx, state2) {
|
|
11486
|
-
return (0, import_lib2.$
|
|
11600
|
+
return (0, import_lib2.$EVENT_C)(ctx, state2, "PostfixedExpression", PostfixedExpression$$);
|
|
11487
11601
|
}
|
|
11488
|
-
var PostfixedCommaExpression$0 = (0, import_lib2.$TS)((0, import_lib2.$S)(
|
|
11602
|
+
var PostfixedCommaExpression$0 = (0, import_lib2.$TS)((0, import_lib2.$S)(CommaExpressionSpread, (0, import_lib2.$E)(_), (0, import_lib2.$N)(IfClause), PostfixStatement), function($skip, $loc, $0, $1, $2, $3, $4) {
|
|
11603
|
+
var expression = $1, ws = $2, post = $4;
|
|
11604
|
+
return attachPostfixStatementAsExpression(expression, [ws, post]);
|
|
11605
|
+
}), PostfixedCommaExpression$1 = (0, import_lib2.$TS)((0, import_lib2.$S)(Expression, (0, import_lib2.$S)((0, import_lib2.$E)(_), PostfixStatement)), function($skip, $loc, $0, $1, $2) {
|
|
11489
11606
|
var expression = $1, post = $2;
|
|
11490
|
-
return
|
|
11491
|
-
});
|
|
11607
|
+
return attachPostfixStatementAsExpression(expression, post);
|
|
11608
|
+
}), PostfixedCommaExpression$2 = CommaExpression, PostfixedCommaExpression$$ = [PostfixedCommaExpression$0, PostfixedCommaExpression$1, PostfixedCommaExpression$2];
|
|
11492
11609
|
function PostfixedCommaExpression(ctx, state2) {
|
|
11493
|
-
return (0, import_lib2.$
|
|
11610
|
+
return (0, import_lib2.$EVENT_C)(ctx, state2, "PostfixedCommaExpression", PostfixedCommaExpression$$);
|
|
11494
11611
|
}
|
|
11495
11612
|
var PostfixStatement$0 = (0, import_lib2.$T)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($R31, "PostfixStatement /(?=for|if|loop|unless|until|while)/"), _PostfixStatement), function(value) {
|
|
11496
11613
|
return value[1];
|
|
@@ -12641,6 +12758,16 @@ ${js}`
|
|
|
12641
12758
|
function MaybeNestedPostfixedExpression(ctx, state2) {
|
|
12642
12759
|
return (0, import_lib2.$EVENT_C)(ctx, state2, "MaybeNestedPostfixedExpression", MaybeNestedPostfixedExpression$$);
|
|
12643
12760
|
}
|
|
12761
|
+
var MaybeNestedPostfixedCommaExpression$0 = (0, import_lib2.$TS)((0, import_lib2.$S)((0, import_lib2.$N)(NestedBulletedArray), (0, import_lib2.$N)(NestedImplicitObjectLiteral), PushIndent, (0, import_lib2.$E)((0, import_lib2.$S)(Nested, PostfixedCommaExpression)), PopIndent, (0, import_lib2.$E)(AllowedTrailingCallExpressions)), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6) {
|
|
12762
|
+
var expression = $4, trailing = $6;
|
|
12763
|
+
return expression ? trailing ? [expression, trailing] : expression : $skip;
|
|
12764
|
+
}), MaybeNestedPostfixedCommaExpression$1 = (0, import_lib2.$TS)((0, import_lib2.$S)(ForbidImplicitFragment, (0, import_lib2.$E)(PostfixedCommaExpression), RestoreImplicitFragment), function($skip, $loc, $0, $1, $2, $3) {
|
|
12765
|
+
var expression = $2;
|
|
12766
|
+
return expression || $skip;
|
|
12767
|
+
}), MaybeNestedPostfixedCommaExpression$$ = [MaybeNestedPostfixedCommaExpression$0, MaybeNestedPostfixedCommaExpression$1];
|
|
12768
|
+
function MaybeNestedPostfixedCommaExpression(ctx, state2) {
|
|
12769
|
+
return (0, import_lib2.$EVENT_C)(ctx, state2, "MaybeNestedPostfixedCommaExpression", MaybeNestedPostfixedCommaExpression$$);
|
|
12770
|
+
}
|
|
12644
12771
|
var NestedPostfixedExpressionNoTrailing$0 = NestedBulletedArray, NestedPostfixedExpressionNoTrailing$1 = NestedImplicitObjectLiteral, NestedPostfixedExpressionNoTrailing$2 = (0, import_lib2.$TS)((0, import_lib2.$S)(PushIndent, (0, import_lib2.$E)((0, import_lib2.$S)(Nested, PostfixedExpression)), PopIndent), function($skip, $loc, $0, $1, $2, $3) {
|
|
12645
12772
|
var expression = $2;
|
|
12646
12773
|
return expression || $skip;
|
|
@@ -12679,7 +12806,7 @@ ${js}`
|
|
|
12679
12806
|
{ ...$1, token: "const", js: !0 }
|
|
12680
12807
|
], $0.slice(1)]
|
|
12681
12808
|
};
|
|
12682
|
-
}), ImportDeclaration$1 = (0, import_lib2.$TS)((0, import_lib2.$S)((0, import_lib2.$C)((0, import_lib2.$S)(Import,
|
|
12809
|
+
}), ImportDeclaration$1 = (0, import_lib2.$TS)((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), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7) {
|
|
12683
12810
|
var i = $1, behavior = $3, ws1 = $4, imports = $5, ws2 = $6, from = $7;
|
|
12684
12811
|
let errors = [];
|
|
12685
12812
|
return behavior?.error && errors.push(behavior.error), imports.specifiers.forEach((spec) => {
|
|
@@ -12691,7 +12818,7 @@ ${js}`
|
|
|
12691
12818
|
imports,
|
|
12692
12819
|
from
|
|
12693
12820
|
};
|
|
12694
|
-
}), ImportDeclaration$2 = (0, import_lib2.$TS)((0, import_lib2.$S)(Import,
|
|
12821
|
+
}), ImportDeclaration$2 = (0, import_lib2.$TS)((0, import_lib2.$S)(Import, SameLineOrIndentedFurther, (0, import_lib2.$E)((0, import_lib2.$S)(TypeKeyword, SameLineOrIndentedFurther)), ImportClause, __, FromClause), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6) {
|
|
12695
12822
|
var t = $3, imports = $4, from = $6;
|
|
12696
12823
|
return {
|
|
12697
12824
|
type: "ImportDeclaration",
|
|
@@ -12700,16 +12827,33 @@ ${js}`
|
|
|
12700
12827
|
from,
|
|
12701
12828
|
ts: !!t
|
|
12702
12829
|
};
|
|
12703
|
-
}), ImportDeclaration$3 = (0, import_lib2.$T)((0, import_lib2.$S)(Import,
|
|
12830
|
+
}), ImportDeclaration$3 = (0, import_lib2.$T)((0, import_lib2.$S)(Import, SameLineOrIndentedFurther, ModuleSpecifier), function(value) {
|
|
12704
12831
|
var module = value[2];
|
|
12705
12832
|
return { type: "ImportDeclaration", children: value, module };
|
|
12706
|
-
}), ImportDeclaration$4 = (0, import_lib2.$TS)((0, import_lib2.$S)(
|
|
12833
|
+
}), ImportDeclaration$4 = (0, import_lib2.$TS)((0, import_lib2.$S)(Import, (0, import_lib2.$E)(_), (0, import_lib2.$E)(UnclosedSingleLineStringLiteral), (0, import_lib2.$Y)(EOS)), function($skip, $loc, $0, $1, $2, $3, $4) {
|
|
12834
|
+
var i = $1, ws = $2, unclosed = $3;
|
|
12835
|
+
return {
|
|
12836
|
+
type: "ImportDeclaration",
|
|
12837
|
+
children: [
|
|
12838
|
+
i,
|
|
12839
|
+
ws,
|
|
12840
|
+
...unclosed ?? [
|
|
12841
|
+
{
|
|
12842
|
+
type: "Error",
|
|
12843
|
+
message: 'Expected module or import clause after "import"'
|
|
12844
|
+
},
|
|
12845
|
+
'""'
|
|
12846
|
+
// act like an empty string to let TypeScript do completions
|
|
12847
|
+
]
|
|
12848
|
+
]
|
|
12849
|
+
};
|
|
12850
|
+
}), ImportDeclaration$5 = (0, import_lib2.$TS)((0, import_lib2.$S)(ImpliedImport, (0, import_lib2.$E)((0, import_lib2.$S)(TypeKeyword, SameLineOrIndentedFurther)), ImportClause, SameLineOrIndentedFurther, FromClause), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
|
|
12707
12851
|
var i = $1, t = $2, imports = $3, w = $4, from = $5;
|
|
12708
12852
|
return i.$loc = {
|
|
12709
12853
|
pos: from[0].$loc.pos - 1,
|
|
12710
12854
|
length: from[0].$loc.length + 1
|
|
12711
12855
|
}, { type: "ImportDeclaration", ts: !!t, children: [i, t, imports, w, from], imports, from };
|
|
12712
|
-
}), ImportDeclaration$
|
|
12856
|
+
}), ImportDeclaration$6 = (0, import_lib2.$TS)((0, import_lib2.$S)(FromClause, SameLineOrIndentedFurther, Import, SameLineOrIndentedFurther, Operator, (0, import_lib2.$E)(OperatorBehavior), SameLineOrIndentedFurther, OperatorNamedImports), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8) {
|
|
12713
12857
|
var from = $1, fws = $2, i = $3, iws = $4, behavior = $6, ows = $7, imports = $8;
|
|
12714
12858
|
let errors = [];
|
|
12715
12859
|
return behavior?.error && errors.push(behavior.error), imports.specifiers.forEach((spec) => {
|
|
@@ -12721,7 +12865,7 @@ ${js}`
|
|
|
12721
12865
|
imports,
|
|
12722
12866
|
from
|
|
12723
12867
|
};
|
|
12724
|
-
}), ImportDeclaration$
|
|
12868
|
+
}), ImportDeclaration$7 = (0, import_lib2.$TS)((0, import_lib2.$S)(FromClause, SameLineOrIndentedFurther, Import, SameLineOrIndentedFurther, (0, import_lib2.$E)((0, import_lib2.$S)(TypeKeyword, SameLineOrIndentedFurther)), ImportClause), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6) {
|
|
12725
12869
|
var from = $1, fws = $2, i = $3, iws = $4, t = $5, imports = $6;
|
|
12726
12870
|
return {
|
|
12727
12871
|
type: "ImportDeclaration",
|
|
@@ -12730,7 +12874,7 @@ ${js}`
|
|
|
12730
12874
|
from,
|
|
12731
12875
|
ts: !!t
|
|
12732
12876
|
};
|
|
12733
|
-
}), ImportDeclaration$$ = [ImportDeclaration$0, ImportDeclaration$1, ImportDeclaration$2, ImportDeclaration$3, ImportDeclaration$4, ImportDeclaration$5, ImportDeclaration$6];
|
|
12877
|
+
}), ImportDeclaration$$ = [ImportDeclaration$0, ImportDeclaration$1, ImportDeclaration$2, ImportDeclaration$3, ImportDeclaration$4, ImportDeclaration$5, ImportDeclaration$6, ImportDeclaration$7];
|
|
12734
12878
|
function ImportDeclaration(ctx, state2) {
|
|
12735
12879
|
return (0, import_lib2.$EVENT_C)(ctx, state2, "ImportDeclaration", ImportDeclaration$$);
|
|
12736
12880
|
}
|
|
@@ -12812,9 +12956,16 @@ ${js}`
|
|
|
12812
12956
|
function DynamicImportContents(ctx, state2) {
|
|
12813
12957
|
return (0, import_lib2.$EVENT_C)(ctx, state2, "DynamicImportContents", DynamicImportContents$$);
|
|
12814
12958
|
}
|
|
12815
|
-
var FromClause$0 = (0, import_lib2.$TS)((0, import_lib2.$S)(From,
|
|
12959
|
+
var FromClause$0 = (0, import_lib2.$TS)((0, import_lib2.$S)(From, SameLineOrIndentedFurther, (0, import_lib2.$E)((0, import_lib2.$C)(ModuleSpecifier, UnclosedSingleLineStringLiteral))), function($skip, $loc, $0, $1, $2, $3) {
|
|
12816
12960
|
var module = $3;
|
|
12817
|
-
return
|
|
12961
|
+
return module ??= [
|
|
12962
|
+
{
|
|
12963
|
+
type: "Error",
|
|
12964
|
+
message: "Expected module specifier after `from`"
|
|
12965
|
+
},
|
|
12966
|
+
'""'
|
|
12967
|
+
// act like an empty string to let TypeScript do completions
|
|
12968
|
+
], Array.isArray(module) ? [$1, $2, ...module] : [$1, $2, module];
|
|
12818
12969
|
});
|
|
12819
12970
|
function FromClause(ctx, state2) {
|
|
12820
12971
|
return (0, import_lib2.$EVENT)(ctx, state2, "FromClause", FromClause$0);
|
|
@@ -12935,11 +13086,11 @@ ${js}`
|
|
|
12935
13086
|
function ModuleSpecifier(ctx, state2) {
|
|
12936
13087
|
return (0, import_lib2.$EVENT)(ctx, state2, "ModuleSpecifier", ModuleSpecifier$0);
|
|
12937
13088
|
}
|
|
12938
|
-
var UnprocessedModuleSpecifier$0 =
|
|
13089
|
+
var UnprocessedModuleSpecifier$0 = SingleLineStringLiteral, UnprocessedModuleSpecifier$1 = UnquotedSpecifier, UnprocessedModuleSpecifier$$ = [UnprocessedModuleSpecifier$0, UnprocessedModuleSpecifier$1];
|
|
12939
13090
|
function UnprocessedModuleSpecifier(ctx, state2) {
|
|
12940
13091
|
return (0, import_lib2.$EVENT_C)(ctx, state2, "UnprocessedModuleSpecifier", UnprocessedModuleSpecifier$$);
|
|
12941
13092
|
}
|
|
12942
|
-
var UnquotedSpecifier$0 = (0, import_lib2.$TV)((0, import_lib2.$EXPECT)($R34,
|
|
13093
|
+
var UnquotedSpecifier$0 = (0, import_lib2.$TV)((0, import_lib2.$EXPECT)($R34, `UnquotedSpecifier /[^;"'\\s=>]+/`), function($skip, $loc, $0, $1) {
|
|
12943
13094
|
var spec = $0;
|
|
12944
13095
|
return { $loc, token: `"${spec}"` };
|
|
12945
13096
|
});
|
|
@@ -12980,7 +13131,7 @@ ${js}`
|
|
|
12980
13131
|
children: [...$0.slice(0, -2), id]
|
|
12981
13132
|
}
|
|
12982
13133
|
];
|
|
12983
|
-
}), ExportDeclaration$2 = (0, import_lib2.$TS)((0, import_lib2.$S)((0, import_lib2.$E)(Decorators), Export, __, Default, __, (0, import_lib2.$C)(HoistableDeclaration, ClassDeclaration, InterfaceDeclaration,
|
|
13134
|
+
}), ExportDeclaration$2 = (0, import_lib2.$TS)((0, import_lib2.$S)((0, import_lib2.$E)(Decorators), Export, __, Default, __, (0, import_lib2.$C)(HoistableDeclaration, ClassDeclaration, InterfaceDeclaration, MaybeNestedPostfixedExpression)), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6) {
|
|
12984
13135
|
var declaration = $6;
|
|
12985
13136
|
return { type: "ExportDeclaration", declaration, ts: declaration.ts, children: $0 };
|
|
12986
13137
|
}), ExportDeclaration$3 = (0, import_lib2.$TS)((0, import_lib2.$S)(Export, __, ExportFromClause, __, FromClause), function($skip, $loc, $0, $1, $2, $3, $4, $5) {
|
|
@@ -13070,7 +13221,7 @@ ${js}`
|
|
|
13070
13221
|
splices: bindings.flatMap((b) => b.splices),
|
|
13071
13222
|
thisAssignments: bindings.flatMap((b) => b.thisAssignments)
|
|
13072
13223
|
};
|
|
13073
|
-
}), LexicalDeclaration$1 = (0, import_lib2.$TS)((0, import_lib2.$S)(Loc, (0, import_lib2.$C)(BindingPattern, BindingIdentifier), (0, import_lib2.$E)(TypeSuffix), __, (0, import_lib2.$C)(ConstAssignment, LetAssignment),
|
|
13224
|
+
}), LexicalDeclaration$1 = (0, import_lib2.$TS)((0, import_lib2.$S)(Loc, (0, import_lib2.$C)(BindingPattern, BindingIdentifier), (0, import_lib2.$E)(TypeSuffix), __, (0, import_lib2.$C)(ConstAssignment, LetAssignment), MaybeNestedPostfixedCommaExpression), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6) {
|
|
13074
13225
|
var loc = $1, assign = $5;
|
|
13075
13226
|
return processAssignmentDeclaration(
|
|
13076
13227
|
{ $loc: loc, token: assign.decl },
|
|
@@ -13127,7 +13278,7 @@ ${js}`
|
|
|
13127
13278
|
function LexicalBinding(ctx, state2) {
|
|
13128
13279
|
return (0, import_lib2.$EVENT_C)(ctx, state2, "LexicalBinding", LexicalBinding$$);
|
|
13129
13280
|
}
|
|
13130
|
-
var Initializer$0 = (0, import_lib2.$T)((0, import_lib2.$S)(__, Equals,
|
|
13281
|
+
var Initializer$0 = (0, import_lib2.$T)((0, import_lib2.$S)(__, Equals, MaybeNestedPostfixedExpression), function(value) {
|
|
13131
13282
|
var expression = value[2];
|
|
13132
13283
|
return { type: "Initializer", expression, children: value };
|
|
13133
13284
|
});
|
|
@@ -13240,6 +13391,32 @@ ${js}`
|
|
|
13240
13391
|
function SingleStringCharacters(ctx, state2) {
|
|
13241
13392
|
return (0, import_lib2.$EVENT)(ctx, state2, "SingleStringCharacters", SingleStringCharacters$0);
|
|
13242
13393
|
}
|
|
13394
|
+
var SingleLineStringLiteral$0 = (0, import_lib2.$TV)((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))), function($skip, $loc, $0, $1) {
|
|
13395
|
+
return {
|
|
13396
|
+
type: "StringLiteral",
|
|
13397
|
+
token: $1,
|
|
13398
|
+
$loc
|
|
13399
|
+
};
|
|
13400
|
+
});
|
|
13401
|
+
function SingleLineStringLiteral(ctx, state2) {
|
|
13402
|
+
return (0, import_lib2.$EVENT)(ctx, state2, "SingleLineStringLiteral", SingleLineStringLiteral$0);
|
|
13403
|
+
}
|
|
13404
|
+
var UnclosedSingleLineStringLiteral$0 = (0, import_lib2.$TS)((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)), function($skip, $loc, $0, $1, $2) {
|
|
13405
|
+
return [
|
|
13406
|
+
{
|
|
13407
|
+
type: "StringLiteral",
|
|
13408
|
+
token: $1 + $1[0],
|
|
13409
|
+
$loc
|
|
13410
|
+
},
|
|
13411
|
+
{
|
|
13412
|
+
type: "Error",
|
|
13413
|
+
message: "Unclosed string literal"
|
|
13414
|
+
}
|
|
13415
|
+
];
|
|
13416
|
+
});
|
|
13417
|
+
function UnclosedSingleLineStringLiteral(ctx, state2) {
|
|
13418
|
+
return (0, import_lib2.$EVENT)(ctx, state2, "UnclosedSingleLineStringLiteral", UnclosedSingleLineStringLiteral$0);
|
|
13419
|
+
}
|
|
13243
13420
|
var TripleDoubleStringContents$0 = (0, import_lib2.$T)((0, import_lib2.$S)(CoffeeInterpolationEnabled, (0, import_lib2.$Q)((0, import_lib2.$C)(CoffeeTripleDoubleStringCharacters, CoffeeStringSubstitution))), function(value) {
|
|
13244
13421
|
return value[1];
|
|
13245
13422
|
}), TripleDoubleStringContents$1 = (0, import_lib2.$T)((0, import_lib2.$S)((0, import_lib2.$N)(CoffeeInterpolationEnabled), TripleDoubleStringCharacters), function(value) {
|
|
@@ -13248,19 +13425,19 @@ ${js}`
|
|
|
13248
13425
|
function TripleDoubleStringContents(ctx, state2) {
|
|
13249
13426
|
return (0, import_lib2.$EVENT_C)(ctx, state2, "TripleDoubleStringContents", TripleDoubleStringContents$$);
|
|
13250
13427
|
}
|
|
13251
|
-
var CoffeeTripleDoubleStringCharacters$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($
|
|
13428
|
+
var CoffeeTripleDoubleStringCharacters$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($R50, 'CoffeeTripleDoubleStringCharacters /(?:"(?!"")|#(?!\\{)|\\\\.|[^#"])+/'), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
|
|
13252
13429
|
return { $loc, token: $0 };
|
|
13253
13430
|
});
|
|
13254
13431
|
function CoffeeTripleDoubleStringCharacters(ctx, state2) {
|
|
13255
13432
|
return (0, import_lib2.$EVENT)(ctx, state2, "CoffeeTripleDoubleStringCharacters", CoffeeTripleDoubleStringCharacters$0);
|
|
13256
13433
|
}
|
|
13257
|
-
var TripleDoubleStringCharacters$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($
|
|
13434
|
+
var TripleDoubleStringCharacters$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($R51, 'TripleDoubleStringCharacters /(?:"(?!"")|\\\\.|[^"])+/'), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
|
|
13258
13435
|
return { $loc, token: $0 };
|
|
13259
13436
|
});
|
|
13260
13437
|
function TripleDoubleStringCharacters(ctx, state2) {
|
|
13261
13438
|
return (0, import_lib2.$EVENT)(ctx, state2, "TripleDoubleStringCharacters", TripleDoubleStringCharacters$0);
|
|
13262
13439
|
}
|
|
13263
|
-
var TripleSingleStringCharacters$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($
|
|
13440
|
+
var TripleSingleStringCharacters$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($R52, "TripleSingleStringCharacters /(?:'(?!'')|\\\\.|[^'])*/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
|
|
13264
13441
|
return { $loc, token: $0 };
|
|
13265
13442
|
});
|
|
13266
13443
|
function TripleSingleStringCharacters(ctx, state2) {
|
|
@@ -13279,7 +13456,7 @@ ${js}`
|
|
|
13279
13456
|
function CoffeeInterpolatedDoubleQuotedString(ctx, state2) {
|
|
13280
13457
|
return (0, import_lib2.$EVENT)(ctx, state2, "CoffeeInterpolatedDoubleQuotedString", CoffeeInterpolatedDoubleQuotedString$0);
|
|
13281
13458
|
}
|
|
13282
|
-
var CoffeeDoubleQuotedStringCharacters$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($
|
|
13459
|
+
var CoffeeDoubleQuotedStringCharacters$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($R53, 'CoffeeDoubleQuotedStringCharacters /(?:\\\\.|#(?!\\{)|[^"#])+/'), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
|
|
13283
13460
|
return { $loc, token: $0 };
|
|
13284
13461
|
});
|
|
13285
13462
|
function CoffeeDoubleQuotedStringCharacters(ctx, state2) {
|
|
@@ -13302,7 +13479,7 @@ ${js}`
|
|
|
13302
13479
|
function RegularExpressionClass(ctx, state2) {
|
|
13303
13480
|
return (0, import_lib2.$EVENT)(ctx, state2, "RegularExpressionClass", RegularExpressionClass$0);
|
|
13304
13481
|
}
|
|
13305
|
-
var RegularExpressionClassCharacters$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($
|
|
13482
|
+
var RegularExpressionClassCharacters$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($R54, "RegularExpressionClassCharacters /(?:\\\\.|[^\\]])*/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
|
|
13306
13483
|
return { $loc, token: $0 };
|
|
13307
13484
|
});
|
|
13308
13485
|
function RegularExpressionClassCharacters(ctx, state2) {
|
|
@@ -13348,7 +13525,7 @@ ${js}`
|
|
|
13348
13525
|
return { type: "Substitution", children: value[1] };
|
|
13349
13526
|
}), HeregexPart$2 = (0, import_lib2.$T)((0, import_lib2.$S)(TemplateSubstitution), function(value) {
|
|
13350
13527
|
return { type: "Substitution", children: value[0] };
|
|
13351
|
-
}), HeregexPart$3 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($
|
|
13528
|
+
}), HeregexPart$3 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($R55, "HeregexPart /(?:\\\\.)/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
|
|
13352
13529
|
let token = $0;
|
|
13353
13530
|
switch ($0[1]) {
|
|
13354
13531
|
case `
|
|
@@ -13365,11 +13542,11 @@ ${js}`
|
|
|
13365
13542
|
return { $loc, token };
|
|
13366
13543
|
}), HeregexPart$4 = (0, import_lib2.$TS)((0, import_lib2.$S)(HeregexComment), function($skip, $loc, $0, $1) {
|
|
13367
13544
|
return { $loc, token: "" };
|
|
13368
|
-
}), HeregexPart$5 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($
|
|
13545
|
+
}), HeregexPart$5 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($R56, "HeregexPart /[\\s]+/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
|
|
13369
13546
|
return { $loc, token: "" };
|
|
13370
|
-
}), HeregexPart$6 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($
|
|
13547
|
+
}), HeregexPart$6 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($R57, "HeregexPart /\\/(?!\\/\\/)/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
|
|
13371
13548
|
return { $loc, token: "\\/" };
|
|
13372
|
-
}), HeregexPart$7 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($
|
|
13549
|
+
}), HeregexPart$7 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($R58, "HeregexPart /[^[\\/\\s#$\\\\]+|[#$]/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
|
|
13373
13550
|
return { $loc, token: $0 };
|
|
13374
13551
|
}), HeregexPart$$ = [HeregexPart$0, HeregexPart$1, HeregexPart$2, HeregexPart$3, HeregexPart$4, HeregexPart$5, HeregexPart$6, HeregexPart$7];
|
|
13375
13552
|
function HeregexPart(ctx, state2) {
|
|
@@ -13381,7 +13558,7 @@ ${js}`
|
|
|
13381
13558
|
function HeregexComment(ctx, state2) {
|
|
13382
13559
|
return (0, import_lib2.$EVENT_C)(ctx, state2, "HeregexComment", HeregexComment$$);
|
|
13383
13560
|
}
|
|
13384
|
-
var RegularExpressionBody$0 = (0, import_lib2.$S)((0, import_lib2.$N)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
13561
|
+
var RegularExpressionBody$0 = (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));
|
|
13385
13562
|
function RegularExpressionBody(ctx, state2) {
|
|
13386
13563
|
return (0, import_lib2.$EVENT)(ctx, state2, "RegularExpressionBody", RegularExpressionBody$0);
|
|
13387
13564
|
}
|
|
@@ -13389,15 +13566,15 @@ ${js}`
|
|
|
13389
13566
|
function RegExpPart(ctx, state2) {
|
|
13390
13567
|
return (0, import_lib2.$EVENT_C)(ctx, state2, "RegExpPart", RegExpPart$$);
|
|
13391
13568
|
}
|
|
13392
|
-
var RegExpCharacter$0 = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
13569
|
+
var RegExpCharacter$0 = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R60, "RegExpCharacter /(?:\\\\.|[^[\\/\\r\\n])+/"));
|
|
13393
13570
|
function RegExpCharacter(ctx, state2) {
|
|
13394
13571
|
return (0, import_lib2.$EVENT)(ctx, state2, "RegExpCharacter", RegExpCharacter$0);
|
|
13395
13572
|
}
|
|
13396
|
-
var RegularExpressionFlags$0 = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
13573
|
+
var RegularExpressionFlags$0 = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R61, "RegularExpressionFlags /(?:\\p{ID_Continue}|[\\u200C\\u200D$])*/"));
|
|
13397
13574
|
function RegularExpressionFlags(ctx, state2) {
|
|
13398
13575
|
return (0, import_lib2.$EVENT)(ctx, state2, "RegularExpressionFlags", RegularExpressionFlags$0);
|
|
13399
13576
|
}
|
|
13400
|
-
var TemplateLiteral$0 = (0, import_lib2.$T)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
13577
|
+
var TemplateLiteral$0 = (0, import_lib2.$T)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($R62, "TemplateLiteral /(?=[`'\"])/"), _TemplateLiteral), function(value) {
|
|
13401
13578
|
return value[1];
|
|
13402
13579
|
});
|
|
13403
13580
|
function TemplateLiteral(ctx, state2) {
|
|
@@ -13428,23 +13605,23 @@ ${js}`
|
|
|
13428
13605
|
function TemplateSubstitution(ctx, state2) {
|
|
13429
13606
|
return (0, import_lib2.$EVENT)(ctx, state2, "TemplateSubstitution", TemplateSubstitution$0);
|
|
13430
13607
|
}
|
|
13431
|
-
var TemplateCharacters$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($
|
|
13608
|
+
var TemplateCharacters$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($R63, "TemplateCharacters /(?:\\$(?!\\{)|\\\\.|[^$`])+/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
|
|
13432
13609
|
return { $loc, token: $0 };
|
|
13433
13610
|
});
|
|
13434
13611
|
function TemplateCharacters(ctx, state2) {
|
|
13435
13612
|
return (0, import_lib2.$EVENT)(ctx, state2, "TemplateCharacters", TemplateCharacters$0);
|
|
13436
13613
|
}
|
|
13437
|
-
var TemplateBlockCharacters$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($
|
|
13614
|
+
var TemplateBlockCharacters$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($R64, "TemplateBlockCharacters /(?:\\$(?!\\{)|`(?!``)|\\\\.|[^$`])+/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
|
|
13438
13615
|
return { $loc, token: $0 };
|
|
13439
13616
|
});
|
|
13440
13617
|
function TemplateBlockCharacters(ctx, state2) {
|
|
13441
13618
|
return (0, import_lib2.$EVENT)(ctx, state2, "TemplateBlockCharacters", TemplateBlockCharacters$0);
|
|
13442
13619
|
}
|
|
13443
|
-
var ReservedWord$0 = (0, import_lib2.$S)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
13620
|
+
var ReservedWord$0 = (0, import_lib2.$S)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R65, "ReservedWord /(?:on|off|yes|no)(?!\\p{ID_Continue})/")), CoffeeBooleansEnabled), ReservedWord$1 = (0, import_lib2.$S)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R66, "ReservedWord /(?:isnt)(?!\\p{ID_Continue})/")), CoffeeIsntEnabled), ReservedWord$2 = (0, import_lib2.$S)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R67, "ReservedWord /(?:by)(?!\\p{ID_Continue})/")), CoffeeForLoopsEnabled), ReservedWord$3 = (0, import_lib2.$S)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R68, "ReservedWord /(?:of)(?!\\p{ID_Continue})/")), CoffeeOfEnabled), ReservedWord$4 = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R69, "ReservedWord /(?:and|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|false|finally|for|function|if|import|in|instanceof|interface|is|let|loop|new|not|null|or|private|protected|public|return|static|super|switch|this|throw|true|try|typeof|unless|until|var|void|while|with|yield)(?!\\p{ID_Continue})/")), ReservedWord$$ = [ReservedWord$0, ReservedWord$1, ReservedWord$2, ReservedWord$3, ReservedWord$4];
|
|
13444
13621
|
function ReservedWord(ctx, state2) {
|
|
13445
13622
|
return (0, import_lib2.$EVENT_C)(ctx, state2, "ReservedWord", ReservedWord$$);
|
|
13446
13623
|
}
|
|
13447
|
-
var Comment$0 = (0, import_lib2.$T)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
13624
|
+
var Comment$0 = (0, import_lib2.$T)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($R70, "Comment /(?=\\/|#)/"), _Comment), function(value) {
|
|
13448
13625
|
return value[1];
|
|
13449
13626
|
});
|
|
13450
13627
|
function Comment(ctx, state2) {
|
|
@@ -13458,7 +13635,7 @@ ${js}`
|
|
|
13458
13635
|
function SingleLineComment(ctx, state2) {
|
|
13459
13636
|
return (0, import_lib2.$EVENT_C)(ctx, state2, "SingleLineComment", SingleLineComment$$);
|
|
13460
13637
|
}
|
|
13461
|
-
var JSSingleLineComment$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($
|
|
13638
|
+
var JSSingleLineComment$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($R71, "JSSingleLineComment /\\/\\/(?!\\/)[^\\r\\n]*/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
|
|
13462
13639
|
return { type: "Comment", $loc, token: $0 };
|
|
13463
13640
|
});
|
|
13464
13641
|
function JSSingleLineComment(ctx, state2) {
|
|
@@ -13468,29 +13645,29 @@ ${js}`
|
|
|
13468
13645
|
function MultiLineComment(ctx, state2) {
|
|
13469
13646
|
return (0, import_lib2.$EVENT_C)(ctx, state2, "MultiLineComment", MultiLineComment$$);
|
|
13470
13647
|
}
|
|
13471
|
-
var JSMultiLineComment$0 = (0, import_lib2.$TV)((0, import_lib2.$TEXT)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($L140, 'JSMultiLineComment "/*"'), (0, import_lib2.$Q)((0, import_lib2.$S)((0, import_lib2.$N)((0, import_lib2.$EXPECT)($L141, 'JSMultiLineComment "*/"')), (0, import_lib2.$EXPECT)($
|
|
13648
|
+
var JSMultiLineComment$0 = (0, import_lib2.$TV)((0, import_lib2.$TEXT)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($L140, 'JSMultiLineComment "/*"'), (0, import_lib2.$Q)((0, import_lib2.$S)((0, import_lib2.$N)((0, import_lib2.$EXPECT)($L141, 'JSMultiLineComment "*/"')), (0, import_lib2.$EXPECT)($R72, "JSMultiLineComment /./"))), (0, import_lib2.$EXPECT)($L141, 'JSMultiLineComment "*/"'))), function($skip, $loc, $0, $1) {
|
|
13472
13649
|
return { type: "Comment", $loc, token: $1 };
|
|
13473
13650
|
});
|
|
13474
13651
|
function JSMultiLineComment(ctx, state2) {
|
|
13475
13652
|
return (0, import_lib2.$EVENT)(ctx, state2, "JSMultiLineComment", JSMultiLineComment$0);
|
|
13476
13653
|
}
|
|
13477
|
-
var CoffeeSingleLineComment$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($
|
|
13654
|
+
var CoffeeSingleLineComment$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($R73, "CoffeeSingleLineComment /#(?!##(?!#))([^\\r\\n]*)/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
|
|
13478
13655
|
return { type: "Comment", $loc, token: `//${$1}` };
|
|
13479
13656
|
});
|
|
13480
13657
|
function CoffeeSingleLineComment(ctx, state2) {
|
|
13481
13658
|
return (0, import_lib2.$EVENT)(ctx, state2, "CoffeeSingleLineComment", CoffeeSingleLineComment$0);
|
|
13482
13659
|
}
|
|
13483
|
-
var CoffeeMultiLineComment$0 = (0, import_lib2.$TS)((0, import_lib2.$S)(CoffeeHereCommentStart, (0, import_lib2.$TEXT)((0, import_lib2.$EXPECT)($
|
|
13660
|
+
var CoffeeMultiLineComment$0 = (0, import_lib2.$TS)((0, import_lib2.$S)(CoffeeHereCommentStart, (0, import_lib2.$TEXT)((0, import_lib2.$EXPECT)($R74, "CoffeeMultiLineComment /[^]*?###/"))), function($skip, $loc, $0, $1, $2) {
|
|
13484
13661
|
return $2 = $2.slice(0, $2.length - 3).replace(/\*\//g, "* /"), { type: "Comment", $loc, token: `/*${$2}*/` };
|
|
13485
13662
|
});
|
|
13486
13663
|
function CoffeeMultiLineComment(ctx, state2) {
|
|
13487
13664
|
return (0, import_lib2.$EVENT)(ctx, state2, "CoffeeMultiLineComment", CoffeeMultiLineComment$0);
|
|
13488
13665
|
}
|
|
13489
|
-
var CoffeeHereCommentStart$0 = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
13666
|
+
var CoffeeHereCommentStart$0 = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R75, "CoffeeHereCommentStart /###(?!#)/"));
|
|
13490
13667
|
function CoffeeHereCommentStart(ctx, state2) {
|
|
13491
13668
|
return (0, import_lib2.$EVENT)(ctx, state2, "CoffeeHereCommentStart", CoffeeHereCommentStart$0);
|
|
13492
13669
|
}
|
|
13493
|
-
var InlineComment$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($
|
|
13670
|
+
var InlineComment$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($R76, "InlineComment /\\/\\*(?:(?!\\*\\/)[^\\r\\n])*\\*\\//"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
|
|
13494
13671
|
return { $loc, token: $0 };
|
|
13495
13672
|
}), InlineComment$1 = CoffeeMultiLineComment, InlineComment$$ = [InlineComment$0, InlineComment$1];
|
|
13496
13673
|
function InlineComment(ctx, state2) {
|
|
@@ -13504,7 +13681,7 @@ ${js}`
|
|
|
13504
13681
|
function TrailingComment(ctx, state2) {
|
|
13505
13682
|
return (0, import_lib2.$EVENT)(ctx, state2, "TrailingComment", TrailingComment$0);
|
|
13506
13683
|
}
|
|
13507
|
-
var _$0 = (0, import_lib2.$T)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
13684
|
+
var _$0 = (0, import_lib2.$T)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($R77, "_ /(?=[ \\t\\/\\\\#])/"), (0, import_lib2.$P)((0, import_lib2.$C)(NonNewlineWhitespace, InlineComment))), function(value) {
|
|
13508
13685
|
return value[1];
|
|
13509
13686
|
});
|
|
13510
13687
|
function _(ctx, state2) {
|
|
@@ -13525,13 +13702,13 @@ ${js}`
|
|
|
13525
13702
|
function Trimmed_(ctx, state2) {
|
|
13526
13703
|
return (0, import_lib2.$EVENT)(ctx, state2, "Trimmed_", Trimmed_$0);
|
|
13527
13704
|
}
|
|
13528
|
-
var __$0 = (0, import_lib2.$T)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
13705
|
+
var __$0 = (0, import_lib2.$T)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($R78, "__ /(?=\\s|\\/|#)/"), (0, import_lib2.$Q)((0, import_lib2.$C)(Whitespace, Comment))), function(value) {
|
|
13529
13706
|
return value[1];
|
|
13530
13707
|
}), __$1 = (0, import_lib2.$EXPECT)($L0, '__ ""'), __$$ = [__$0, __$1];
|
|
13531
13708
|
function __(ctx, state2) {
|
|
13532
13709
|
return (0, import_lib2.$EVENT_C)(ctx, state2, "__", __$$);
|
|
13533
13710
|
}
|
|
13534
|
-
var Whitespace$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($
|
|
13711
|
+
var Whitespace$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($R56, "Whitespace /[\\s]+/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
|
|
13535
13712
|
return { $loc, token: $0 };
|
|
13536
13713
|
});
|
|
13537
13714
|
function Whitespace(ctx, state2) {
|
|
@@ -13566,7 +13743,7 @@ ${js}`
|
|
|
13566
13743
|
function SemicolonDelimiter(ctx, state2) {
|
|
13567
13744
|
return (0, import_lib2.$EVENT)(ctx, state2, "SemicolonDelimiter", SemicolonDelimiter$0);
|
|
13568
13745
|
}
|
|
13569
|
-
var NonIdContinue$0 = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
13746
|
+
var NonIdContinue$0 = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R79, "NonIdContinue /(?!\\p{ID_Continue})/"));
|
|
13570
13747
|
function NonIdContinue(ctx, state2) {
|
|
13571
13748
|
return (0, import_lib2.$EVENT)(ctx, state2, "NonIdContinue", NonIdContinue$0);
|
|
13572
13749
|
}
|
|
@@ -13684,7 +13861,7 @@ ${js}`
|
|
|
13684
13861
|
function CoffeeSubstitutionStart(ctx, state2) {
|
|
13685
13862
|
return (0, import_lib2.$EVENT)(ctx, state2, "CoffeeSubstitutionStart", CoffeeSubstitutionStart$0);
|
|
13686
13863
|
}
|
|
13687
|
-
var Colon$0 = (0, import_lib2.$TS)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($L16, 'Colon ":"'), (0, import_lib2.$N)((0, import_lib2.$EXPECT)($
|
|
13864
|
+
var Colon$0 = (0, import_lib2.$TS)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($L16, 'Colon ":"'), (0, import_lib2.$N)((0, import_lib2.$EXPECT)($R80, "Colon /[=:]/"))), function($skip, $loc, $0, $1, $2) {
|
|
13688
13865
|
return { $loc, token: $1 };
|
|
13689
13866
|
});
|
|
13690
13867
|
function Colon(ctx, state2) {
|
|
@@ -13734,7 +13911,7 @@ ${js}`
|
|
|
13734
13911
|
}
|
|
13735
13912
|
var Dot$0 = (0, import_lib2.$TV)((0, import_lib2.$EXPECT)($L7, 'Dot "."'), function($skip, $loc, $0, $1) {
|
|
13736
13913
|
return { $loc, token: $1 };
|
|
13737
|
-
}), Dot$1 = (0, import_lib2.$TS)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
13914
|
+
}), Dot$1 = (0, import_lib2.$TS)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($R81, "Dot /['\u2019]s/"), Trimmed_), function($skip, $loc, $0, $1, $2) {
|
|
13738
13915
|
var ws = $2;
|
|
13739
13916
|
return [
|
|
13740
13917
|
{ $loc, token: "." },
|
|
@@ -13862,7 +14039,7 @@ ${js}`
|
|
|
13862
14039
|
function If(ctx, state2) {
|
|
13863
14040
|
return (0, import_lib2.$EVENT)(ctx, state2, "If", If$0);
|
|
13864
14041
|
}
|
|
13865
|
-
var Import$0 = (0, import_lib2.$TS)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($L15, 'Import "import"'), (0, import_lib2.$Y)((0, import_lib2.$EXPECT)($
|
|
14042
|
+
var Import$0 = (0, import_lib2.$TS)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($L15, 'Import "import"'), (0, import_lib2.$Y)((0, import_lib2.$EXPECT)($R82, "Import /\\s/"))), function($skip, $loc, $0, $1, $2) {
|
|
13866
14043
|
return { $loc, token: $1 };
|
|
13867
14044
|
});
|
|
13868
14045
|
function Import(ctx, state2) {
|
|
@@ -14219,7 +14396,7 @@ ${js}`
|
|
|
14219
14396
|
function JSXImplicitFragment(ctx, state2) {
|
|
14220
14397
|
return (0, import_lib2.$EVENT)(ctx, state2, "JSXImplicitFragment", JSXImplicitFragment$0);
|
|
14221
14398
|
}
|
|
14222
|
-
var JSXTag$0 = (0, import_lib2.$T)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
14399
|
+
var JSXTag$0 = (0, import_lib2.$T)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($R83, "JSXTag /(?=[<])/"), _JSXTag), function(value) {
|
|
14223
14400
|
return value[1];
|
|
14224
14401
|
});
|
|
14225
14402
|
function JSXTag(ctx, state2) {
|
|
@@ -14326,7 +14503,7 @@ ${js}`
|
|
|
14326
14503
|
function JSXElementName(ctx, state2) {
|
|
14327
14504
|
return (0, import_lib2.$EVENT_C)(ctx, state2, "JSXElementName", JSXElementName$$);
|
|
14328
14505
|
}
|
|
14329
|
-
var JSXIdentifierName$0 = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
14506
|
+
var JSXIdentifierName$0 = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R84, "JSXIdentifierName /(?:\\p{ID_Start}|[_$])(?:\\p{ID_Continue}|[\\u200C\\u200D$-])*/"));
|
|
14330
14507
|
function JSXIdentifierName(ctx, state2) {
|
|
14331
14508
|
return (0, import_lib2.$EVENT)(ctx, state2, "JSXIdentifierName", JSXIdentifierName$0);
|
|
14332
14509
|
}
|
|
@@ -14426,18 +14603,18 @@ ${js}`
|
|
|
14426
14603
|
type: "JSXClass",
|
|
14427
14604
|
class: $2
|
|
14428
14605
|
};
|
|
14429
|
-
}), JSXAttribute$7 = (0, import_lib2.$TS)((0, import_lib2.$S)((0, import_lib2.$TEXT)((0, import_lib2.$EXPECT)($
|
|
14606
|
+
}), JSXAttribute$7 = (0, import_lib2.$TS)((0, import_lib2.$S)((0, import_lib2.$TEXT)((0, import_lib2.$EXPECT)($R85, "JSXAttribute /[!+-]/")), JSXAttributeName, (0, import_lib2.$Y)(JSXAttributeSpace)), function($skip, $loc, $0, $1, $2, $3) {
|
|
14430
14607
|
var toggle = $1, id = $2;
|
|
14431
14608
|
return [" ", id, "={", toggle === "+" ? "true" : "false", "}"];
|
|
14432
14609
|
}), JSXAttribute$$ = [JSXAttribute$0, JSXAttribute$1, JSXAttribute$2, JSXAttribute$3, JSXAttribute$4, JSXAttribute$5, JSXAttribute$6, JSXAttribute$7];
|
|
14433
14610
|
function JSXAttribute(ctx, state2) {
|
|
14434
14611
|
return (0, import_lib2.$EVENT_C)(ctx, state2, "JSXAttribute", JSXAttribute$$);
|
|
14435
14612
|
}
|
|
14436
|
-
var JSXAttributeSpace$0 = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
14613
|
+
var JSXAttributeSpace$0 = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R86, "JSXAttributeSpace /[\\s>]|\\/>/"));
|
|
14437
14614
|
function JSXAttributeSpace(ctx, state2) {
|
|
14438
14615
|
return (0, import_lib2.$EVENT)(ctx, state2, "JSXAttributeSpace", JSXAttributeSpace$0);
|
|
14439
14616
|
}
|
|
14440
|
-
var JSXShorthandString$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($
|
|
14617
|
+
var JSXShorthandString$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($R87, "JSXShorthandString /(?:[\\w\\-:]+|\\([^()]*\\)|\\[[^\\[\\]]*\\])+/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
|
|
14441
14618
|
return quoteString($0);
|
|
14442
14619
|
}), JSXShorthandString$1 = (0, import_lib2.$TS)((0, import_lib2.$S)(TemplateLiteral), function($skip, $loc, $0, $1) {
|
|
14443
14620
|
return ["{", $1, "}"];
|
|
@@ -14459,7 +14636,7 @@ ${js}`
|
|
|
14459
14636
|
var JSXAttributeValue$0 = (0, import_lib2.$S)(OpenBrace, PostfixedExpression, (0, import_lib2.$E)(Whitespace), CloseBrace), JSXAttributeValue$1 = JSXElement, JSXAttributeValue$2 = JSXFragment, JSXAttributeValue$3 = (0, import_lib2.$TS)((0, import_lib2.$S)(InsertInlineOpenBrace, InlineJSXAttributeValue, InsertCloseBrace, (0, import_lib2.$Y)(JSXAttributeSpace)), function($skip, $loc, $0, $1, $2, $3, $4) {
|
|
14460
14637
|
var open = $1, value = $2, close = $3;
|
|
14461
14638
|
return value.type === "StringLiteral" ? $skip : [open, value, close];
|
|
14462
|
-
}), JSXAttributeValue$4 = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
14639
|
+
}), JSXAttributeValue$4 = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R88, `JSXAttributeValue /"[^"]*"|'[^']*'/`)), JSXAttributeValue$$ = [JSXAttributeValue$0, JSXAttributeValue$1, JSXAttributeValue$2, JSXAttributeValue$3, JSXAttributeValue$4];
|
|
14463
14640
|
function JSXAttributeValue(ctx, state2) {
|
|
14464
14641
|
return (0, import_lib2.$EVENT_C)(ctx, state2, "JSXAttributeValue", JSXAttributeValue$$);
|
|
14465
14642
|
}
|
|
@@ -14469,7 +14646,7 @@ ${js}`
|
|
|
14469
14646
|
function InlineJSXAttributeValue(ctx, state2) {
|
|
14470
14647
|
return (0, import_lib2.$EVENT)(ctx, state2, "InlineJSXAttributeValue", InlineJSXAttributeValue$0);
|
|
14471
14648
|
}
|
|
14472
|
-
var InlineJSXBinaryOpRHS$0 = (0, import_lib2.$TS)((0, import_lib2.$S)((0, import_lib2.$N)((0, import_lib2.$EXPECT)($
|
|
14649
|
+
var InlineJSXBinaryOpRHS$0 = (0, import_lib2.$TS)((0, import_lib2.$S)((0, import_lib2.$N)((0, import_lib2.$EXPECT)($R89, "InlineJSXBinaryOpRHS /[<>]/")), BinaryOp, InlineJSXUnaryExpression), function($skip, $loc, $0, $1, $2, $3) {
|
|
14473
14650
|
var op = $2, rhs = $3;
|
|
14474
14651
|
return [[], op, [], rhs];
|
|
14475
14652
|
});
|
|
@@ -14483,7 +14660,7 @@ ${js}`
|
|
|
14483
14660
|
function InlineJSXUnaryExpression(ctx, state2) {
|
|
14484
14661
|
return (0, import_lib2.$EVENT)(ctx, state2, "InlineJSXUnaryExpression", InlineJSXUnaryExpression$0);
|
|
14485
14662
|
}
|
|
14486
|
-
var InlineJSXUnaryOp$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($
|
|
14663
|
+
var InlineJSXUnaryOp$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($R90, "InlineJSXUnaryOp /[!~+-](?!\\s|[!~+-]*&)/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
|
|
14487
14664
|
return { $loc, token: $0 };
|
|
14488
14665
|
});
|
|
14489
14666
|
function InlineJSXUnaryOp(ctx, state2) {
|
|
@@ -14658,13 +14835,13 @@ ${js}`
|
|
|
14658
14835
|
function JSXComment(ctx, state2) {
|
|
14659
14836
|
return (0, import_lib2.$EVENT)(ctx, state2, "JSXComment", JSXComment$0);
|
|
14660
14837
|
}
|
|
14661
|
-
var JSXCommentContent$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($
|
|
14838
|
+
var JSXCommentContent$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($R91, "JSXCommentContent /(?:-[^-]|[^-]*)*/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
|
|
14662
14839
|
return { $loc, token: $0.replace(/\*\//g, "* /") };
|
|
14663
14840
|
});
|
|
14664
14841
|
function JSXCommentContent(ctx, state2) {
|
|
14665
14842
|
return (0, import_lib2.$EVENT)(ctx, state2, "JSXCommentContent", JSXCommentContent$0);
|
|
14666
14843
|
}
|
|
14667
|
-
var JSXText$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($
|
|
14844
|
+
var JSXText$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($R92, "JSXText /[^{}<>\\r\\n]+/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
|
|
14668
14845
|
return {
|
|
14669
14846
|
type: "JSXText",
|
|
14670
14847
|
token: $0,
|
|
@@ -15113,7 +15290,7 @@ ${js}`
|
|
|
15113
15290
|
function TypeProperty(ctx, state2) {
|
|
15114
15291
|
return (0, import_lib2.$EVENT)(ctx, state2, "TypeProperty", TypeProperty$0);
|
|
15115
15292
|
}
|
|
15116
|
-
var TypeIndexSignature$0 = (0, import_lib2.$S)((0, import_lib2.$E)((0, import_lib2.$S)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
15293
|
+
var TypeIndexSignature$0 = (0, import_lib2.$S)((0, import_lib2.$E)((0, import_lib2.$S)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R93, "TypeIndexSignature /[+-]?/")), Readonly, NotDedented)), OpenBracket, TypeIndex, CloseBracket, (0, import_lib2.$E)((0, import_lib2.$S)(__, (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R14, "TypeIndexSignature /[+-]/")), (0, import_lib2.$Y)((0, import_lib2.$S)((0, import_lib2.$E)(_), QuestionMark)))));
|
|
15117
15294
|
function TypeIndexSignature(ctx, state2) {
|
|
15118
15295
|
return (0, import_lib2.$EVENT)(ctx, state2, "TypeIndexSignature", TypeIndexSignature$0);
|
|
15119
15296
|
}
|
|
@@ -15474,7 +15651,7 @@ ${js}`
|
|
|
15474
15651
|
function TypeWithPostfix(ctx, state2) {
|
|
15475
15652
|
return (0, import_lib2.$EVENT)(ctx, state2, "TypeWithPostfix", TypeWithPostfix$0);
|
|
15476
15653
|
}
|
|
15477
|
-
var TypeConditional$0 = (0, import_lib2.$TS)((0, import_lib2.$S)((0, import_lib2.$E)(_), (0, import_lib2.$EXPECT)($
|
|
15654
|
+
var TypeConditional$0 = (0, import_lib2.$TS)((0, import_lib2.$S)((0, import_lib2.$E)(_), (0, import_lib2.$EXPECT)($R94, "TypeConditional /(?=if|unless)/"), TypeIfThenElse), function($skip, $loc, $0, $1, $2, $3) {
|
|
15478
15655
|
return prepend($1, expressionizeTypeIf($3));
|
|
15479
15656
|
}), TypeConditional$1 = (0, import_lib2.$TS)((0, import_lib2.$S)(TypeCondition, NotDedented, QuestionMark, __, Type, __, Colon, __, Type), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
|
|
15480
15657
|
return $1.negated ? [$1, $2, $3, $4, $9, $6, $7, $8, $5] : $0;
|
|
@@ -15653,7 +15830,7 @@ ${js}`
|
|
|
15653
15830
|
function TypeApplicationStart(ctx, state2) {
|
|
15654
15831
|
return (0, import_lib2.$EVENT_C)(ctx, state2, "TypeApplicationStart", TypeApplicationStart$$);
|
|
15655
15832
|
}
|
|
15656
|
-
var ForbiddenImplicitTypeCalls$0 = ReservedBinary, ForbiddenImplicitTypeCalls$1 = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
15833
|
+
var ForbiddenImplicitTypeCalls$0 = ReservedBinary, ForbiddenImplicitTypeCalls$1 = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R95, "ForbiddenImplicitTypeCalls /[|&<!=\\-\u21D2\u2192]/")), ForbiddenImplicitTypeCalls$2 = (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R96, "ForbiddenImplicitTypeCalls /(extends|not|is)(?!\\p{ID_Continue}|[\\u200C\\u200D$])/")), ForbiddenImplicitTypeCalls$$ = [ForbiddenImplicitTypeCalls$0, ForbiddenImplicitTypeCalls$1, ForbiddenImplicitTypeCalls$2];
|
|
15657
15834
|
function ForbiddenImplicitTypeCalls(ctx, state2) {
|
|
15658
15835
|
return (0, import_lib2.$EVENT_C)(ctx, state2, "ForbiddenImplicitTypeCalls", ForbiddenImplicitTypeCalls$$);
|
|
15659
15836
|
}
|
|
@@ -15734,7 +15911,7 @@ ${js}`
|
|
|
15734
15911
|
function TypeParameters(ctx, state2) {
|
|
15735
15912
|
return (0, import_lib2.$EVENT)(ctx, state2, "TypeParameters", TypeParameters$0);
|
|
15736
15913
|
}
|
|
15737
|
-
var TypeParameter$0 = (0, import_lib2.$S)(__, (0, import_lib2.$Q)((0, import_lib2.$S)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
15914
|
+
var TypeParameter$0 = (0, import_lib2.$S)(__, (0, import_lib2.$Q)((0, import_lib2.$S)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R97, "TypeParameter /const|in|out/")), _)), Identifier, (0, import_lib2.$E)(TypeConstraint), (0, import_lib2.$E)(TypeInitializer), TypeParameterDelimiter);
|
|
15738
15915
|
function TypeParameter(ctx, state2) {
|
|
15739
15916
|
return (0, import_lib2.$EVENT)(ctx, state2, "TypeParameter", TypeParameter$0);
|
|
15740
15917
|
}
|
|
@@ -15758,21 +15935,21 @@ ${js}`
|
|
|
15758
15935
|
function ThisType(ctx, state2) {
|
|
15759
15936
|
return (0, import_lib2.$EVENT)(ctx, state2, "ThisType", ThisType$0);
|
|
15760
15937
|
}
|
|
15761
|
-
var Shebang$0 = (0, import_lib2.$S)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
15938
|
+
var Shebang$0 = (0, import_lib2.$S)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R98, "Shebang /#![^\\r\\n]*/")), EOL);
|
|
15762
15939
|
function Shebang(ctx, state2) {
|
|
15763
15940
|
return (0, import_lib2.$EVENT)(ctx, state2, "Shebang", Shebang$0);
|
|
15764
15941
|
}
|
|
15765
|
-
var CivetPrologue$0 = (0, import_lib2.$T)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
15942
|
+
var CivetPrologue$0 = (0, import_lib2.$T)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($R99, "CivetPrologue /[\\t ]*/"), DoubleQuote, CivetPrologueContent, DoubleQuote, SimpleStatementDelimiter, (0, import_lib2.$EXPECT)($R22, "CivetPrologue /[ \\t]*/"), (0, import_lib2.$C)(EOL, (0, import_lib2.$Y)(RestOfLine))), function(value) {
|
|
15766
15943
|
var content = value[2];
|
|
15767
15944
|
return content;
|
|
15768
|
-
}), CivetPrologue$1 = (0, import_lib2.$T)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
15945
|
+
}), CivetPrologue$1 = (0, import_lib2.$T)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($R99, "CivetPrologue /[\\t ]*/"), SingleQuote, CivetPrologueContent, SingleQuote, SimpleStatementDelimiter, (0, import_lib2.$EXPECT)($R22, "CivetPrologue /[ \\t]*/"), (0, import_lib2.$C)(EOL, (0, import_lib2.$Y)(RestOfLine))), function(value) {
|
|
15769
15946
|
var content = value[2];
|
|
15770
15947
|
return content;
|
|
15771
15948
|
}), CivetPrologue$$ = [CivetPrologue$0, CivetPrologue$1];
|
|
15772
15949
|
function CivetPrologue(ctx, state2) {
|
|
15773
15950
|
return (0, import_lib2.$EVENT_C)(ctx, state2, "CivetPrologue", CivetPrologue$$);
|
|
15774
15951
|
}
|
|
15775
|
-
var CivetPrologueContent$0 = (0, import_lib2.$TS)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($L248, 'CivetPrologueContent "civet"'), NonIdContinue, (0, import_lib2.$Q)(CivetOption), (0, import_lib2.$EXPECT)($
|
|
15952
|
+
var CivetPrologueContent$0 = (0, import_lib2.$TS)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($L248, 'CivetPrologueContent "civet"'), NonIdContinue, (0, import_lib2.$Q)(CivetOption), (0, import_lib2.$EXPECT)($R100, "CivetPrologueContent /[\\s]*/")), function($skip, $loc, $0, $1, $2, $3, $4) {
|
|
15776
15953
|
var options = $3;
|
|
15777
15954
|
return {
|
|
15778
15955
|
type: "CivetPrologue",
|
|
@@ -15783,7 +15960,7 @@ ${js}`
|
|
|
15783
15960
|
function CivetPrologueContent(ctx, state2) {
|
|
15784
15961
|
return (0, import_lib2.$EVENT)(ctx, state2, "CivetPrologueContent", CivetPrologueContent$0);
|
|
15785
15962
|
}
|
|
15786
|
-
var CivetOption$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($
|
|
15963
|
+
var CivetOption$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($R101, "CivetOption /\\s+([+-]?)([a-zA-Z0-9-]+)(\\s*=\\s*([\\p{ID_Continue}.,+-]*))?/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
|
|
15787
15964
|
let optionName = $2.replace(/-+([a-z]?)/g, (_2, l) => l ? l.toUpperCase() : ""), value = $3 ? $4 : $1 !== "-";
|
|
15788
15965
|
switch (optionName) {
|
|
15789
15966
|
case "tab":
|
|
@@ -15800,11 +15977,11 @@ ${js}`
|
|
|
15800
15977
|
function CivetOption(ctx, state2) {
|
|
15801
15978
|
return (0, import_lib2.$EVENT)(ctx, state2, "CivetOption", CivetOption$0);
|
|
15802
15979
|
}
|
|
15803
|
-
var UnknownPrologue$0 = (0, import_lib2.$S)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
15980
|
+
var UnknownPrologue$0 = (0, import_lib2.$S)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R99, "UnknownPrologue /[\\t ]*/")), StringLiteral, (0, import_lib2.$TEXT)(SimpleStatementDelimiter), EOS);
|
|
15804
15981
|
function UnknownPrologue(ctx, state2) {
|
|
15805
15982
|
return (0, import_lib2.$EVENT)(ctx, state2, "UnknownPrologue", UnknownPrologue$0);
|
|
15806
15983
|
}
|
|
15807
|
-
var TripleSlashDirective$0 = (0, import_lib2.$S)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
15984
|
+
var TripleSlashDirective$0 = (0, import_lib2.$S)((0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R102, "TripleSlashDirective /\\/\\/\\/[^\\r\\n]*/")), (0, import_lib2.$E)(EOS));
|
|
15808
15985
|
function TripleSlashDirective(ctx, state2) {
|
|
15809
15986
|
return (0, import_lib2.$EVENT)(ctx, state2, "TripleSlashDirective", TripleSlashDirective$0);
|
|
15810
15987
|
}
|
|
@@ -15818,13 +15995,13 @@ ${js}`
|
|
|
15818
15995
|
function PrologueString(ctx, state2) {
|
|
15819
15996
|
return (0, import_lib2.$EVENT_C)(ctx, state2, "PrologueString", PrologueString$$);
|
|
15820
15997
|
}
|
|
15821
|
-
var EOS$0 = (0, import_lib2.$T)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($
|
|
15998
|
+
var EOS$0 = (0, import_lib2.$T)((0, import_lib2.$S)((0, import_lib2.$EXPECT)($R103, "EOS /(?=[ \\t\\r\\n\\/#]|$)/"), (0, import_lib2.$P)(RestOfLine)), function(value) {
|
|
15822
15999
|
return value[1];
|
|
15823
16000
|
});
|
|
15824
16001
|
function EOS(ctx, state2) {
|
|
15825
16002
|
return (0, import_lib2.$EVENT)(ctx, state2, "EOS", EOS$0);
|
|
15826
16003
|
}
|
|
15827
|
-
var EOL$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($
|
|
16004
|
+
var EOL$0 = (0, import_lib2.$TR)((0, import_lib2.$EXPECT)($R104, "EOL /\\r\\n|\\n|\\r|$/"), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7, $8, $9) {
|
|
15828
16005
|
return { $loc, token: $0 };
|
|
15829
16006
|
});
|
|
15830
16007
|
function EOL(ctx, state2) {
|
|
@@ -16219,7 +16396,7 @@ ${js}`
|
|
|
16219
16396
|
function Prologue(ctx, state2) {
|
|
16220
16397
|
return (0, import_lib2.$EVENT)(ctx, state2, "Prologue", Prologue$0);
|
|
16221
16398
|
}
|
|
16222
|
-
var ProloguePrefix$0 = (0, import_lib2.$S)(Prologue, (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($
|
|
16399
|
+
var ProloguePrefix$0 = (0, import_lib2.$S)(Prologue, (0, import_lib2.$R$0)((0, import_lib2.$EXPECT)($R105, "ProloguePrefix /[^]*/")));
|
|
16223
16400
|
function ProloguePrefix(ctx, state2) {
|
|
16224
16401
|
return (0, import_lib2.$EVENT)(ctx, state2, "ProloguePrefix", ProloguePrefix$0);
|
|
16225
16402
|
}
|