@danielx/civet 0.6.67 → 0.6.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser.js +83 -25
- package/dist/civet +1 -1
- package/dist/config.js +4 -4
- package/dist/esbuild-plugin.js +0 -2
- package/dist/main.js +804 -746
- package/dist/main.mjs +82 -24
- package/package.json +3 -3
package/dist/main.js
CHANGED
|
@@ -5,7 +5,6 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
|
5
5
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
6
|
var __getProtoOf = Object.getPrototypeOf;
|
|
7
7
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
9
8
|
var __esm = (fn, res) => function __init() {
|
|
10
9
|
return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
|
|
11
10
|
};
|
|
@@ -33,10 +32,6 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
33
32
|
mod
|
|
34
33
|
));
|
|
35
34
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
36
|
-
var __publicField = (obj, key, value) => {
|
|
37
|
-
__defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
38
|
-
return value;
|
|
39
|
-
};
|
|
40
35
|
|
|
41
36
|
// source/lib.civet
|
|
42
37
|
var lib_exports = {};
|
|
@@ -644,7 +639,7 @@ function handleThisPrivateShorthands(value) {
|
|
|
644
639
|
if (i === 0) {
|
|
645
640
|
let s;
|
|
646
641
|
[c, s] = handleThisPrivateShorthands(c);
|
|
647
|
-
suppressPrefix
|
|
642
|
+
suppressPrefix ||= s;
|
|
648
643
|
}
|
|
649
644
|
return c;
|
|
650
645
|
})
|
|
@@ -3155,7 +3150,7 @@ function processReturnValue(func) {
|
|
|
3155
3150
|
isFunction
|
|
3156
3151
|
);
|
|
3157
3152
|
if (ancestor) {
|
|
3158
|
-
return declaration
|
|
3153
|
+
return declaration ??= child;
|
|
3159
3154
|
}
|
|
3160
3155
|
;
|
|
3161
3156
|
return;
|
|
@@ -3326,6 +3321,9 @@ function reorderBindingRestProperty(props) {
|
|
|
3326
3321
|
}
|
|
3327
3322
|
];
|
|
3328
3323
|
}
|
|
3324
|
+
if (rest.delim?.at(-1)?.token === ",") {
|
|
3325
|
+
rest.delim.pop();
|
|
3326
|
+
}
|
|
3329
3327
|
const children = [...props, ...after, rest];
|
|
3330
3328
|
return {
|
|
3331
3329
|
children,
|
|
@@ -3535,7 +3533,7 @@ var init_lib = __esm({
|
|
|
3535
3533
|
|
|
3536
3534
|
// node_modules/@danielx/hera/dist/machine.js
|
|
3537
3535
|
var require_machine = __commonJS({
|
|
3538
|
-
"node_modules/@danielx/hera/dist/machine.js"(
|
|
3536
|
+
"node_modules/@danielx/hera/dist/machine.js"(exports2, module2) {
|
|
3539
3537
|
"use strict";
|
|
3540
3538
|
var __defProp2 = Object.defineProperty;
|
|
3541
3539
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
|
@@ -3983,7 +3981,7 @@ ${input.slice(result.pos)}
|
|
|
3983
3981
|
|
|
3984
3982
|
// source/parser.hera
|
|
3985
3983
|
var require_parser = __commonJS({
|
|
3986
|
-
"source/parser.hera"(
|
|
3984
|
+
"source/parser.hera"(exports2) {
|
|
3987
3985
|
"use strict";
|
|
3988
3986
|
init_lib();
|
|
3989
3987
|
var {
|
|
@@ -4177,6 +4175,7 @@ var require_parser = __commonJS({
|
|
|
4177
4175
|
BareNestedBlock,
|
|
4178
4176
|
BareBlock,
|
|
4179
4177
|
ThenClause,
|
|
4178
|
+
BracedThenClause,
|
|
4180
4179
|
BracedOrEmptyBlock,
|
|
4181
4180
|
NoCommaBracedOrEmptyBlock,
|
|
4182
4181
|
NoPostfixBracedOrEmptyBlock,
|
|
@@ -5236,7 +5235,7 @@ var require_parser = __commonJS({
|
|
|
5236
5235
|
return $0;
|
|
5237
5236
|
return $skip;
|
|
5238
5237
|
});
|
|
5239
|
-
var ForbiddenImplicitCalls$5 = $TS($S(
|
|
5238
|
+
var ForbiddenImplicitCalls$5 = $TS($S(OmittedNegation, $E(_), Identifier), function($skip, $loc, $0, $1, $2, $3) {
|
|
5240
5239
|
var id = $3;
|
|
5241
5240
|
if (module2.operators.has(id.name))
|
|
5242
5241
|
return $0;
|
|
@@ -5761,11 +5760,29 @@ var require_parser = __commonJS({
|
|
|
5761
5760
|
function ParenthesizedExpression(ctx, state) {
|
|
5762
5761
|
return $EVENT(ctx, state, "ParenthesizedExpression", ParenthesizedExpression$0);
|
|
5763
5762
|
}
|
|
5764
|
-
var ClassDeclaration$0 = ClassExpression
|
|
5763
|
+
var ClassDeclaration$0 = $TS($S(ClassExpression), function($skip, $loc, $0, $1) {
|
|
5764
|
+
if ($1.binding)
|
|
5765
|
+
return $1;
|
|
5766
|
+
return makeLeftHandSideExpression($1);
|
|
5767
|
+
});
|
|
5765
5768
|
function ClassDeclaration(ctx, state) {
|
|
5766
5769
|
return $EVENT(ctx, state, "ClassDeclaration", ClassDeclaration$0);
|
|
5767
5770
|
}
|
|
5768
|
-
var ClassExpression$0 = $S($E(Decorators), $E($S(Abstract, __)), Class, $N($EXPECT($L13, 'ClassExpression ":"')), $E(ClassBinding), $E(ClassHeritage), ClassBody)
|
|
5771
|
+
var ClassExpression$0 = $TS($S($E(Decorators), $E($S(Abstract, __)), Class, $N($EXPECT($L13, 'ClassExpression ":"')), $E(ClassBinding), $E(ClassHeritage), ClassBody), function($skip, $loc, $0, $1, $2, $3, $4, $5, $6, $7) {
|
|
5772
|
+
var decorators = $1;
|
|
5773
|
+
var abstract = $2;
|
|
5774
|
+
var binding = $5;
|
|
5775
|
+
var heritage = $6;
|
|
5776
|
+
var body = $7;
|
|
5777
|
+
return {
|
|
5778
|
+
decorators,
|
|
5779
|
+
abstract,
|
|
5780
|
+
binding,
|
|
5781
|
+
heritage,
|
|
5782
|
+
body,
|
|
5783
|
+
children: $0
|
|
5784
|
+
};
|
|
5785
|
+
});
|
|
5769
5786
|
function ClassExpression(ctx, state) {
|
|
5770
5787
|
return $EVENT(ctx, state, "ClassExpression", ClassExpression$0);
|
|
5771
5788
|
}
|
|
@@ -7465,6 +7482,21 @@ var require_parser = __commonJS({
|
|
|
7465
7482
|
function ThenClause(ctx, state) {
|
|
7466
7483
|
return $EVENT(ctx, state, "ThenClause", ThenClause$0);
|
|
7467
7484
|
}
|
|
7485
|
+
var BracedThenClause$0 = $TS($S($Y(Then), InsertOpenBrace, ThenClause, InsertCloseBrace), function($skip, $loc, $0, $1, $2, $3, $4) {
|
|
7486
|
+
var open = $2;
|
|
7487
|
+
var exp = $3;
|
|
7488
|
+
var close = $4;
|
|
7489
|
+
const expressions = [exp];
|
|
7490
|
+
return {
|
|
7491
|
+
type: "BlockStatement",
|
|
7492
|
+
expressions,
|
|
7493
|
+
children: [open, expressions, " ", close],
|
|
7494
|
+
bare: false
|
|
7495
|
+
};
|
|
7496
|
+
});
|
|
7497
|
+
function BracedThenClause(ctx, state) {
|
|
7498
|
+
return $EVENT(ctx, state, "BracedThenClause", BracedThenClause$0);
|
|
7499
|
+
}
|
|
7468
7500
|
var BracedOrEmptyBlock$0 = BracedBlock;
|
|
7469
7501
|
var BracedOrEmptyBlock$1 = EmptyBlock;
|
|
7470
7502
|
var BracedOrEmptyBlock$$ = [BracedOrEmptyBlock$0, BracedOrEmptyBlock$1];
|
|
@@ -8750,7 +8782,7 @@ var require_parser = __commonJS({
|
|
|
8750
8782
|
special: true
|
|
8751
8783
|
};
|
|
8752
8784
|
});
|
|
8753
|
-
var _BinaryOp$2 = $TS($S(
|
|
8785
|
+
var _BinaryOp$2 = $TS($S(OmittedNegation, __, Identifier), function($skip, $loc, $0, $1, $2, $3) {
|
|
8754
8786
|
var id = $3;
|
|
8755
8787
|
if (!module2.operators.has(id.name))
|
|
8756
8788
|
return $skip;
|
|
@@ -8887,7 +8919,7 @@ var require_parser = __commonJS({
|
|
|
8887
8919
|
var op = value[1];
|
|
8888
8920
|
return op;
|
|
8889
8921
|
});
|
|
8890
|
-
var BinaryOpSymbol$41 = $TS($S(
|
|
8922
|
+
var BinaryOpSymbol$41 = $TS($S(OmittedNegation, __, NotOp), function($skip, $loc, $0, $1, $2, $3) {
|
|
8891
8923
|
var op = $3;
|
|
8892
8924
|
return { ...op, $loc };
|
|
8893
8925
|
});
|
|
@@ -8914,7 +8946,7 @@ var require_parser = __commonJS({
|
|
|
8914
8946
|
negated: true
|
|
8915
8947
|
};
|
|
8916
8948
|
});
|
|
8917
|
-
var BinaryOpSymbol$45 = $TV($C($S(Is, __,
|
|
8949
|
+
var BinaryOpSymbol$45 = $TV($C($S(Is, __, OmittedNegation, __, In), $EXPECT($L99, 'BinaryOpSymbol "\u2209"')), function($skip, $loc, $0, $1) {
|
|
8918
8950
|
return {
|
|
8919
8951
|
method: "includes",
|
|
8920
8952
|
relational: true,
|
|
@@ -8966,7 +8998,7 @@ var require_parser = __commonJS({
|
|
|
8966
8998
|
special: true
|
|
8967
8999
|
};
|
|
8968
9000
|
});
|
|
8969
|
-
var CoffeeOfOp$2 = $TS($S(
|
|
9001
|
+
var CoffeeOfOp$2 = $TS($S(OmittedNegation, __, Of, NonIdContinue), function($skip, $loc, $0, $1, $2, $3, $4) {
|
|
8970
9002
|
return {
|
|
8971
9003
|
$loc,
|
|
8972
9004
|
token: "in",
|
|
@@ -8974,7 +9006,7 @@ var require_parser = __commonJS({
|
|
|
8974
9006
|
negated: true
|
|
8975
9007
|
};
|
|
8976
9008
|
});
|
|
8977
|
-
var CoffeeOfOp$3 = $TS($S(
|
|
9009
|
+
var CoffeeOfOp$3 = $TS($S(OmittedNegation, __, In), function($skip, $loc, $0, $1, $2, $3) {
|
|
8978
9010
|
return {
|
|
8979
9011
|
call: [module2.getRef("indexOf"), ".call"],
|
|
8980
9012
|
relational: true,
|
|
@@ -9987,7 +10019,7 @@ var require_parser = __commonJS({
|
|
|
9987
10019
|
function TryExpression(ctx, state) {
|
|
9988
10020
|
return $EVENT(ctx, state, "TryExpression", TryExpression$0);
|
|
9989
10021
|
}
|
|
9990
|
-
var CatchClause$0 = $TS($S($C(Nested, _), Catch, $E(CatchBind), $C(
|
|
10022
|
+
var CatchClause$0 = $TS($S($C(Nested, _), Catch, $E(CatchBind), $C(BracedThenClause, BracedOrEmptyBlock)), function($skip, $loc, $0, $1, $2, $3, $4) {
|
|
9991
10023
|
var block = $4;
|
|
9992
10024
|
return {
|
|
9993
10025
|
type: "CatchClause",
|
|
@@ -10004,7 +10036,7 @@ var require_parser = __commonJS({
|
|
|
10004
10036
|
function CatchBind(ctx, state) {
|
|
10005
10037
|
return $EVENT_C(ctx, state, "CatchBind", CatchBind$$);
|
|
10006
10038
|
}
|
|
10007
|
-
var FinallyClause$0 = $S($C(Nested, _), Finally, $C(
|
|
10039
|
+
var FinallyClause$0 = $S($C(Nested, _), Finally, $C(BracedThenClause, BracedOrEmptyBlock));
|
|
10008
10040
|
function FinallyClause(ctx, state) {
|
|
10009
10041
|
return $EVENT(ctx, state, "FinallyClause", FinallyClause$0);
|
|
10010
10042
|
}
|
|
@@ -12004,7 +12036,13 @@ var require_parser = __commonJS({
|
|
|
12004
12036
|
classValue = ["{[", ...exprs, '].filter(Boolean).join(" ")}'];
|
|
12005
12037
|
}
|
|
12006
12038
|
} else {
|
|
12007
|
-
|
|
12039
|
+
if (!stringPart.includes("&") && !stringPart.includes('"')) {
|
|
12040
|
+
classValue = `"${stringPart}"`;
|
|
12041
|
+
} else if (!stringPart.includes("&") && !stringPart.includes("'")) {
|
|
12042
|
+
classValue = `'${stringPart}'`;
|
|
12043
|
+
} else {
|
|
12044
|
+
classValue = `{${JSON.stringify(stringPart)}}`;
|
|
12045
|
+
}
|
|
12008
12046
|
}
|
|
12009
12047
|
attrs.splice(0, 0, [" ", [className, ["=", classValue]]]);
|
|
12010
12048
|
}
|
|
@@ -12912,8 +12950,29 @@ var require_parser = __commonJS({
|
|
|
12912
12950
|
return $EVENT_C(ctx, state, "TypeUnaryOp", TypeUnaryOp$$);
|
|
12913
12951
|
}
|
|
12914
12952
|
var TypeIndexedAccess$0 = $S(OpenBracket, $E(Type), __, CloseBracket);
|
|
12953
|
+
var TypeIndexedAccess$1 = $TS($S(Dot, $C(TemplateLiteral, StringLiteral, IntegerLiteral)), function($skip, $loc, $0, $1, $2) {
|
|
12954
|
+
var dot = $1;
|
|
12955
|
+
var literal = $2;
|
|
12956
|
+
const open = { ...dot, token: "[" };
|
|
12957
|
+
return [
|
|
12958
|
+
open,
|
|
12959
|
+
literal,
|
|
12960
|
+
"]"
|
|
12961
|
+
];
|
|
12962
|
+
});
|
|
12963
|
+
var TypeIndexedAccess$2 = $TS($S(CoffeePrototypeEnabled, DoubleColon, $E(IdentifierName)), function($skip, $loc, $0, $1, $2, $3) {
|
|
12964
|
+
var p = $2;
|
|
12965
|
+
var id = $3;
|
|
12966
|
+
const open = { ...p, token: '["' };
|
|
12967
|
+
return [
|
|
12968
|
+
open,
|
|
12969
|
+
id,
|
|
12970
|
+
'"]'
|
|
12971
|
+
];
|
|
12972
|
+
});
|
|
12973
|
+
var TypeIndexedAccess$$ = [TypeIndexedAccess$0, TypeIndexedAccess$1, TypeIndexedAccess$2];
|
|
12915
12974
|
function TypeIndexedAccess(ctx, state) {
|
|
12916
|
-
return $
|
|
12975
|
+
return $EVENT_C(ctx, state, "TypeIndexedAccess", TypeIndexedAccess$$);
|
|
12917
12976
|
}
|
|
12918
12977
|
var UnknownAlias$0 = $TV($EXPECT($L211, 'UnknownAlias "???"'), function($skip, $loc, $0, $1) {
|
|
12919
12978
|
return { $loc, token: "unknown" };
|
|
@@ -13822,8 +13881,8 @@ var require_parser = __commonJS({
|
|
|
13822
13881
|
Object.assign(module2.config, parse.config);
|
|
13823
13882
|
parse.config = module2.config;
|
|
13824
13883
|
} else {
|
|
13825
|
-
Object.assign(module2.config,
|
|
13826
|
-
|
|
13884
|
+
Object.assign(module2.config, exports2.parse.config);
|
|
13885
|
+
exports2.parse.config = module2.config;
|
|
13827
13886
|
}
|
|
13828
13887
|
return {
|
|
13829
13888
|
type: "ParserMeta",
|
|
@@ -13962,724 +14021,725 @@ var require_parser = __commonJS({
|
|
|
13962
14021
|
}
|
|
13963
14022
|
};
|
|
13964
14023
|
}();
|
|
13965
|
-
|
|
13966
|
-
|
|
13967
|
-
|
|
13968
|
-
|
|
13969
|
-
|
|
13970
|
-
|
|
13971
|
-
|
|
13972
|
-
|
|
13973
|
-
|
|
13974
|
-
|
|
13975
|
-
|
|
13976
|
-
|
|
13977
|
-
|
|
13978
|
-
|
|
13979
|
-
|
|
13980
|
-
|
|
13981
|
-
|
|
13982
|
-
|
|
13983
|
-
|
|
13984
|
-
|
|
13985
|
-
|
|
13986
|
-
|
|
13987
|
-
|
|
13988
|
-
|
|
13989
|
-
|
|
13990
|
-
|
|
13991
|
-
|
|
13992
|
-
|
|
13993
|
-
|
|
13994
|
-
|
|
13995
|
-
|
|
13996
|
-
|
|
13997
|
-
|
|
13998
|
-
|
|
13999
|
-
|
|
14000
|
-
|
|
14001
|
-
|
|
14002
|
-
|
|
14003
|
-
|
|
14004
|
-
|
|
14005
|
-
|
|
14006
|
-
|
|
14007
|
-
|
|
14008
|
-
|
|
14009
|
-
|
|
14010
|
-
|
|
14011
|
-
|
|
14012
|
-
|
|
14013
|
-
|
|
14014
|
-
|
|
14015
|
-
|
|
14016
|
-
|
|
14017
|
-
|
|
14018
|
-
|
|
14019
|
-
|
|
14020
|
-
|
|
14021
|
-
|
|
14022
|
-
|
|
14023
|
-
|
|
14024
|
-
|
|
14025
|
-
|
|
14026
|
-
|
|
14027
|
-
|
|
14028
|
-
|
|
14029
|
-
|
|
14030
|
-
|
|
14031
|
-
|
|
14032
|
-
|
|
14033
|
-
|
|
14034
|
-
|
|
14035
|
-
|
|
14036
|
-
|
|
14037
|
-
|
|
14038
|
-
|
|
14039
|
-
|
|
14040
|
-
|
|
14041
|
-
|
|
14042
|
-
|
|
14043
|
-
|
|
14044
|
-
|
|
14045
|
-
|
|
14046
|
-
|
|
14047
|
-
|
|
14048
|
-
|
|
14049
|
-
|
|
14050
|
-
|
|
14051
|
-
|
|
14052
|
-
|
|
14053
|
-
|
|
14054
|
-
|
|
14055
|
-
|
|
14056
|
-
|
|
14057
|
-
|
|
14058
|
-
|
|
14059
|
-
|
|
14060
|
-
|
|
14061
|
-
|
|
14062
|
-
|
|
14063
|
-
|
|
14064
|
-
|
|
14065
|
-
|
|
14066
|
-
|
|
14067
|
-
|
|
14068
|
-
|
|
14069
|
-
|
|
14070
|
-
|
|
14071
|
-
|
|
14072
|
-
|
|
14073
|
-
|
|
14074
|
-
|
|
14075
|
-
|
|
14076
|
-
|
|
14077
|
-
|
|
14078
|
-
|
|
14079
|
-
|
|
14080
|
-
|
|
14081
|
-
|
|
14082
|
-
|
|
14083
|
-
|
|
14084
|
-
|
|
14085
|
-
|
|
14086
|
-
|
|
14087
|
-
|
|
14088
|
-
|
|
14089
|
-
|
|
14090
|
-
|
|
14091
|
-
|
|
14092
|
-
|
|
14093
|
-
|
|
14094
|
-
|
|
14095
|
-
|
|
14096
|
-
|
|
14097
|
-
|
|
14098
|
-
|
|
14099
|
-
|
|
14100
|
-
|
|
14101
|
-
|
|
14102
|
-
|
|
14103
|
-
|
|
14104
|
-
|
|
14105
|
-
|
|
14106
|
-
|
|
14107
|
-
|
|
14108
|
-
|
|
14109
|
-
|
|
14110
|
-
|
|
14111
|
-
|
|
14112
|
-
|
|
14113
|
-
|
|
14114
|
-
|
|
14115
|
-
|
|
14116
|
-
|
|
14117
|
-
|
|
14118
|
-
|
|
14119
|
-
|
|
14120
|
-
|
|
14121
|
-
|
|
14122
|
-
|
|
14123
|
-
|
|
14124
|
-
|
|
14125
|
-
|
|
14126
|
-
|
|
14127
|
-
|
|
14128
|
-
|
|
14129
|
-
|
|
14130
|
-
|
|
14131
|
-
|
|
14132
|
-
|
|
14133
|
-
|
|
14134
|
-
|
|
14135
|
-
|
|
14136
|
-
|
|
14137
|
-
|
|
14138
|
-
|
|
14139
|
-
|
|
14140
|
-
|
|
14141
|
-
|
|
14142
|
-
|
|
14143
|
-
|
|
14144
|
-
|
|
14145
|
-
|
|
14146
|
-
|
|
14147
|
-
|
|
14148
|
-
|
|
14149
|
-
|
|
14150
|
-
|
|
14151
|
-
|
|
14152
|
-
|
|
14153
|
-
|
|
14154
|
-
|
|
14155
|
-
|
|
14156
|
-
|
|
14157
|
-
|
|
14158
|
-
|
|
14159
|
-
|
|
14160
|
-
|
|
14161
|
-
|
|
14162
|
-
|
|
14163
|
-
|
|
14164
|
-
|
|
14165
|
-
|
|
14166
|
-
|
|
14167
|
-
|
|
14168
|
-
|
|
14169
|
-
|
|
14170
|
-
|
|
14171
|
-
|
|
14172
|
-
|
|
14173
|
-
|
|
14174
|
-
|
|
14175
|
-
|
|
14176
|
-
|
|
14177
|
-
|
|
14178
|
-
|
|
14179
|
-
|
|
14180
|
-
|
|
14181
|
-
|
|
14182
|
-
|
|
14183
|
-
|
|
14184
|
-
|
|
14185
|
-
|
|
14186
|
-
|
|
14187
|
-
|
|
14188
|
-
|
|
14189
|
-
|
|
14190
|
-
|
|
14191
|
-
|
|
14192
|
-
|
|
14193
|
-
|
|
14194
|
-
|
|
14195
|
-
|
|
14196
|
-
|
|
14197
|
-
|
|
14198
|
-
|
|
14199
|
-
|
|
14200
|
-
|
|
14201
|
-
|
|
14202
|
-
|
|
14203
|
-
|
|
14204
|
-
|
|
14205
|
-
|
|
14206
|
-
|
|
14207
|
-
|
|
14208
|
-
|
|
14209
|
-
|
|
14210
|
-
|
|
14211
|
-
|
|
14212
|
-
|
|
14213
|
-
|
|
14214
|
-
|
|
14215
|
-
|
|
14216
|
-
|
|
14217
|
-
|
|
14218
|
-
|
|
14219
|
-
|
|
14220
|
-
|
|
14221
|
-
|
|
14222
|
-
|
|
14223
|
-
|
|
14224
|
-
|
|
14225
|
-
|
|
14226
|
-
|
|
14227
|
-
|
|
14228
|
-
|
|
14229
|
-
|
|
14230
|
-
|
|
14231
|
-
|
|
14232
|
-
|
|
14233
|
-
|
|
14234
|
-
|
|
14235
|
-
|
|
14236
|
-
|
|
14237
|
-
|
|
14238
|
-
|
|
14239
|
-
|
|
14240
|
-
|
|
14241
|
-
|
|
14242
|
-
|
|
14243
|
-
|
|
14244
|
-
|
|
14245
|
-
|
|
14246
|
-
|
|
14247
|
-
|
|
14248
|
-
|
|
14249
|
-
|
|
14250
|
-
|
|
14251
|
-
|
|
14252
|
-
|
|
14253
|
-
|
|
14254
|
-
|
|
14255
|
-
|
|
14256
|
-
|
|
14257
|
-
|
|
14258
|
-
|
|
14259
|
-
|
|
14260
|
-
|
|
14261
|
-
|
|
14262
|
-
|
|
14263
|
-
|
|
14264
|
-
|
|
14265
|
-
|
|
14266
|
-
|
|
14267
|
-
|
|
14268
|
-
|
|
14269
|
-
|
|
14270
|
-
|
|
14271
|
-
|
|
14272
|
-
|
|
14273
|
-
|
|
14274
|
-
|
|
14275
|
-
|
|
14276
|
-
|
|
14277
|
-
|
|
14278
|
-
|
|
14279
|
-
|
|
14280
|
-
|
|
14281
|
-
|
|
14282
|
-
|
|
14283
|
-
|
|
14284
|
-
|
|
14285
|
-
|
|
14286
|
-
|
|
14287
|
-
|
|
14288
|
-
|
|
14289
|
-
|
|
14290
|
-
|
|
14291
|
-
|
|
14292
|
-
|
|
14293
|
-
|
|
14294
|
-
|
|
14295
|
-
|
|
14296
|
-
|
|
14297
|
-
|
|
14298
|
-
|
|
14299
|
-
|
|
14300
|
-
|
|
14301
|
-
|
|
14302
|
-
|
|
14303
|
-
|
|
14304
|
-
|
|
14305
|
-
|
|
14306
|
-
|
|
14307
|
-
|
|
14308
|
-
|
|
14309
|
-
|
|
14310
|
-
|
|
14311
|
-
|
|
14312
|
-
|
|
14313
|
-
|
|
14314
|
-
|
|
14315
|
-
|
|
14316
|
-
|
|
14317
|
-
|
|
14318
|
-
|
|
14319
|
-
|
|
14320
|
-
|
|
14321
|
-
|
|
14322
|
-
|
|
14323
|
-
|
|
14324
|
-
|
|
14325
|
-
|
|
14326
|
-
|
|
14327
|
-
|
|
14328
|
-
|
|
14329
|
-
|
|
14330
|
-
|
|
14331
|
-
|
|
14332
|
-
|
|
14333
|
-
|
|
14334
|
-
|
|
14335
|
-
|
|
14336
|
-
|
|
14337
|
-
|
|
14338
|
-
|
|
14339
|
-
|
|
14340
|
-
|
|
14341
|
-
|
|
14342
|
-
|
|
14343
|
-
|
|
14344
|
-
|
|
14345
|
-
|
|
14346
|
-
|
|
14347
|
-
|
|
14348
|
-
|
|
14349
|
-
|
|
14350
|
-
|
|
14351
|
-
|
|
14352
|
-
|
|
14353
|
-
|
|
14354
|
-
|
|
14355
|
-
|
|
14356
|
-
|
|
14357
|
-
|
|
14358
|
-
|
|
14359
|
-
|
|
14360
|
-
|
|
14361
|
-
|
|
14362
|
-
|
|
14363
|
-
|
|
14364
|
-
|
|
14365
|
-
|
|
14366
|
-
|
|
14367
|
-
|
|
14368
|
-
|
|
14369
|
-
|
|
14370
|
-
|
|
14371
|
-
|
|
14372
|
-
|
|
14373
|
-
|
|
14374
|
-
|
|
14375
|
-
|
|
14376
|
-
|
|
14377
|
-
|
|
14378
|
-
|
|
14379
|
-
|
|
14380
|
-
|
|
14381
|
-
|
|
14382
|
-
|
|
14383
|
-
|
|
14384
|
-
|
|
14385
|
-
|
|
14386
|
-
|
|
14387
|
-
|
|
14388
|
-
|
|
14389
|
-
|
|
14390
|
-
|
|
14391
|
-
|
|
14392
|
-
|
|
14393
|
-
|
|
14394
|
-
|
|
14395
|
-
|
|
14396
|
-
|
|
14397
|
-
|
|
14398
|
-
|
|
14399
|
-
|
|
14400
|
-
|
|
14401
|
-
|
|
14402
|
-
|
|
14403
|
-
|
|
14404
|
-
|
|
14405
|
-
|
|
14406
|
-
|
|
14407
|
-
|
|
14408
|
-
|
|
14409
|
-
|
|
14410
|
-
|
|
14411
|
-
|
|
14412
|
-
|
|
14413
|
-
|
|
14414
|
-
|
|
14415
|
-
|
|
14416
|
-
|
|
14417
|
-
|
|
14418
|
-
|
|
14419
|
-
|
|
14420
|
-
|
|
14421
|
-
|
|
14422
|
-
|
|
14423
|
-
|
|
14424
|
-
|
|
14425
|
-
|
|
14426
|
-
|
|
14427
|
-
|
|
14428
|
-
|
|
14429
|
-
|
|
14430
|
-
|
|
14431
|
-
|
|
14432
|
-
|
|
14433
|
-
|
|
14434
|
-
|
|
14435
|
-
|
|
14436
|
-
|
|
14437
|
-
|
|
14438
|
-
|
|
14439
|
-
|
|
14440
|
-
|
|
14441
|
-
|
|
14442
|
-
|
|
14443
|
-
|
|
14444
|
-
|
|
14445
|
-
|
|
14446
|
-
|
|
14447
|
-
|
|
14448
|
-
|
|
14449
|
-
|
|
14450
|
-
|
|
14451
|
-
|
|
14452
|
-
|
|
14453
|
-
|
|
14454
|
-
|
|
14455
|
-
|
|
14456
|
-
|
|
14457
|
-
|
|
14458
|
-
|
|
14459
|
-
|
|
14460
|
-
|
|
14461
|
-
|
|
14462
|
-
|
|
14463
|
-
|
|
14464
|
-
|
|
14465
|
-
|
|
14466
|
-
|
|
14467
|
-
|
|
14468
|
-
|
|
14469
|
-
|
|
14470
|
-
|
|
14471
|
-
|
|
14472
|
-
|
|
14473
|
-
|
|
14474
|
-
|
|
14475
|
-
|
|
14476
|
-
|
|
14477
|
-
|
|
14478
|
-
|
|
14479
|
-
|
|
14480
|
-
|
|
14481
|
-
|
|
14482
|
-
|
|
14483
|
-
|
|
14484
|
-
|
|
14485
|
-
|
|
14486
|
-
|
|
14487
|
-
|
|
14488
|
-
|
|
14489
|
-
|
|
14490
|
-
|
|
14491
|
-
|
|
14492
|
-
|
|
14493
|
-
|
|
14494
|
-
|
|
14495
|
-
|
|
14496
|
-
|
|
14497
|
-
|
|
14498
|
-
|
|
14499
|
-
|
|
14500
|
-
|
|
14501
|
-
|
|
14502
|
-
|
|
14503
|
-
|
|
14504
|
-
|
|
14505
|
-
|
|
14506
|
-
|
|
14507
|
-
|
|
14508
|
-
|
|
14509
|
-
|
|
14510
|
-
|
|
14511
|
-
|
|
14512
|
-
|
|
14513
|
-
|
|
14514
|
-
|
|
14515
|
-
|
|
14516
|
-
|
|
14517
|
-
|
|
14518
|
-
|
|
14519
|
-
|
|
14520
|
-
|
|
14521
|
-
|
|
14522
|
-
|
|
14523
|
-
|
|
14524
|
-
|
|
14525
|
-
|
|
14526
|
-
|
|
14527
|
-
|
|
14528
|
-
|
|
14529
|
-
|
|
14530
|
-
|
|
14531
|
-
|
|
14532
|
-
|
|
14533
|
-
|
|
14534
|
-
|
|
14535
|
-
|
|
14536
|
-
|
|
14537
|
-
|
|
14538
|
-
|
|
14539
|
-
|
|
14540
|
-
|
|
14541
|
-
|
|
14542
|
-
|
|
14543
|
-
|
|
14544
|
-
|
|
14545
|
-
|
|
14546
|
-
|
|
14547
|
-
|
|
14548
|
-
|
|
14549
|
-
|
|
14550
|
-
|
|
14551
|
-
|
|
14552
|
-
|
|
14553
|
-
|
|
14554
|
-
|
|
14555
|
-
|
|
14556
|
-
|
|
14557
|
-
|
|
14558
|
-
|
|
14559
|
-
|
|
14560
|
-
|
|
14561
|
-
|
|
14562
|
-
|
|
14563
|
-
|
|
14564
|
-
|
|
14565
|
-
|
|
14566
|
-
|
|
14567
|
-
|
|
14568
|
-
|
|
14569
|
-
|
|
14570
|
-
|
|
14571
|
-
|
|
14572
|
-
|
|
14573
|
-
|
|
14574
|
-
|
|
14575
|
-
|
|
14576
|
-
|
|
14577
|
-
|
|
14578
|
-
|
|
14579
|
-
|
|
14580
|
-
|
|
14581
|
-
|
|
14582
|
-
|
|
14583
|
-
|
|
14584
|
-
|
|
14585
|
-
|
|
14586
|
-
|
|
14587
|
-
|
|
14588
|
-
|
|
14589
|
-
|
|
14590
|
-
|
|
14591
|
-
|
|
14592
|
-
|
|
14593
|
-
|
|
14594
|
-
|
|
14595
|
-
|
|
14596
|
-
|
|
14597
|
-
|
|
14598
|
-
|
|
14599
|
-
|
|
14600
|
-
|
|
14601
|
-
|
|
14602
|
-
|
|
14603
|
-
|
|
14604
|
-
|
|
14605
|
-
|
|
14606
|
-
|
|
14607
|
-
|
|
14608
|
-
|
|
14609
|
-
|
|
14610
|
-
|
|
14611
|
-
|
|
14612
|
-
|
|
14613
|
-
|
|
14614
|
-
|
|
14615
|
-
|
|
14616
|
-
|
|
14617
|
-
|
|
14618
|
-
|
|
14619
|
-
|
|
14620
|
-
|
|
14621
|
-
|
|
14622
|
-
|
|
14623
|
-
|
|
14624
|
-
|
|
14625
|
-
|
|
14626
|
-
|
|
14627
|
-
|
|
14628
|
-
|
|
14629
|
-
|
|
14630
|
-
|
|
14631
|
-
|
|
14632
|
-
|
|
14633
|
-
|
|
14634
|
-
|
|
14635
|
-
|
|
14636
|
-
|
|
14637
|
-
|
|
14638
|
-
|
|
14639
|
-
|
|
14640
|
-
|
|
14641
|
-
|
|
14642
|
-
|
|
14643
|
-
|
|
14644
|
-
|
|
14645
|
-
|
|
14646
|
-
|
|
14647
|
-
|
|
14648
|
-
|
|
14649
|
-
|
|
14650
|
-
|
|
14651
|
-
|
|
14652
|
-
|
|
14653
|
-
|
|
14654
|
-
|
|
14655
|
-
|
|
14656
|
-
|
|
14657
|
-
|
|
14658
|
-
|
|
14659
|
-
|
|
14660
|
-
|
|
14661
|
-
|
|
14662
|
-
|
|
14663
|
-
|
|
14664
|
-
|
|
14665
|
-
|
|
14666
|
-
|
|
14667
|
-
|
|
14668
|
-
|
|
14669
|
-
|
|
14670
|
-
|
|
14671
|
-
|
|
14672
|
-
|
|
14673
|
-
|
|
14674
|
-
|
|
14675
|
-
|
|
14676
|
-
|
|
14677
|
-
|
|
14678
|
-
|
|
14679
|
-
|
|
14680
|
-
|
|
14681
|
-
|
|
14682
|
-
|
|
14024
|
+
exports2.default = parser2;
|
|
14025
|
+
exports2.parse = parser2.parse;
|
|
14026
|
+
exports2.Program = Program;
|
|
14027
|
+
exports2.TopLevelStatements = TopLevelStatements;
|
|
14028
|
+
exports2.NestedTopLevelStatements = NestedTopLevelStatements;
|
|
14029
|
+
exports2.TopLevelSingleLineStatements = TopLevelSingleLineStatements;
|
|
14030
|
+
exports2.TopLevelStatement = TopLevelStatement;
|
|
14031
|
+
exports2.ExtendedCommaExpression = ExtendedCommaExpression;
|
|
14032
|
+
exports2.ExtendedExpression = ExtendedExpression;
|
|
14033
|
+
exports2.SingleLineExtendedExpression = SingleLineExtendedExpression;
|
|
14034
|
+
exports2.NonPipelineExtendedExpression = NonPipelineExtendedExpression;
|
|
14035
|
+
exports2.NonAssignmentExtendedExpression = NonAssignmentExtendedExpression;
|
|
14036
|
+
exports2.NestedNonAssignmentExtendedExpression = NestedNonAssignmentExtendedExpression;
|
|
14037
|
+
exports2.ExpressionizedStatementWithTrailingCallExpressions = ExpressionizedStatementWithTrailingCallExpressions;
|
|
14038
|
+
exports2.ExpressionizedStatement = ExpressionizedStatement;
|
|
14039
|
+
exports2._ExpressionizedStatement = _ExpressionizedStatement;
|
|
14040
|
+
exports2.CommaExpression = CommaExpression;
|
|
14041
|
+
exports2.Arguments = Arguments;
|
|
14042
|
+
exports2.ImplicitArguments = ImplicitArguments;
|
|
14043
|
+
exports2.ExplicitArguments = ExplicitArguments;
|
|
14044
|
+
exports2.ApplicationStart = ApplicationStart;
|
|
14045
|
+
exports2.ForbiddenImplicitCalls = ForbiddenImplicitCalls;
|
|
14046
|
+
exports2.ArgumentsWithTrailingMemberExpressions = ArgumentsWithTrailingMemberExpressions;
|
|
14047
|
+
exports2.TrailingMemberExpressions = TrailingMemberExpressions;
|
|
14048
|
+
exports2.AllowedTrailingMemberExpressions = AllowedTrailingMemberExpressions;
|
|
14049
|
+
exports2.TrailingCallExpressions = TrailingCallExpressions;
|
|
14050
|
+
exports2.AllowedTrailingCallExpressions = AllowedTrailingCallExpressions;
|
|
14051
|
+
exports2.CommaDelimiter = CommaDelimiter;
|
|
14052
|
+
exports2.ArgumentList = ArgumentList;
|
|
14053
|
+
exports2.NonPipelineArgumentList = NonPipelineArgumentList;
|
|
14054
|
+
exports2.NestedArgumentList = NestedArgumentList;
|
|
14055
|
+
exports2.NestedArgument = NestedArgument;
|
|
14056
|
+
exports2.SingleLineArgumentExpressions = SingleLineArgumentExpressions;
|
|
14057
|
+
exports2.ArgumentPart = ArgumentPart;
|
|
14058
|
+
exports2.NonPipelineArgumentPart = NonPipelineArgumentPart;
|
|
14059
|
+
exports2.BinaryOpExpression = BinaryOpExpression;
|
|
14060
|
+
exports2.BinaryOpRHS = BinaryOpRHS;
|
|
14061
|
+
exports2.WRHS = WRHS;
|
|
14062
|
+
exports2.SingleLineBinaryOpRHS = SingleLineBinaryOpRHS;
|
|
14063
|
+
exports2.RHS = RHS;
|
|
14064
|
+
exports2.ParenthesizedAssignment = ParenthesizedAssignment;
|
|
14065
|
+
exports2.UnaryExpression = UnaryExpression;
|
|
14066
|
+
exports2.UnaryWithoutParenthesizedAssignment = UnaryWithoutParenthesizedAssignment;
|
|
14067
|
+
exports2.UnaryBody = UnaryBody;
|
|
14068
|
+
exports2.UnaryWithoutParenthesizedAssignmentBody = UnaryWithoutParenthesizedAssignmentBody;
|
|
14069
|
+
exports2.UnaryPostfix = UnaryPostfix;
|
|
14070
|
+
exports2.TypePostfix = TypePostfix;
|
|
14071
|
+
exports2.UpdateExpression = UpdateExpression;
|
|
14072
|
+
exports2.UpdateExpressionSymbol = UpdateExpressionSymbol;
|
|
14073
|
+
exports2.AssignmentExpression = AssignmentExpression;
|
|
14074
|
+
exports2.NonPipelineAssignmentExpression = NonPipelineAssignmentExpression;
|
|
14075
|
+
exports2.SingleLineAssignmentExpression = SingleLineAssignmentExpression;
|
|
14076
|
+
exports2.AssignmentExpressionTail = AssignmentExpressionTail;
|
|
14077
|
+
exports2.ActualAssignment = ActualAssignment;
|
|
14078
|
+
exports2.YieldExpression = YieldExpression;
|
|
14079
|
+
exports2.YieldTail = YieldTail;
|
|
14080
|
+
exports2.ArrowFunction = ArrowFunction;
|
|
14081
|
+
exports2.FatArrow = FatArrow;
|
|
14082
|
+
exports2.TrailingDeclaration = TrailingDeclaration;
|
|
14083
|
+
exports2.FatArrowBody = FatArrowBody;
|
|
14084
|
+
exports2.ConditionalExpression = ConditionalExpression;
|
|
14085
|
+
exports2.TernaryRest = TernaryRest;
|
|
14086
|
+
exports2.NestedTernaryRest = NestedTernaryRest;
|
|
14087
|
+
exports2.ShortCircuitExpression = ShortCircuitExpression;
|
|
14088
|
+
exports2.PipelineExpression = PipelineExpression;
|
|
14089
|
+
exports2.PipelineHeadItem = PipelineHeadItem;
|
|
14090
|
+
exports2.PipelineTailItem = PipelineTailItem;
|
|
14091
|
+
exports2.PrimaryExpression = PrimaryExpression;
|
|
14092
|
+
exports2.ParenthesizedExpression = ParenthesizedExpression;
|
|
14093
|
+
exports2.ClassDeclaration = ClassDeclaration;
|
|
14094
|
+
exports2.ClassExpression = ClassExpression;
|
|
14095
|
+
exports2.ClassBinding = ClassBinding;
|
|
14096
|
+
exports2.ClassHeritage = ClassHeritage;
|
|
14097
|
+
exports2.ExtendsClause = ExtendsClause;
|
|
14098
|
+
exports2.ExtendsToken = ExtendsToken;
|
|
14099
|
+
exports2.ExtendsShorthand = ExtendsShorthand;
|
|
14100
|
+
exports2.NotExtendsToken = NotExtendsToken;
|
|
14101
|
+
exports2.OmittedNegation = OmittedNegation;
|
|
14102
|
+
exports2.ExtendsTarget = ExtendsTarget;
|
|
14103
|
+
exports2.ImplementsClause = ImplementsClause;
|
|
14104
|
+
exports2.ImplementsToken = ImplementsToken;
|
|
14105
|
+
exports2.ImplementsShorthand = ImplementsShorthand;
|
|
14106
|
+
exports2.ImplementsTarget = ImplementsTarget;
|
|
14107
|
+
exports2.ClassBody = ClassBody;
|
|
14108
|
+
exports2.NestedClassElements = NestedClassElements;
|
|
14109
|
+
exports2.NestedClassElement = NestedClassElement;
|
|
14110
|
+
exports2.ClassElement = ClassElement;
|
|
14111
|
+
exports2.ClassElementDefinition = ClassElementDefinition;
|
|
14112
|
+
exports2.ClassSignature = ClassSignature;
|
|
14113
|
+
exports2.ClassSignatureBody = ClassSignatureBody;
|
|
14114
|
+
exports2.NestedClassSignatureElements = NestedClassSignatureElements;
|
|
14115
|
+
exports2.NestedClassSignatureElement = NestedClassSignatureElement;
|
|
14116
|
+
exports2.ClassSignatureElement = ClassSignatureElement;
|
|
14117
|
+
exports2.AccessModifier = AccessModifier;
|
|
14118
|
+
exports2.FieldDefinition = FieldDefinition;
|
|
14119
|
+
exports2.ThisLiteral = ThisLiteral;
|
|
14120
|
+
exports2.PrivateThis = PrivateThis;
|
|
14121
|
+
exports2.AtThis = AtThis;
|
|
14122
|
+
exports2.LeftHandSideExpression = LeftHandSideExpression;
|
|
14123
|
+
exports2.CallExpression = CallExpression;
|
|
14124
|
+
exports2.CallExpressionRest = CallExpressionRest;
|
|
14125
|
+
exports2.OptionalShorthand = OptionalShorthand;
|
|
14126
|
+
exports2.OptionalDot = OptionalDot;
|
|
14127
|
+
exports2.NonNullAssertion = NonNullAssertion;
|
|
14128
|
+
exports2.MemberExpression = MemberExpression;
|
|
14129
|
+
exports2.ActualMemberExpression = ActualMemberExpression;
|
|
14130
|
+
exports2.MemberBase = MemberBase;
|
|
14131
|
+
exports2.MemberExpressionRest = MemberExpressionRest;
|
|
14132
|
+
exports2.MemberExpressionRestBody = MemberExpressionRestBody;
|
|
14133
|
+
exports2.MemberBracketContent = MemberBracketContent;
|
|
14134
|
+
exports2.SliceParameters = SliceParameters;
|
|
14135
|
+
exports2.AccessStart = AccessStart;
|
|
14136
|
+
exports2.PropertyAccessModifier = PropertyAccessModifier;
|
|
14137
|
+
exports2.PropertyAccess = PropertyAccess;
|
|
14138
|
+
exports2.PropertyGlob = PropertyGlob;
|
|
14139
|
+
exports2.PropertyBind = PropertyBind;
|
|
14140
|
+
exports2.SuperProperty = SuperProperty;
|
|
14141
|
+
exports2.MetaProperty = MetaProperty;
|
|
14142
|
+
exports2.ReturnValue = ReturnValue;
|
|
14143
|
+
exports2.AfterReturnShorthand = AfterReturnShorthand;
|
|
14144
|
+
exports2.Parameters = Parameters;
|
|
14145
|
+
exports2.ShortArrowParameters = ShortArrowParameters;
|
|
14146
|
+
exports2.ArrowParameters = ArrowParameters;
|
|
14147
|
+
exports2.NonEmptyParameters = NonEmptyParameters;
|
|
14148
|
+
exports2.ParameterList = ParameterList;
|
|
14149
|
+
exports2.NestedParameterList = NestedParameterList;
|
|
14150
|
+
exports2.NestedParameter = NestedParameter;
|
|
14151
|
+
exports2.Parameter = Parameter;
|
|
14152
|
+
exports2.FunctionRestParameter = FunctionRestParameter;
|
|
14153
|
+
exports2.ParameterElement = ParameterElement;
|
|
14154
|
+
exports2.ParameterElementDelimiter = ParameterElementDelimiter;
|
|
14155
|
+
exports2.BindingIdentifier = BindingIdentifier;
|
|
14156
|
+
exports2.NWBindingIdentifier = NWBindingIdentifier;
|
|
14157
|
+
exports2.AtIdentifierRef = AtIdentifierRef;
|
|
14158
|
+
exports2.PinPattern = PinPattern;
|
|
14159
|
+
exports2.BindingPattern = BindingPattern;
|
|
14160
|
+
exports2.ObjectBindingPattern = ObjectBindingPattern;
|
|
14161
|
+
exports2.ObjectBindingPatternContent = ObjectBindingPatternContent;
|
|
14162
|
+
exports2.BindingPropertyList = BindingPropertyList;
|
|
14163
|
+
exports2.ArrayBindingPattern = ArrayBindingPattern;
|
|
14164
|
+
exports2.ArrayBindingPatternContent = ArrayBindingPatternContent;
|
|
14165
|
+
exports2.BindingElementList = BindingElementList;
|
|
14166
|
+
exports2.NestedBindingElementList = NestedBindingElementList;
|
|
14167
|
+
exports2.Elision = Elision;
|
|
14168
|
+
exports2.NestedBindingProperties = NestedBindingProperties;
|
|
14169
|
+
exports2.NestedBindingPropertyList = NestedBindingPropertyList;
|
|
14170
|
+
exports2.BindingProperty = BindingProperty;
|
|
14171
|
+
exports2.BindingRestProperty = BindingRestProperty;
|
|
14172
|
+
exports2.NestedBindingElements = NestedBindingElements;
|
|
14173
|
+
exports2.BindingElement = BindingElement;
|
|
14174
|
+
exports2.BindingRestElement = BindingRestElement;
|
|
14175
|
+
exports2.EmptyBindingPattern = EmptyBindingPattern;
|
|
14176
|
+
exports2.FunctionDeclaration = FunctionDeclaration;
|
|
14177
|
+
exports2.FunctionSignature = FunctionSignature;
|
|
14178
|
+
exports2.FunctionExpression = FunctionExpression;
|
|
14179
|
+
exports2.AmpersandFunctionExpression = AmpersandFunctionExpression;
|
|
14180
|
+
exports2.OperatorDeclaration = OperatorDeclaration;
|
|
14181
|
+
exports2.OperatorSignature = OperatorSignature;
|
|
14182
|
+
exports2.AmpersandBlockRHS = AmpersandBlockRHS;
|
|
14183
|
+
exports2.AmpersandBlockRHSBody = AmpersandBlockRHSBody;
|
|
14184
|
+
exports2.ThinArrowFunction = ThinArrowFunction;
|
|
14185
|
+
exports2.Arrow = Arrow;
|
|
14186
|
+
exports2.ExplicitBlock = ExplicitBlock;
|
|
14187
|
+
exports2.ImplicitNestedBlock = ImplicitNestedBlock;
|
|
14188
|
+
exports2.Block = Block;
|
|
14189
|
+
exports2.BareNestedBlock = BareNestedBlock;
|
|
14190
|
+
exports2.BareBlock = BareBlock;
|
|
14191
|
+
exports2.ThenClause = ThenClause;
|
|
14192
|
+
exports2.BracedThenClause = BracedThenClause;
|
|
14193
|
+
exports2.BracedOrEmptyBlock = BracedOrEmptyBlock;
|
|
14194
|
+
exports2.NoCommaBracedOrEmptyBlock = NoCommaBracedOrEmptyBlock;
|
|
14195
|
+
exports2.NoPostfixBracedOrEmptyBlock = NoPostfixBracedOrEmptyBlock;
|
|
14196
|
+
exports2.EmptyBlock = EmptyBlock;
|
|
14197
|
+
exports2.EmptyBareBlock = EmptyBareBlock;
|
|
14198
|
+
exports2.BracedBlock = BracedBlock;
|
|
14199
|
+
exports2.NoPostfixBracedBlock = NoPostfixBracedBlock;
|
|
14200
|
+
exports2.NoCommaBracedBlock = NoCommaBracedBlock;
|
|
14201
|
+
exports2.NonSingleBracedBlock = NonSingleBracedBlock;
|
|
14202
|
+
exports2.DeclarationOrStatement = DeclarationOrStatement;
|
|
14203
|
+
exports2.SingleLineStatements = SingleLineStatements;
|
|
14204
|
+
exports2.PostfixedSingleLineStatements = PostfixedSingleLineStatements;
|
|
14205
|
+
exports2.PostfixedSingleLineNoCommaStatements = PostfixedSingleLineNoCommaStatements;
|
|
14206
|
+
exports2.BracedContent = BracedContent;
|
|
14207
|
+
exports2.NestedBlockStatements = NestedBlockStatements;
|
|
14208
|
+
exports2.NestedBlockStatement = NestedBlockStatement;
|
|
14209
|
+
exports2.BlockStatementPart = BlockStatementPart;
|
|
14210
|
+
exports2.Literal = Literal;
|
|
14211
|
+
exports2.LiteralContent = LiteralContent;
|
|
14212
|
+
exports2.NullLiteral = NullLiteral;
|
|
14213
|
+
exports2.BooleanLiteral = BooleanLiteral;
|
|
14214
|
+
exports2._BooleanLiteral = _BooleanLiteral;
|
|
14215
|
+
exports2.CoffeeScriptBooleanLiteral = CoffeeScriptBooleanLiteral;
|
|
14216
|
+
exports2.Identifier = Identifier;
|
|
14217
|
+
exports2.IdentifierName = IdentifierName;
|
|
14218
|
+
exports2.IdentifierReference = IdentifierReference;
|
|
14219
|
+
exports2.UpcomingAssignment = UpcomingAssignment;
|
|
14220
|
+
exports2.ArrayLiteral = ArrayLiteral;
|
|
14221
|
+
exports2._ArrayLiteral = _ArrayLiteral;
|
|
14222
|
+
exports2.RangeExpression = RangeExpression;
|
|
14223
|
+
exports2.ArrayLiteralContent = ArrayLiteralContent;
|
|
14224
|
+
exports2.NestedElementList = NestedElementList;
|
|
14225
|
+
exports2.NestedElement = NestedElement;
|
|
14226
|
+
exports2.ArrayElementDelimiter = ArrayElementDelimiter;
|
|
14227
|
+
exports2.ElementListWithIndentedApplicationForbidden = ElementListWithIndentedApplicationForbidden;
|
|
14228
|
+
exports2.ElementList = ElementList;
|
|
14229
|
+
exports2.ElementListRest = ElementListRest;
|
|
14230
|
+
exports2.ArrayElementExpression = ArrayElementExpression;
|
|
14231
|
+
exports2.ObjectLiteral = ObjectLiteral;
|
|
14232
|
+
exports2.BracedObjectLiteral = BracedObjectLiteral;
|
|
14233
|
+
exports2.BracedObjectLiteralContent = BracedObjectLiteralContent;
|
|
14234
|
+
exports2.NestedImplicitObjectLiteral = NestedImplicitObjectLiteral;
|
|
14235
|
+
exports2.NestedImplicitPropertyDefinitions = NestedImplicitPropertyDefinitions;
|
|
14236
|
+
exports2.NestedImplicitPropertyDefinition = NestedImplicitPropertyDefinition;
|
|
14237
|
+
exports2.NestedPropertyDefinitions = NestedPropertyDefinitions;
|
|
14238
|
+
exports2.NestedPropertyDefinition = NestedPropertyDefinition;
|
|
14239
|
+
exports2.InlineObjectLiteral = InlineObjectLiteral;
|
|
14240
|
+
exports2.ImplicitInlineObjectPropertyDelimiter = ImplicitInlineObjectPropertyDelimiter;
|
|
14241
|
+
exports2.ObjectPropertyDelimiter = ObjectPropertyDelimiter;
|
|
14242
|
+
exports2.PropertyDefinition = PropertyDefinition;
|
|
14243
|
+
exports2.NamedProperty = NamedProperty;
|
|
14244
|
+
exports2.SnugNamedProperty = SnugNamedProperty;
|
|
14245
|
+
exports2.PropertyName = PropertyName;
|
|
14246
|
+
exports2.ComputedPropertyName = ComputedPropertyName;
|
|
14247
|
+
exports2.Decorator = Decorator;
|
|
14248
|
+
exports2.Decorators = Decorators;
|
|
14249
|
+
exports2.MethodDefinition = MethodDefinition;
|
|
14250
|
+
exports2.MethodModifier = MethodModifier;
|
|
14251
|
+
exports2.MethodSignature = MethodSignature;
|
|
14252
|
+
exports2.ClassElementName = ClassElementName;
|
|
14253
|
+
exports2.PrivateIdentifier = PrivateIdentifier;
|
|
14254
|
+
exports2.WAssignmentOp = WAssignmentOp;
|
|
14255
|
+
exports2.AssignmentOp = AssignmentOp;
|
|
14256
|
+
exports2.OperatorAssignmentOp = OperatorAssignmentOp;
|
|
14257
|
+
exports2.AssignmentOpSymbol = AssignmentOpSymbol;
|
|
14258
|
+
exports2.CoffeeWordAssignmentOp = CoffeeWordAssignmentOp;
|
|
14259
|
+
exports2.NotDedentedBinaryOp = NotDedentedBinaryOp;
|
|
14260
|
+
exports2.IdentifierBinaryOp = IdentifierBinaryOp;
|
|
14261
|
+
exports2.BinaryOp = BinaryOp;
|
|
14262
|
+
exports2._BinaryOp = _BinaryOp;
|
|
14263
|
+
exports2.BinaryOpSymbol = BinaryOpSymbol;
|
|
14264
|
+
exports2.CoffeeOfOp = CoffeeOfOp;
|
|
14265
|
+
exports2.NotOp = NotOp;
|
|
14266
|
+
exports2.Xor = Xor;
|
|
14267
|
+
exports2.Xnor = Xnor;
|
|
14268
|
+
exports2.UnaryOp = UnaryOp;
|
|
14269
|
+
exports2.AwaitOp = AwaitOp;
|
|
14270
|
+
exports2.ModuleItem = ModuleItem;
|
|
14271
|
+
exports2.StatementListItem = StatementListItem;
|
|
14272
|
+
exports2.PostfixedStatement = PostfixedStatement;
|
|
14273
|
+
exports2.NoCommaStatementListItem = NoCommaStatementListItem;
|
|
14274
|
+
exports2.PostfixedNoCommaStatement = PostfixedNoCommaStatement;
|
|
14275
|
+
exports2.PostfixedExpression = PostfixedExpression;
|
|
14276
|
+
exports2.PostfixedCommaExpression = PostfixedCommaExpression;
|
|
14277
|
+
exports2.NonPipelinePostfixedExpression = NonPipelinePostfixedExpression;
|
|
14278
|
+
exports2.PostfixStatement = PostfixStatement;
|
|
14279
|
+
exports2._PostfixStatement = _PostfixStatement;
|
|
14280
|
+
exports2.Statement = Statement;
|
|
14281
|
+
exports2.NoCommaStatement = NoCommaStatement;
|
|
14282
|
+
exports2.EmptyStatement = EmptyStatement;
|
|
14283
|
+
exports2.BlockStatement = BlockStatement;
|
|
14284
|
+
exports2.LabelledStatement = LabelledStatement;
|
|
14285
|
+
exports2.Label = Label;
|
|
14286
|
+
exports2.LabelledItem = LabelledItem;
|
|
14287
|
+
exports2.IfStatement = IfStatement;
|
|
14288
|
+
exports2.ElseClause = ElseClause;
|
|
14289
|
+
exports2.IfClause = IfClause;
|
|
14290
|
+
exports2.UnlessClause = UnlessClause;
|
|
14291
|
+
exports2.IfExpression = IfExpression;
|
|
14292
|
+
exports2.UnlessExpression = UnlessExpression;
|
|
14293
|
+
exports2.ElseExpressionClause = ElseExpressionClause;
|
|
14294
|
+
exports2.ExpressionBlock = ExpressionBlock;
|
|
14295
|
+
exports2.ElseExpressionBlock = ElseExpressionBlock;
|
|
14296
|
+
exports2.NestedBlockExpressions = NestedBlockExpressions;
|
|
14297
|
+
exports2.NestedBlockExpression = NestedBlockExpression;
|
|
14298
|
+
exports2.BlockExpressionPart = BlockExpressionPart;
|
|
14299
|
+
exports2.IterationStatement = IterationStatement;
|
|
14300
|
+
exports2._IterationStatement = _IterationStatement;
|
|
14301
|
+
exports2.IterationExpression = IterationExpression;
|
|
14302
|
+
exports2.LoopStatement = LoopStatement;
|
|
14303
|
+
exports2.LoopClause = LoopClause;
|
|
14304
|
+
exports2.DoWhileStatement = DoWhileStatement;
|
|
14305
|
+
exports2.DoStatement = DoStatement;
|
|
14306
|
+
exports2.WhileStatement = WhileStatement;
|
|
14307
|
+
exports2.WhileClause = WhileClause;
|
|
14308
|
+
exports2.ForStatement = ForStatement;
|
|
14309
|
+
exports2.ForClause = ForClause;
|
|
14310
|
+
exports2.ForStatementControl = ForStatementControl;
|
|
14311
|
+
exports2.WhenCondition = WhenCondition;
|
|
14312
|
+
exports2.CoffeeForStatementParameters = CoffeeForStatementParameters;
|
|
14313
|
+
exports2.CoffeeForIndex = CoffeeForIndex;
|
|
14314
|
+
exports2.CoffeeForDeclaration = CoffeeForDeclaration;
|
|
14315
|
+
exports2.ForStatementParameters = ForStatementParameters;
|
|
14316
|
+
exports2.ForRangeParameters = ForRangeParameters;
|
|
14317
|
+
exports2.ForInOfDeclaration = ForInOfDeclaration;
|
|
14318
|
+
exports2.ForDeclaration = ForDeclaration;
|
|
14319
|
+
exports2.ForBinding = ForBinding;
|
|
14320
|
+
exports2.SwitchStatement = SwitchStatement;
|
|
14321
|
+
exports2.EmptyCondition = EmptyCondition;
|
|
14322
|
+
exports2.SwitchExpression = SwitchExpression;
|
|
14323
|
+
exports2.CaseBlock = CaseBlock;
|
|
14324
|
+
exports2.NestedCaseClauses = NestedCaseClauses;
|
|
14325
|
+
exports2.NestedCaseClause = NestedCaseClause;
|
|
14326
|
+
exports2.CaseClause = CaseClause;
|
|
14327
|
+
exports2.PatternExpressionList = PatternExpressionList;
|
|
14328
|
+
exports2.ConditionFragment = ConditionFragment;
|
|
14329
|
+
exports2.CaseExpressionList = CaseExpressionList;
|
|
14330
|
+
exports2.CaseExpression = CaseExpression;
|
|
14331
|
+
exports2.ImpliedColon = ImpliedColon;
|
|
14332
|
+
exports2.IgnoreColon = IgnoreColon;
|
|
14333
|
+
exports2.TryStatement = TryStatement;
|
|
14334
|
+
exports2.TryExpression = TryExpression;
|
|
14335
|
+
exports2.CatchClause = CatchClause;
|
|
14336
|
+
exports2.CatchBind = CatchBind;
|
|
14337
|
+
exports2.FinallyClause = FinallyClause;
|
|
14338
|
+
exports2.CatchParameter = CatchParameter;
|
|
14339
|
+
exports2.Condition = Condition;
|
|
14340
|
+
exports2.DeclarationCondition = DeclarationCondition;
|
|
14341
|
+
exports2.ExpressionWithIndentedApplicationForbidden = ExpressionWithIndentedApplicationForbidden;
|
|
14342
|
+
exports2.SingleLineExpressionWithIndentedApplicationForbidden = SingleLineExpressionWithIndentedApplicationForbidden;
|
|
14343
|
+
exports2.ExpressionWithObjectApplicationForbidden = ExpressionWithObjectApplicationForbidden;
|
|
14344
|
+
exports2.LeftHandSideExpressionWithObjectApplicationForbidden = LeftHandSideExpressionWithObjectApplicationForbidden;
|
|
14345
|
+
exports2.ForbidClassImplicitCall = ForbidClassImplicitCall;
|
|
14346
|
+
exports2.AllowClassImplicitCall = AllowClassImplicitCall;
|
|
14347
|
+
exports2.RestoreClassImplicitCall = RestoreClassImplicitCall;
|
|
14348
|
+
exports2.ClassImplicitCallForbidden = ClassImplicitCallForbidden;
|
|
14349
|
+
exports2.ForbidBracedApplication = ForbidBracedApplication;
|
|
14350
|
+
exports2.AllowBracedApplication = AllowBracedApplication;
|
|
14351
|
+
exports2.RestoreBracedApplication = RestoreBracedApplication;
|
|
14352
|
+
exports2.BracedApplicationAllowed = BracedApplicationAllowed;
|
|
14353
|
+
exports2.ForbidIndentedApplication = ForbidIndentedApplication;
|
|
14354
|
+
exports2.AllowIndentedApplication = AllowIndentedApplication;
|
|
14355
|
+
exports2.RestoreIndentedApplication = RestoreIndentedApplication;
|
|
14356
|
+
exports2.IndentedApplicationAllowed = IndentedApplicationAllowed;
|
|
14357
|
+
exports2.ForbidTrailingMemberProperty = ForbidTrailingMemberProperty;
|
|
14358
|
+
exports2.AllowTrailingMemberProperty = AllowTrailingMemberProperty;
|
|
14359
|
+
exports2.RestoreTrailingMemberProperty = RestoreTrailingMemberProperty;
|
|
14360
|
+
exports2.TrailingMemberPropertyAllowed = TrailingMemberPropertyAllowed;
|
|
14361
|
+
exports2.AllowNewlineBinaryOp = AllowNewlineBinaryOp;
|
|
14362
|
+
exports2.ForbidNewlineBinaryOp = ForbidNewlineBinaryOp;
|
|
14363
|
+
exports2.RestoreNewlineBinaryOp = RestoreNewlineBinaryOp;
|
|
14364
|
+
exports2.NewlineBinaryOpAllowed = NewlineBinaryOpAllowed;
|
|
14365
|
+
exports2.AllowAll = AllowAll;
|
|
14366
|
+
exports2.RestoreAll = RestoreAll;
|
|
14367
|
+
exports2.CommaExpressionStatement = CommaExpressionStatement;
|
|
14368
|
+
exports2.ExpressionStatement = ExpressionStatement;
|
|
14369
|
+
exports2.KeywordStatement = KeywordStatement;
|
|
14370
|
+
exports2.DebuggerStatement = DebuggerStatement;
|
|
14371
|
+
exports2.ThrowStatement = ThrowStatement;
|
|
14372
|
+
exports2.Break = Break;
|
|
14373
|
+
exports2.Continue = Continue;
|
|
14374
|
+
exports2.Debugger = Debugger;
|
|
14375
|
+
exports2.DebuggerExpression = DebuggerExpression;
|
|
14376
|
+
exports2.ThrowExpression = ThrowExpression;
|
|
14377
|
+
exports2.MaybeNestedExpression = MaybeNestedExpression;
|
|
14378
|
+
exports2.ImportDeclaration = ImportDeclaration;
|
|
14379
|
+
exports2.ImpliedImport = ImpliedImport;
|
|
14380
|
+
exports2.ImportClause = ImportClause;
|
|
14381
|
+
exports2.NameSpaceImport = NameSpaceImport;
|
|
14382
|
+
exports2.NamedImports = NamedImports;
|
|
14383
|
+
exports2.FromClause = FromClause;
|
|
14384
|
+
exports2.ImportAssertion = ImportAssertion;
|
|
14385
|
+
exports2.TypeAndImportSpecifier = TypeAndImportSpecifier;
|
|
14386
|
+
exports2.ImportSpecifier = ImportSpecifier;
|
|
14387
|
+
exports2.ImportAsToken = ImportAsToken;
|
|
14388
|
+
exports2.ModuleExportName = ModuleExportName;
|
|
14389
|
+
exports2.ModuleSpecifier = ModuleSpecifier;
|
|
14390
|
+
exports2.UnprocessedModuleSpecifier = UnprocessedModuleSpecifier;
|
|
14391
|
+
exports2.UnquotedSpecifier = UnquotedSpecifier;
|
|
14392
|
+
exports2.ImportedBinding = ImportedBinding;
|
|
14393
|
+
exports2.ExportDeclaration = ExportDeclaration;
|
|
14394
|
+
exports2.ExportVarDec = ExportVarDec;
|
|
14395
|
+
exports2.ExportFromClause = ExportFromClause;
|
|
14396
|
+
exports2.TypeAndNamedExports = TypeAndNamedExports;
|
|
14397
|
+
exports2.NamedExports = NamedExports;
|
|
14398
|
+
exports2.ExportSpecifier = ExportSpecifier;
|
|
14399
|
+
exports2.ImplicitExportSpecifier = ImplicitExportSpecifier;
|
|
14400
|
+
exports2.Declaration = Declaration;
|
|
14401
|
+
exports2.HoistableDeclaration = HoistableDeclaration;
|
|
14402
|
+
exports2.LexicalDeclaration = LexicalDeclaration;
|
|
14403
|
+
exports2.ConstAssignment = ConstAssignment;
|
|
14404
|
+
exports2.LetAssignment = LetAssignment;
|
|
14405
|
+
exports2.LexicalBinding = LexicalBinding;
|
|
14406
|
+
exports2.Initializer = Initializer;
|
|
14407
|
+
exports2.VariableStatement = VariableStatement;
|
|
14408
|
+
exports2.VariableDeclarationList = VariableDeclarationList;
|
|
14409
|
+
exports2.NumericLiteral = NumericLiteral;
|
|
14410
|
+
exports2.NumericLiteralKind = NumericLiteralKind;
|
|
14411
|
+
exports2.DecimalBigIntegerLiteral = DecimalBigIntegerLiteral;
|
|
14412
|
+
exports2.DecimalLiteral = DecimalLiteral;
|
|
14413
|
+
exports2.ExponentPart = ExponentPart;
|
|
14414
|
+
exports2.BinaryIntegerLiteral = BinaryIntegerLiteral;
|
|
14415
|
+
exports2.OctalIntegerLiteral = OctalIntegerLiteral;
|
|
14416
|
+
exports2.HexIntegerLiteral = HexIntegerLiteral;
|
|
14417
|
+
exports2.IntegerLiteral = IntegerLiteral;
|
|
14418
|
+
exports2.IntegerLiteralKind = IntegerLiteralKind;
|
|
14419
|
+
exports2.DecimalIntegerLiteral = DecimalIntegerLiteral;
|
|
14420
|
+
exports2.StringLiteral = StringLiteral;
|
|
14421
|
+
exports2.DoubleStringCharacters = DoubleStringCharacters;
|
|
14422
|
+
exports2.SingleStringCharacters = SingleStringCharacters;
|
|
14423
|
+
exports2.TripleDoubleStringCharacters = TripleDoubleStringCharacters;
|
|
14424
|
+
exports2.TripleSingleStringCharacters = TripleSingleStringCharacters;
|
|
14425
|
+
exports2.CoffeeStringSubstitution = CoffeeStringSubstitution;
|
|
14426
|
+
exports2.CoffeeInterpolatedDoubleQuotedString = CoffeeInterpolatedDoubleQuotedString;
|
|
14427
|
+
exports2.CoffeeDoubleQuotedStringCharacters = CoffeeDoubleQuotedStringCharacters;
|
|
14428
|
+
exports2.RegularExpressionLiteral = RegularExpressionLiteral;
|
|
14429
|
+
exports2.RegularExpressionClass = RegularExpressionClass;
|
|
14430
|
+
exports2.RegularExpressionClassCharacters = RegularExpressionClassCharacters;
|
|
14431
|
+
exports2.HeregexLiteral = HeregexLiteral;
|
|
14432
|
+
exports2.HeregexBody = HeregexBody;
|
|
14433
|
+
exports2.HeregexPart = HeregexPart;
|
|
14434
|
+
exports2.HeregexComment = HeregexComment;
|
|
14435
|
+
exports2.RegularExpressionBody = RegularExpressionBody;
|
|
14436
|
+
exports2.RegExpPart = RegExpPart;
|
|
14437
|
+
exports2.RegExpCharacter = RegExpCharacter;
|
|
14438
|
+
exports2.RegularExpressionFlags = RegularExpressionFlags;
|
|
14439
|
+
exports2.TemplateLiteral = TemplateLiteral;
|
|
14440
|
+
exports2._TemplateLiteral = _TemplateLiteral;
|
|
14441
|
+
exports2.TemplateSubstitution = TemplateSubstitution;
|
|
14442
|
+
exports2.TemplateCharacters = TemplateCharacters;
|
|
14443
|
+
exports2.TemplateBlockCharacters = TemplateBlockCharacters;
|
|
14444
|
+
exports2.ReservedWord = ReservedWord;
|
|
14445
|
+
exports2.Comment = Comment;
|
|
14446
|
+
exports2._Comment = _Comment;
|
|
14447
|
+
exports2.SingleLineComment = SingleLineComment;
|
|
14448
|
+
exports2.JSSingleLineComment = JSSingleLineComment;
|
|
14449
|
+
exports2.MultiLineComment = MultiLineComment;
|
|
14450
|
+
exports2.JSMultiLineComment = JSMultiLineComment;
|
|
14451
|
+
exports2.CoffeeSingleLineComment = CoffeeSingleLineComment;
|
|
14452
|
+
exports2.CoffeeMultiLineComment = CoffeeMultiLineComment;
|
|
14453
|
+
exports2.CoffeeHereCommentStart = CoffeeHereCommentStart;
|
|
14454
|
+
exports2.InlineComment = InlineComment;
|
|
14455
|
+
exports2.RestOfLine = RestOfLine;
|
|
14456
|
+
exports2.TrailingComment = TrailingComment;
|
|
14457
|
+
exports2._ = _;
|
|
14458
|
+
exports2.NonNewlineWhitespace = NonNewlineWhitespace;
|
|
14459
|
+
exports2.Trimmed_ = Trimmed_;
|
|
14460
|
+
exports2.__ = __;
|
|
14461
|
+
exports2.Whitespace = Whitespace;
|
|
14462
|
+
exports2.ExpressionDelimiter = ExpressionDelimiter;
|
|
14463
|
+
exports2.SimpleStatementDelimiter = SimpleStatementDelimiter;
|
|
14464
|
+
exports2.StatementDelimiter = StatementDelimiter;
|
|
14465
|
+
exports2.SemicolonDelimiter = SemicolonDelimiter;
|
|
14466
|
+
exports2.NonIdContinue = NonIdContinue;
|
|
14467
|
+
exports2.Loc = Loc;
|
|
14468
|
+
exports2.Abstract = Abstract;
|
|
14469
|
+
exports2.Ampersand = Ampersand;
|
|
14470
|
+
exports2.As = As;
|
|
14471
|
+
exports2.At = At;
|
|
14472
|
+
exports2.AtAt = AtAt;
|
|
14473
|
+
exports2.Async = Async;
|
|
14474
|
+
exports2.Await = Await;
|
|
14475
|
+
exports2.Backtick = Backtick;
|
|
14476
|
+
exports2.By = By;
|
|
14477
|
+
exports2.Caret = Caret;
|
|
14478
|
+
exports2.Case = Case;
|
|
14479
|
+
exports2.Catch = Catch;
|
|
14480
|
+
exports2.Class = Class;
|
|
14481
|
+
exports2.CloseAngleBracket = CloseAngleBracket;
|
|
14482
|
+
exports2.CloseBrace = CloseBrace;
|
|
14483
|
+
exports2.CloseBracket = CloseBracket;
|
|
14484
|
+
exports2.CloseParen = CloseParen;
|
|
14485
|
+
exports2.CoffeeSubstitutionStart = CoffeeSubstitutionStart;
|
|
14486
|
+
exports2.Colon = Colon;
|
|
14487
|
+
exports2.Comma = Comma;
|
|
14488
|
+
exports2.ConstructorShorthand = ConstructorShorthand;
|
|
14489
|
+
exports2.Declare = Declare;
|
|
14490
|
+
exports2.Default = Default;
|
|
14491
|
+
exports2.Delete = Delete;
|
|
14492
|
+
exports2.Do = Do;
|
|
14493
|
+
exports2.Dot = Dot;
|
|
14494
|
+
exports2.DotDot = DotDot;
|
|
14495
|
+
exports2.DotDotDot = DotDotDot;
|
|
14496
|
+
exports2.DoubleColon = DoubleColon;
|
|
14497
|
+
exports2.DoubleQuote = DoubleQuote;
|
|
14498
|
+
exports2.Each = Each;
|
|
14499
|
+
exports2.Else = Else;
|
|
14500
|
+
exports2.Equals = Equals;
|
|
14501
|
+
exports2.ExclamationPoint = ExclamationPoint;
|
|
14502
|
+
exports2.Export = Export;
|
|
14503
|
+
exports2.Extends = Extends;
|
|
14504
|
+
exports2.Finally = Finally;
|
|
14505
|
+
exports2.For = For;
|
|
14506
|
+
exports2.From = From;
|
|
14507
|
+
exports2.Function = Function;
|
|
14508
|
+
exports2.GetOrSet = GetOrSet;
|
|
14509
|
+
exports2.Hash = Hash;
|
|
14510
|
+
exports2.If = If;
|
|
14511
|
+
exports2.Import = Import;
|
|
14512
|
+
exports2.In = In;
|
|
14513
|
+
exports2.LetOrConst = LetOrConst;
|
|
14514
|
+
exports2.Const = Const;
|
|
14515
|
+
exports2.Is = Is;
|
|
14516
|
+
exports2.LetOrConstOrVar = LetOrConstOrVar;
|
|
14517
|
+
exports2.Loop = Loop;
|
|
14518
|
+
exports2.New = New;
|
|
14519
|
+
exports2.Not = Not;
|
|
14520
|
+
exports2.Of = Of;
|
|
14521
|
+
exports2.OpenAngleBracket = OpenAngleBracket;
|
|
14522
|
+
exports2.OpenBrace = OpenBrace;
|
|
14523
|
+
exports2.OpenBracket = OpenBracket;
|
|
14524
|
+
exports2.OpenParen = OpenParen;
|
|
14525
|
+
exports2.Operator = Operator;
|
|
14526
|
+
exports2.Own = Own;
|
|
14527
|
+
exports2.Public = Public;
|
|
14528
|
+
exports2.Private = Private;
|
|
14529
|
+
exports2.Protected = Protected;
|
|
14530
|
+
exports2.Pipe = Pipe;
|
|
14531
|
+
exports2.QuestionMark = QuestionMark;
|
|
14532
|
+
exports2.Readonly = Readonly;
|
|
14533
|
+
exports2.Return = Return;
|
|
14534
|
+
exports2.Satisfies = Satisfies;
|
|
14535
|
+
exports2.Semicolon = Semicolon;
|
|
14536
|
+
exports2.SingleQuote = SingleQuote;
|
|
14537
|
+
exports2.Star = Star;
|
|
14538
|
+
exports2.Static = Static;
|
|
14539
|
+
exports2.SubstitutionStart = SubstitutionStart;
|
|
14540
|
+
exports2.Super = Super;
|
|
14541
|
+
exports2.Switch = Switch;
|
|
14542
|
+
exports2.Target = Target;
|
|
14543
|
+
exports2.Then = Then;
|
|
14544
|
+
exports2.This = This;
|
|
14545
|
+
exports2.Throw = Throw;
|
|
14546
|
+
exports2.TripleDoubleQuote = TripleDoubleQuote;
|
|
14547
|
+
exports2.TripleSingleQuote = TripleSingleQuote;
|
|
14548
|
+
exports2.TripleSlash = TripleSlash;
|
|
14549
|
+
exports2.TripleTick = TripleTick;
|
|
14550
|
+
exports2.Try = Try;
|
|
14551
|
+
exports2.Typeof = Typeof;
|
|
14552
|
+
exports2.Unless = Unless;
|
|
14553
|
+
exports2.Until = Until;
|
|
14554
|
+
exports2.Using = Using;
|
|
14555
|
+
exports2.Var = Var;
|
|
14556
|
+
exports2.Void = Void;
|
|
14557
|
+
exports2.When = When;
|
|
14558
|
+
exports2.While = While;
|
|
14559
|
+
exports2.Yield = Yield;
|
|
14560
|
+
exports2.JSXImplicitFragment = JSXImplicitFragment;
|
|
14561
|
+
exports2.JSXTag = JSXTag;
|
|
14562
|
+
exports2._JSXTag = _JSXTag;
|
|
14563
|
+
exports2.JSXElement = JSXElement;
|
|
14564
|
+
exports2.JSXSelfClosingElement = JSXSelfClosingElement;
|
|
14565
|
+
exports2.PushJSXOpeningElement = PushJSXOpeningElement;
|
|
14566
|
+
exports2.PopJSXStack = PopJSXStack;
|
|
14567
|
+
exports2.JSXOpeningElement = JSXOpeningElement;
|
|
14568
|
+
exports2.JSXOptionalClosingElement = JSXOptionalClosingElement;
|
|
14569
|
+
exports2.JSXClosingElement = JSXClosingElement;
|
|
14570
|
+
exports2.JSXFragment = JSXFragment;
|
|
14571
|
+
exports2.PushJSXOpeningFragment = PushJSXOpeningFragment;
|
|
14572
|
+
exports2.JSXOptionalClosingFragment = JSXOptionalClosingFragment;
|
|
14573
|
+
exports2.JSXClosingFragment = JSXClosingFragment;
|
|
14574
|
+
exports2.JSXElementName = JSXElementName;
|
|
14575
|
+
exports2.JSXIdentifierName = JSXIdentifierName;
|
|
14576
|
+
exports2.JSXAttributes = JSXAttributes;
|
|
14577
|
+
exports2.JSXAttribute = JSXAttribute;
|
|
14578
|
+
exports2.JSXAttributeSpace = JSXAttributeSpace;
|
|
14579
|
+
exports2.JSXShorthandString = JSXShorthandString;
|
|
14580
|
+
exports2.JSXAttributeName = JSXAttributeName;
|
|
14581
|
+
exports2.JSXAttributeInitializer = JSXAttributeInitializer;
|
|
14582
|
+
exports2.JSXAttributeValue = JSXAttributeValue;
|
|
14583
|
+
exports2.InlineJSXAttributeValue = InlineJSXAttributeValue;
|
|
14584
|
+
exports2.InlineJSXBinaryOpRHS = InlineJSXBinaryOpRHS;
|
|
14585
|
+
exports2.InlineJSXUnaryExpression = InlineJSXUnaryExpression;
|
|
14586
|
+
exports2.InlineJSXUnaryOp = InlineJSXUnaryOp;
|
|
14587
|
+
exports2.InlineJSXUnaryPostfix = InlineJSXUnaryPostfix;
|
|
14588
|
+
exports2.InlineJSXUpdateExpression = InlineJSXUpdateExpression;
|
|
14589
|
+
exports2.InlineJSXCallExpression = InlineJSXCallExpression;
|
|
14590
|
+
exports2.InlineJSXCallExpressionRest = InlineJSXCallExpressionRest;
|
|
14591
|
+
exports2.InlineJSXMemberExpression = InlineJSXMemberExpression;
|
|
14592
|
+
exports2.InlineJSXMemberExpressionRest = InlineJSXMemberExpressionRest;
|
|
14593
|
+
exports2.InlineJSXPrimaryExpression = InlineJSXPrimaryExpression;
|
|
14594
|
+
exports2.JSXMixedChildren = JSXMixedChildren;
|
|
14595
|
+
exports2.JSXChildren = JSXChildren;
|
|
14596
|
+
exports2.JSXNestedChildren = JSXNestedChildren;
|
|
14597
|
+
exports2.JSXEOS = JSXEOS;
|
|
14598
|
+
exports2.JSXNested = JSXNested;
|
|
14599
|
+
exports2.JSXChild = JSXChild;
|
|
14600
|
+
exports2.JSXComment = JSXComment;
|
|
14601
|
+
exports2.JSXCommentContent = JSXCommentContent;
|
|
14602
|
+
exports2.JSXText = JSXText;
|
|
14603
|
+
exports2.JSXChildExpression = JSXChildExpression;
|
|
14604
|
+
exports2.IndentedJSXChildExpression = IndentedJSXChildExpression;
|
|
14605
|
+
exports2.NestedJSXChildExpression = NestedJSXChildExpression;
|
|
14606
|
+
exports2.UsingDeclaration = UsingDeclaration;
|
|
14607
|
+
exports2.UsingBinding = UsingBinding;
|
|
14608
|
+
exports2.UsingJSModeError = UsingJSModeError;
|
|
14609
|
+
exports2.TypeDeclaration = TypeDeclaration;
|
|
14610
|
+
exports2.TypeDeclarationRest = TypeDeclarationRest;
|
|
14611
|
+
exports2.OptionalEquals = OptionalEquals;
|
|
14612
|
+
exports2.TypeLexicalDeclaration = TypeLexicalDeclaration;
|
|
14613
|
+
exports2.TypeDeclarationBinding = TypeDeclarationBinding;
|
|
14614
|
+
exports2.InterfaceExtendsClause = InterfaceExtendsClause;
|
|
14615
|
+
exports2.InterfaceExtendsTarget = InterfaceExtendsTarget;
|
|
14616
|
+
exports2.TypeKeyword = TypeKeyword;
|
|
14617
|
+
exports2.Enum = Enum;
|
|
14618
|
+
exports2.Interface = Interface;
|
|
14619
|
+
exports2.Global = Global;
|
|
14620
|
+
exports2.Module = Module;
|
|
14621
|
+
exports2.Namespace = Namespace;
|
|
14622
|
+
exports2.InterfaceBlock = InterfaceBlock;
|
|
14623
|
+
exports2.NestedInterfaceProperties = NestedInterfaceProperties;
|
|
14624
|
+
exports2.NestedInterfaceProperty = NestedInterfaceProperty;
|
|
14625
|
+
exports2.InterfaceProperty = InterfaceProperty;
|
|
14626
|
+
exports2.BasicInterfaceProperty = BasicInterfaceProperty;
|
|
14627
|
+
exports2.InterfacePropertyDelimiter = InterfacePropertyDelimiter;
|
|
14628
|
+
exports2.ModuleBlock = ModuleBlock;
|
|
14629
|
+
exports2.NestedModuleItems = NestedModuleItems;
|
|
14630
|
+
exports2.NestedModuleItem = NestedModuleItem;
|
|
14631
|
+
exports2.DeclareBlock = DeclareBlock;
|
|
14632
|
+
exports2.NestedDeclareElements = NestedDeclareElements;
|
|
14633
|
+
exports2.NestedDeclareElement = NestedDeclareElement;
|
|
14634
|
+
exports2.DeclareElement = DeclareElement;
|
|
14635
|
+
exports2.EnumDeclaration = EnumDeclaration;
|
|
14636
|
+
exports2.EnumBlock = EnumBlock;
|
|
14637
|
+
exports2.NestedEnumProperties = NestedEnumProperties;
|
|
14638
|
+
exports2.NestedEnumProperty = NestedEnumProperty;
|
|
14639
|
+
exports2.EnumProperty = EnumProperty;
|
|
14640
|
+
exports2.TypeProperty = TypeProperty;
|
|
14641
|
+
exports2.TypeIndexSignature = TypeIndexSignature;
|
|
14642
|
+
exports2.TypeIndex = TypeIndex;
|
|
14643
|
+
exports2.TypeSuffix = TypeSuffix;
|
|
14644
|
+
exports2.MaybeIndentedType = MaybeIndentedType;
|
|
14645
|
+
exports2.ReturnTypeSuffix = ReturnTypeSuffix;
|
|
14646
|
+
exports2.ReturnType = ReturnType;
|
|
14647
|
+
exports2.TypePredicate = TypePredicate;
|
|
14648
|
+
exports2.Type = Type;
|
|
14649
|
+
exports2.TypeBinary = TypeBinary;
|
|
14650
|
+
exports2.TypeUnary = TypeUnary;
|
|
14651
|
+
exports2.TypeUnarySuffix = TypeUnarySuffix;
|
|
14652
|
+
exports2.TypeUnaryOp = TypeUnaryOp;
|
|
14653
|
+
exports2.TypeIndexedAccess = TypeIndexedAccess;
|
|
14654
|
+
exports2.UnknownAlias = UnknownAlias;
|
|
14655
|
+
exports2.TypePrimary = TypePrimary;
|
|
14656
|
+
exports2.ImportType = ImportType;
|
|
14657
|
+
exports2.TypeTuple = TypeTuple;
|
|
14658
|
+
exports2.TypeList = TypeList;
|
|
14659
|
+
exports2.TypeElement = TypeElement;
|
|
14660
|
+
exports2.NestedTypeList = NestedTypeList;
|
|
14661
|
+
exports2.NestedType = NestedType;
|
|
14662
|
+
exports2.TypeConditional = TypeConditional;
|
|
14663
|
+
exports2.TypeCondition = TypeCondition;
|
|
14664
|
+
exports2.TypeIfThenElse = TypeIfThenElse;
|
|
14665
|
+
exports2.TypeElse = TypeElse;
|
|
14666
|
+
exports2.TypeBlock = TypeBlock;
|
|
14667
|
+
exports2.TypeTemplateSubstitution = TypeTemplateSubstitution;
|
|
14668
|
+
exports2.TypeTemplateLiteral = TypeTemplateLiteral;
|
|
14669
|
+
exports2.CoffeeStringTypeSubstitution = CoffeeStringTypeSubstitution;
|
|
14670
|
+
exports2.CoffeeInterpolatedDoubleQuotedTypeLiteral = CoffeeInterpolatedDoubleQuotedTypeLiteral;
|
|
14671
|
+
exports2.TypeLiteral = TypeLiteral;
|
|
14672
|
+
exports2.InlineInterfaceLiteral = InlineInterfaceLiteral;
|
|
14673
|
+
exports2.InlineBasicInterfaceProperty = InlineBasicInterfaceProperty;
|
|
14674
|
+
exports2.InlineInterfacePropertyDelimiter = InlineInterfacePropertyDelimiter;
|
|
14675
|
+
exports2.TypeBinaryOp = TypeBinaryOp;
|
|
14676
|
+
exports2.FunctionType = FunctionType;
|
|
14677
|
+
exports2.TypeArrowFunction = TypeArrowFunction;
|
|
14678
|
+
exports2.TypeArguments = TypeArguments;
|
|
14679
|
+
exports2.TypeArgument = TypeArgument;
|
|
14680
|
+
exports2.TypeArgumentDelimiter = TypeArgumentDelimiter;
|
|
14681
|
+
exports2.TypeParameters = TypeParameters;
|
|
14682
|
+
exports2.TypeParameter = TypeParameter;
|
|
14683
|
+
exports2.TypeConstraint = TypeConstraint;
|
|
14684
|
+
exports2.TypeInitializer = TypeInitializer;
|
|
14685
|
+
exports2.TypeParameterDelimiter = TypeParameterDelimiter;
|
|
14686
|
+
exports2.ThisType = ThisType;
|
|
14687
|
+
exports2.Shebang = Shebang;
|
|
14688
|
+
exports2.CivetPrologue = CivetPrologue;
|
|
14689
|
+
exports2.CivetPrologueContent = CivetPrologueContent;
|
|
14690
|
+
exports2.CivetOption = CivetOption;
|
|
14691
|
+
exports2.UnknownPrologue = UnknownPrologue;
|
|
14692
|
+
exports2.TripleSlashDirective = TripleSlashDirective;
|
|
14693
|
+
exports2.DirectivePrologue = DirectivePrologue;
|
|
14694
|
+
exports2.PrologueString = PrologueString;
|
|
14695
|
+
exports2.EOS = EOS;
|
|
14696
|
+
exports2.EOL = EOL;
|
|
14697
|
+
exports2.DebugHere = DebugHere;
|
|
14698
|
+
exports2.InsertColon = InsertColon;
|
|
14699
|
+
exports2.InsertSemicolon = InsertSemicolon;
|
|
14700
|
+
exports2.InsertOpenParen = InsertOpenParen;
|
|
14701
|
+
exports2.InsertCloseParen = InsertCloseParen;
|
|
14702
|
+
exports2.InsertOpenBrace = InsertOpenBrace;
|
|
14703
|
+
exports2.InsertInlineOpenBrace = InsertInlineOpenBrace;
|
|
14704
|
+
exports2.InsertCloseBrace = InsertCloseBrace;
|
|
14705
|
+
exports2.InsertOpenBracket = InsertOpenBracket;
|
|
14706
|
+
exports2.InsertCloseBracket = InsertCloseBracket;
|
|
14707
|
+
exports2.InsertComma = InsertComma;
|
|
14708
|
+
exports2.InsertSpaceEquals = InsertSpaceEquals;
|
|
14709
|
+
exports2.InsertConst = InsertConst;
|
|
14710
|
+
exports2.InsertLet = InsertLet;
|
|
14711
|
+
exports2.InsertReadonly = InsertReadonly;
|
|
14712
|
+
exports2.InsertNewline = InsertNewline;
|
|
14713
|
+
exports2.InsertIndent = InsertIndent;
|
|
14714
|
+
exports2.InsertSpace = InsertSpace;
|
|
14715
|
+
exports2.InsertDot = InsertDot;
|
|
14716
|
+
exports2.InsertBreak = InsertBreak;
|
|
14717
|
+
exports2.InsertVar = InsertVar;
|
|
14718
|
+
exports2.CoffeeBinaryExistentialEnabled = CoffeeBinaryExistentialEnabled;
|
|
14719
|
+
exports2.CoffeeBooleansEnabled = CoffeeBooleansEnabled;
|
|
14720
|
+
exports2.CoffeeClassesEnabled = CoffeeClassesEnabled;
|
|
14721
|
+
exports2.CoffeeCommentEnabled = CoffeeCommentEnabled;
|
|
14722
|
+
exports2.CoffeeDoEnabled = CoffeeDoEnabled;
|
|
14723
|
+
exports2.CoffeeForLoopsEnabled = CoffeeForLoopsEnabled;
|
|
14724
|
+
exports2.CoffeeInterpolationEnabled = CoffeeInterpolationEnabled;
|
|
14725
|
+
exports2.CoffeeIsntEnabled = CoffeeIsntEnabled;
|
|
14726
|
+
exports2.CoffeeJSXEnabled = CoffeeJSXEnabled;
|
|
14727
|
+
exports2.CoffeeLineContinuationEnabled = CoffeeLineContinuationEnabled;
|
|
14728
|
+
exports2.CoffeeNotEnabled = CoffeeNotEnabled;
|
|
14729
|
+
exports2.CoffeeOfEnabled = CoffeeOfEnabled;
|
|
14730
|
+
exports2.CoffeePrototypeEnabled = CoffeePrototypeEnabled;
|
|
14731
|
+
exports2.ObjectIsEnabled = ObjectIsEnabled;
|
|
14732
|
+
exports2.Reset = Reset;
|
|
14733
|
+
exports2.Init = Init;
|
|
14734
|
+
exports2.Indent = Indent;
|
|
14735
|
+
exports2.TrackIndented = TrackIndented;
|
|
14736
|
+
exports2.PushIndent = PushIndent;
|
|
14737
|
+
exports2.PopIndent = PopIndent;
|
|
14738
|
+
exports2.Nested = Nested;
|
|
14739
|
+
exports2.IndentedFurther = IndentedFurther;
|
|
14740
|
+
exports2.IndentedAtLeast = IndentedAtLeast;
|
|
14741
|
+
exports2.NotDedented = NotDedented;
|
|
14742
|
+
exports2.Dedented = Dedented;
|
|
14683
14743
|
var module2 = {};
|
|
14684
14744
|
}
|
|
14685
14745
|
});
|
|
@@ -14721,7 +14781,7 @@ function gen(node, options) {
|
|
|
14721
14781
|
return "";
|
|
14722
14782
|
}
|
|
14723
14783
|
if (node.type === "Error") {
|
|
14724
|
-
options.errors
|
|
14784
|
+
options.errors ??= [];
|
|
14725
14785
|
options.errors.push(node);
|
|
14726
14786
|
return "";
|
|
14727
14787
|
}
|
|
@@ -15118,9 +15178,7 @@ remapPosition = function(position, sourcemapLines) {
|
|
|
15118
15178
|
|
|
15119
15179
|
// source/state-cache.civet
|
|
15120
15180
|
var StateCache = class {
|
|
15121
|
-
|
|
15122
|
-
__publicField(this, "cache", /* @__PURE__ */ new Map());
|
|
15123
|
-
}
|
|
15181
|
+
cache = /* @__PURE__ */ new Map();
|
|
15124
15182
|
get(key) {
|
|
15125
15183
|
return this.cache.get(key[0])?.get(key[1])?.get(key[2])?.get(key[3]);
|
|
15126
15184
|
}
|
|
@@ -15206,7 +15264,7 @@ function compile(src, options) {
|
|
|
15206
15264
|
} else {
|
|
15207
15265
|
options = { ...options };
|
|
15208
15266
|
}
|
|
15209
|
-
options.parseOptions
|
|
15267
|
+
options.parseOptions ??= {};
|
|
15210
15268
|
const filename = options.filename || "unknown";
|
|
15211
15269
|
if (filename.endsWith(".coffee") && !/^(#![^\r\n]*(\r\n|\n|\r))?\s*['"]civet/.test(src)) {
|
|
15212
15270
|
options.parseOptions.coffeeCompat = true;
|