@dxos/vendor-hyperformula 0.8.4-main.1da679c → 0.8.4-main.e098934
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/lib/browser/hyperformula.mjs +122 -122
- package/dist/lib/browser/hyperformula.mjs.map +1 -1
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/node-esm/hyperformula.mjs +122 -122
- package/dist/lib/node-esm/hyperformula.mjs.map +1 -1
- package/dist/lib/node-esm/meta.json +1 -1
- package/package.json +1 -1
|
@@ -1474,7 +1474,7 @@ var init_reg_exp = __esm({
|
|
|
1474
1474
|
init_utils();
|
|
1475
1475
|
init_reg_exp_parser();
|
|
1476
1476
|
init_lexer();
|
|
1477
|
-
__extends = /* @__PURE__ */
|
|
1477
|
+
__extends = /* @__PURE__ */ function() {
|
|
1478
1478
|
var extendStatics = function(d, b) {
|
|
1479
1479
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
1480
1480
|
d2.__proto__ = b2;
|
|
@@ -1490,11 +1490,11 @@ var init_reg_exp = __esm({
|
|
|
1490
1490
|
}
|
|
1491
1491
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
1492
1492
|
};
|
|
1493
|
-
}
|
|
1493
|
+
}();
|
|
1494
1494
|
complementErrorMessage = "Complement Sets are not supported for first char optimization";
|
|
1495
1495
|
failedOptimizationPrefixMsg = 'Unable to use "first char" lexer optimizations:\n';
|
|
1496
1496
|
CharCodeFinder = /** @class */
|
|
1497
|
-
|
|
1497
|
+
function(_super) {
|
|
1498
1498
|
__extends(CharCodeFinder2, _super);
|
|
1499
1499
|
function CharCodeFinder2(targetCharCodes) {
|
|
1500
1500
|
var _this = _super.call(this) || this;
|
|
@@ -1533,7 +1533,7 @@ var init_reg_exp = __esm({
|
|
|
1533
1533
|
}
|
|
1534
1534
|
};
|
|
1535
1535
|
return CharCodeFinder2;
|
|
1536
|
-
}
|
|
1536
|
+
}(import_regexp_to_ast2.BaseRegExpVisitor);
|
|
1537
1537
|
}
|
|
1538
1538
|
});
|
|
1539
1539
|
|
|
@@ -1806,7 +1806,7 @@ function findInvalidPatterns(tokenTypes) {
|
|
|
1806
1806
|
function findEndOfInputAnchor(tokenTypes) {
|
|
1807
1807
|
var EndAnchorFinder = (
|
|
1808
1808
|
/** @class */
|
|
1809
|
-
|
|
1809
|
+
function(_super) {
|
|
1810
1810
|
__extends2(EndAnchorFinder2, _super);
|
|
1811
1811
|
function EndAnchorFinder2() {
|
|
1812
1812
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -1817,7 +1817,7 @@ function findEndOfInputAnchor(tokenTypes) {
|
|
|
1817
1817
|
this.found = true;
|
|
1818
1818
|
};
|
|
1819
1819
|
return EndAnchorFinder2;
|
|
1820
|
-
}
|
|
1820
|
+
}(import_regexp_to_ast3.BaseRegExpVisitor)
|
|
1821
1821
|
);
|
|
1822
1822
|
var invalidRegex = filter(tokenTypes, function(currType) {
|
|
1823
1823
|
var pattern = currType[PATTERN];
|
|
@@ -1856,7 +1856,7 @@ function findEmptyMatchRegExps(tokenTypes) {
|
|
|
1856
1856
|
function findStartOfInputAnchor(tokenTypes) {
|
|
1857
1857
|
var StartAnchorFinder = (
|
|
1858
1858
|
/** @class */
|
|
1859
|
-
|
|
1859
|
+
function(_super) {
|
|
1860
1860
|
__extends2(StartAnchorFinder2, _super);
|
|
1861
1861
|
function StartAnchorFinder2() {
|
|
1862
1862
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -1867,7 +1867,7 @@ function findStartOfInputAnchor(tokenTypes) {
|
|
|
1867
1867
|
this.found = true;
|
|
1868
1868
|
};
|
|
1869
1869
|
return StartAnchorFinder2;
|
|
1870
|
-
}
|
|
1870
|
+
}(import_regexp_to_ast3.BaseRegExpVisitor)
|
|
1871
1871
|
);
|
|
1872
1872
|
var invalidRegex = filter(tokenTypes, function(currType) {
|
|
1873
1873
|
var pattern = currType[PATTERN];
|
|
@@ -2212,7 +2212,7 @@ var init_lexer = __esm({
|
|
|
2212
2212
|
init_utils();
|
|
2213
2213
|
init_reg_exp();
|
|
2214
2214
|
init_reg_exp_parser();
|
|
2215
|
-
__extends2 = /* @__PURE__ */
|
|
2215
|
+
__extends2 = /* @__PURE__ */ function() {
|
|
2216
2216
|
var extendStatics = function(d, b) {
|
|
2217
2217
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
2218
2218
|
d2.__proto__ = b2;
|
|
@@ -2228,7 +2228,7 @@ var init_lexer = __esm({
|
|
|
2228
2228
|
}
|
|
2229
2229
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
2230
2230
|
};
|
|
2231
|
-
}
|
|
2231
|
+
}();
|
|
2232
2232
|
PATTERN = "PATTERN";
|
|
2233
2233
|
DEFAULT_MODE = "defaultMode";
|
|
2234
2234
|
MODES = "modes";
|
|
@@ -2425,7 +2425,7 @@ var init_lexer_public = __esm({
|
|
|
2425
2425
|
};
|
|
2426
2426
|
Object.freeze(DEFAULT_LEXER_CONFIG);
|
|
2427
2427
|
Lexer = /** @class */
|
|
2428
|
-
|
|
2428
|
+
function() {
|
|
2429
2429
|
function Lexer2(lexerDefinition, config) {
|
|
2430
2430
|
var _this = this;
|
|
2431
2431
|
if (config === void 0) {
|
|
@@ -2942,7 +2942,7 @@ var init_lexer_public = __esm({
|
|
|
2942
2942
|
Lexer2.SKIPPED = "This marks a skipped Token pattern, this means each token identified by it willbe consumed and then thrown into oblivion, this can be used to for example to completely ignore whitespace.";
|
|
2943
2943
|
Lexer2.NA = /NOT_APPLICABLE/;
|
|
2944
2944
|
return Lexer2;
|
|
2945
|
-
}
|
|
2945
|
+
}();
|
|
2946
2946
|
}
|
|
2947
2947
|
});
|
|
2948
2948
|
|
|
@@ -3123,7 +3123,7 @@ var init_gast_public = __esm({
|
|
|
3123
3123
|
"../../node_modules/.pnpm/chevrotain@6.5.0/node_modules/chevrotain/lib_esm/src/parse/grammar/gast/gast_public.js"() {
|
|
3124
3124
|
init_utils();
|
|
3125
3125
|
init_tokens_public();
|
|
3126
|
-
__extends3 = /* @__PURE__ */
|
|
3126
|
+
__extends3 = /* @__PURE__ */ function() {
|
|
3127
3127
|
var extendStatics = function(d, b) {
|
|
3128
3128
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
3129
3129
|
d2.__proto__ = b2;
|
|
@@ -3139,9 +3139,9 @@ var init_gast_public = __esm({
|
|
|
3139
3139
|
}
|
|
3140
3140
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
3141
3141
|
};
|
|
3142
|
-
}
|
|
3142
|
+
}();
|
|
3143
3143
|
AbstractProduction = /** @class */
|
|
3144
|
-
|
|
3144
|
+
function() {
|
|
3145
3145
|
function AbstractProduction2(definition) {
|
|
3146
3146
|
this.definition = definition;
|
|
3147
3147
|
}
|
|
@@ -3152,9 +3152,9 @@ var init_gast_public = __esm({
|
|
|
3152
3152
|
});
|
|
3153
3153
|
};
|
|
3154
3154
|
return AbstractProduction2;
|
|
3155
|
-
}
|
|
3155
|
+
}();
|
|
3156
3156
|
NonTerminal = /** @class */
|
|
3157
|
-
|
|
3157
|
+
function(_super) {
|
|
3158
3158
|
__extends3(NonTerminal2, _super);
|
|
3159
3159
|
function NonTerminal2(options) {
|
|
3160
3160
|
var _this = _super.call(this, []) || this;
|
|
@@ -3180,9 +3180,9 @@ var init_gast_public = __esm({
|
|
|
3180
3180
|
visitor.visit(this);
|
|
3181
3181
|
};
|
|
3182
3182
|
return NonTerminal2;
|
|
3183
|
-
}
|
|
3183
|
+
}(AbstractProduction);
|
|
3184
3184
|
Rule = /** @class */
|
|
3185
|
-
|
|
3185
|
+
function(_super) {
|
|
3186
3186
|
__extends3(Rule2, _super);
|
|
3187
3187
|
function Rule2(options) {
|
|
3188
3188
|
var _this = _super.call(this, options.definition) || this;
|
|
@@ -3193,9 +3193,9 @@ var init_gast_public = __esm({
|
|
|
3193
3193
|
return _this;
|
|
3194
3194
|
}
|
|
3195
3195
|
return Rule2;
|
|
3196
|
-
}
|
|
3196
|
+
}(AbstractProduction);
|
|
3197
3197
|
Flat = /** @class */
|
|
3198
|
-
|
|
3198
|
+
function(_super) {
|
|
3199
3199
|
__extends3(Flat2, _super);
|
|
3200
3200
|
function Flat2(options) {
|
|
3201
3201
|
var _this = _super.call(this, options.definition) || this;
|
|
@@ -3206,9 +3206,9 @@ var init_gast_public = __esm({
|
|
|
3206
3206
|
return _this;
|
|
3207
3207
|
}
|
|
3208
3208
|
return Flat2;
|
|
3209
|
-
}
|
|
3209
|
+
}(AbstractProduction);
|
|
3210
3210
|
Option = /** @class */
|
|
3211
|
-
|
|
3211
|
+
function(_super) {
|
|
3212
3212
|
__extends3(Option2, _super);
|
|
3213
3213
|
function Option2(options) {
|
|
3214
3214
|
var _this = _super.call(this, options.definition) || this;
|
|
@@ -3219,9 +3219,9 @@ var init_gast_public = __esm({
|
|
|
3219
3219
|
return _this;
|
|
3220
3220
|
}
|
|
3221
3221
|
return Option2;
|
|
3222
|
-
}
|
|
3222
|
+
}(AbstractProduction);
|
|
3223
3223
|
RepetitionMandatory = /** @class */
|
|
3224
|
-
|
|
3224
|
+
function(_super) {
|
|
3225
3225
|
__extends3(RepetitionMandatory2, _super);
|
|
3226
3226
|
function RepetitionMandatory2(options) {
|
|
3227
3227
|
var _this = _super.call(this, options.definition) || this;
|
|
@@ -3232,9 +3232,9 @@ var init_gast_public = __esm({
|
|
|
3232
3232
|
return _this;
|
|
3233
3233
|
}
|
|
3234
3234
|
return RepetitionMandatory2;
|
|
3235
|
-
}
|
|
3235
|
+
}(AbstractProduction);
|
|
3236
3236
|
RepetitionMandatoryWithSeparator = /** @class */
|
|
3237
|
-
|
|
3237
|
+
function(_super) {
|
|
3238
3238
|
__extends3(RepetitionMandatoryWithSeparator2, _super);
|
|
3239
3239
|
function RepetitionMandatoryWithSeparator2(options) {
|
|
3240
3240
|
var _this = _super.call(this, options.definition) || this;
|
|
@@ -3245,9 +3245,9 @@ var init_gast_public = __esm({
|
|
|
3245
3245
|
return _this;
|
|
3246
3246
|
}
|
|
3247
3247
|
return RepetitionMandatoryWithSeparator2;
|
|
3248
|
-
}
|
|
3248
|
+
}(AbstractProduction);
|
|
3249
3249
|
Repetition = /** @class */
|
|
3250
|
-
|
|
3250
|
+
function(_super) {
|
|
3251
3251
|
__extends3(Repetition2, _super);
|
|
3252
3252
|
function Repetition2(options) {
|
|
3253
3253
|
var _this = _super.call(this, options.definition) || this;
|
|
@@ -3258,9 +3258,9 @@ var init_gast_public = __esm({
|
|
|
3258
3258
|
return _this;
|
|
3259
3259
|
}
|
|
3260
3260
|
return Repetition2;
|
|
3261
|
-
}
|
|
3261
|
+
}(AbstractProduction);
|
|
3262
3262
|
RepetitionWithSeparator = /** @class */
|
|
3263
|
-
|
|
3263
|
+
function(_super) {
|
|
3264
3264
|
__extends3(RepetitionWithSeparator2, _super);
|
|
3265
3265
|
function RepetitionWithSeparator2(options) {
|
|
3266
3266
|
var _this = _super.call(this, options.definition) || this;
|
|
@@ -3271,9 +3271,9 @@ var init_gast_public = __esm({
|
|
|
3271
3271
|
return _this;
|
|
3272
3272
|
}
|
|
3273
3273
|
return RepetitionWithSeparator2;
|
|
3274
|
-
}
|
|
3274
|
+
}(AbstractProduction);
|
|
3275
3275
|
Alternation = /** @class */
|
|
3276
|
-
|
|
3276
|
+
function(_super) {
|
|
3277
3277
|
__extends3(Alternation2, _super);
|
|
3278
3278
|
function Alternation2(options) {
|
|
3279
3279
|
var _this = _super.call(this, options.definition) || this;
|
|
@@ -3286,9 +3286,9 @@ var init_gast_public = __esm({
|
|
|
3286
3286
|
return _this;
|
|
3287
3287
|
}
|
|
3288
3288
|
return Alternation2;
|
|
3289
|
-
}
|
|
3289
|
+
}(AbstractProduction);
|
|
3290
3290
|
Terminal = /** @class */
|
|
3291
|
-
|
|
3291
|
+
function() {
|
|
3292
3292
|
function Terminal2(options) {
|
|
3293
3293
|
this.idx = 1;
|
|
3294
3294
|
assign(this, pick(options, function(v) {
|
|
@@ -3299,7 +3299,7 @@ var init_gast_public = __esm({
|
|
|
3299
3299
|
visitor.visit(this);
|
|
3300
3300
|
};
|
|
3301
3301
|
return Terminal2;
|
|
3302
|
-
}
|
|
3302
|
+
}();
|
|
3303
3303
|
}
|
|
3304
3304
|
});
|
|
3305
3305
|
|
|
@@ -3321,7 +3321,7 @@ var init_rest = __esm({
|
|
|
3321
3321
|
init_utils();
|
|
3322
3322
|
init_gast_public();
|
|
3323
3323
|
RestWalker = /** @class */
|
|
3324
|
-
|
|
3324
|
+
function() {
|
|
3325
3325
|
function RestWalker2() {
|
|
3326
3326
|
}
|
|
3327
3327
|
RestWalker2.prototype.walk = function(prod, prevRest) {
|
|
@@ -3395,7 +3395,7 @@ var init_rest = __esm({
|
|
|
3395
3395
|
});
|
|
3396
3396
|
};
|
|
3397
3397
|
return RestWalker2;
|
|
3398
|
-
}
|
|
3398
|
+
}();
|
|
3399
3399
|
}
|
|
3400
3400
|
});
|
|
3401
3401
|
|
|
@@ -3405,7 +3405,7 @@ var init_gast_visitor_public = __esm({
|
|
|
3405
3405
|
"../../node_modules/.pnpm/chevrotain@6.5.0/node_modules/chevrotain/lib_esm/src/parse/grammar/gast/gast_visitor_public.js"() {
|
|
3406
3406
|
init_gast_public();
|
|
3407
3407
|
GAstVisitor = /** @class */
|
|
3408
|
-
|
|
3408
|
+
function() {
|
|
3409
3409
|
function GAstVisitor2() {
|
|
3410
3410
|
}
|
|
3411
3411
|
GAstVisitor2.prototype.visit = function(node) {
|
|
@@ -3457,7 +3457,7 @@ var init_gast_visitor_public = __esm({
|
|
|
3457
3457
|
GAstVisitor2.prototype.visitRule = function(node) {
|
|
3458
3458
|
};
|
|
3459
3459
|
return GAstVisitor2;
|
|
3460
|
-
}
|
|
3460
|
+
}();
|
|
3461
3461
|
}
|
|
3462
3462
|
});
|
|
3463
3463
|
|
|
@@ -3527,7 +3527,7 @@ var init_gast = __esm({
|
|
|
3527
3527
|
init_utils();
|
|
3528
3528
|
init_gast_public();
|
|
3529
3529
|
init_gast_visitor_public();
|
|
3530
|
-
__extends4 = /* @__PURE__ */
|
|
3530
|
+
__extends4 = /* @__PURE__ */ function() {
|
|
3531
3531
|
var extendStatics = function(d, b) {
|
|
3532
3532
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
3533
3533
|
d2.__proto__ = b2;
|
|
@@ -3543,9 +3543,9 @@ var init_gast = __esm({
|
|
|
3543
3543
|
}
|
|
3544
3544
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
3545
3545
|
};
|
|
3546
|
-
}
|
|
3546
|
+
}();
|
|
3547
3547
|
DslMethodsCollectorVisitor = /** @class */
|
|
3548
|
-
|
|
3548
|
+
function(_super) {
|
|
3549
3549
|
__extends4(DslMethodsCollectorVisitor2, _super);
|
|
3550
3550
|
function DslMethodsCollectorVisitor2() {
|
|
3551
3551
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -3603,7 +3603,7 @@ var init_gast = __esm({
|
|
|
3603
3603
|
this.dslMethods.alternation.push(or);
|
|
3604
3604
|
};
|
|
3605
3605
|
return DslMethodsCollectorVisitor2;
|
|
3606
|
-
}
|
|
3606
|
+
}(GAstVisitor);
|
|
3607
3607
|
collectorVisitor = new DslMethodsCollectorVisitor();
|
|
3608
3608
|
}
|
|
3609
3609
|
});
|
|
@@ -3683,7 +3683,7 @@ var init_follow = __esm({
|
|
|
3683
3683
|
init_utils();
|
|
3684
3684
|
init_constants();
|
|
3685
3685
|
init_gast_public();
|
|
3686
|
-
__extends5 = /* @__PURE__ */
|
|
3686
|
+
__extends5 = /* @__PURE__ */ function() {
|
|
3687
3687
|
var extendStatics = function(d, b) {
|
|
3688
3688
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
3689
3689
|
d2.__proto__ = b2;
|
|
@@ -3699,9 +3699,9 @@ var init_follow = __esm({
|
|
|
3699
3699
|
}
|
|
3700
3700
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
3701
3701
|
};
|
|
3702
|
-
}
|
|
3702
|
+
}();
|
|
3703
3703
|
ResyncFollowsWalker = /** @class */
|
|
3704
|
-
|
|
3704
|
+
function(_super) {
|
|
3705
3705
|
__extends5(ResyncFollowsWalker2, _super);
|
|
3706
3706
|
function ResyncFollowsWalker2(topProd) {
|
|
3707
3707
|
var _this = _super.call(this) || this;
|
|
@@ -3723,7 +3723,7 @@ var init_follow = __esm({
|
|
|
3723
3723
|
this.follows[followName] = t_in_topProd_follows;
|
|
3724
3724
|
};
|
|
3725
3725
|
return ResyncFollowsWalker2;
|
|
3726
|
-
}
|
|
3726
|
+
}(RestWalker);
|
|
3727
3727
|
}
|
|
3728
3728
|
});
|
|
3729
3729
|
|
|
@@ -3811,7 +3811,7 @@ var init_cst = __esm({
|
|
|
3811
3811
|
init_keys();
|
|
3812
3812
|
init_gast_public();
|
|
3813
3813
|
init_gast_visitor_public();
|
|
3814
|
-
__extends6 = /* @__PURE__ */
|
|
3814
|
+
__extends6 = /* @__PURE__ */ function() {
|
|
3815
3815
|
var extendStatics = function(d, b) {
|
|
3816
3816
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
3817
3817
|
d2.__proto__ = b2;
|
|
@@ -3827,9 +3827,9 @@ var init_cst = __esm({
|
|
|
3827
3827
|
}
|
|
3828
3828
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
3829
3829
|
};
|
|
3830
|
-
}
|
|
3830
|
+
}();
|
|
3831
3831
|
NamedDSLMethodsCollectorVisitor = /** @class */
|
|
3832
|
-
|
|
3832
|
+
function(_super) {
|
|
3833
3833
|
__extends6(NamedDSLMethodsCollectorVisitor2, _super);
|
|
3834
3834
|
function NamedDSLMethodsCollectorVisitor2(ruleIdx) {
|
|
3835
3835
|
var _this = _super.call(this) || this;
|
|
@@ -3897,7 +3897,7 @@ var init_cst = __esm({
|
|
|
3897
3897
|
});
|
|
3898
3898
|
};
|
|
3899
3899
|
return NamedDSLMethodsCollectorVisitor2;
|
|
3900
|
-
}
|
|
3900
|
+
}(GAstVisitor);
|
|
3901
3901
|
}
|
|
3902
3902
|
});
|
|
3903
3903
|
|
|
@@ -4186,7 +4186,7 @@ var init_interpreter = __esm({
|
|
|
4186
4186
|
init_utils();
|
|
4187
4187
|
init_first();
|
|
4188
4188
|
init_gast_public();
|
|
4189
|
-
__extends7 = /* @__PURE__ */
|
|
4189
|
+
__extends7 = /* @__PURE__ */ function() {
|
|
4190
4190
|
var extendStatics = function(d, b) {
|
|
4191
4191
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
4192
4192
|
d2.__proto__ = b2;
|
|
@@ -4202,9 +4202,9 @@ var init_interpreter = __esm({
|
|
|
4202
4202
|
}
|
|
4203
4203
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
4204
4204
|
};
|
|
4205
|
-
}
|
|
4205
|
+
}();
|
|
4206
4206
|
AbstractNextPossibleTokensWalker = /** @class */
|
|
4207
|
-
|
|
4207
|
+
function(_super) {
|
|
4208
4208
|
__extends7(AbstractNextPossibleTokensWalker2, _super);
|
|
4209
4209
|
function AbstractNextPossibleTokensWalker2(topProd, path) {
|
|
4210
4210
|
var _this = _super.call(this) || this;
|
|
@@ -4256,9 +4256,9 @@ var init_interpreter = __esm({
|
|
|
4256
4256
|
}
|
|
4257
4257
|
};
|
|
4258
4258
|
return AbstractNextPossibleTokensWalker2;
|
|
4259
|
-
}
|
|
4259
|
+
}(RestWalker);
|
|
4260
4260
|
NextAfterTokenWalker = /** @class */
|
|
4261
|
-
|
|
4261
|
+
function(_super) {
|
|
4262
4262
|
__extends7(NextAfterTokenWalker2, _super);
|
|
4263
4263
|
function NextAfterTokenWalker2(topProd, path) {
|
|
4264
4264
|
var _this = _super.call(this, topProd, path) || this;
|
|
@@ -4278,9 +4278,9 @@ var init_interpreter = __esm({
|
|
|
4278
4278
|
}
|
|
4279
4279
|
};
|
|
4280
4280
|
return NextAfterTokenWalker2;
|
|
4281
|
-
}
|
|
4281
|
+
}(AbstractNextPossibleTokensWalker);
|
|
4282
4282
|
AbstractNextTerminalAfterProductionWalker = /** @class */
|
|
4283
|
-
|
|
4283
|
+
function(_super) {
|
|
4284
4284
|
__extends7(AbstractNextTerminalAfterProductionWalker2, _super);
|
|
4285
4285
|
function AbstractNextTerminalAfterProductionWalker2(topRule, occurrence) {
|
|
4286
4286
|
var _this = _super.call(this) || this;
|
|
@@ -4298,9 +4298,9 @@ var init_interpreter = __esm({
|
|
|
4298
4298
|
return this.result;
|
|
4299
4299
|
};
|
|
4300
4300
|
return AbstractNextTerminalAfterProductionWalker2;
|
|
4301
|
-
}
|
|
4301
|
+
}(RestWalker);
|
|
4302
4302
|
NextTerminalAfterManyWalker = /** @class */
|
|
4303
|
-
|
|
4303
|
+
function(_super) {
|
|
4304
4304
|
__extends7(NextTerminalAfterManyWalker2, _super);
|
|
4305
4305
|
function NextTerminalAfterManyWalker2() {
|
|
4306
4306
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -4318,9 +4318,9 @@ var init_interpreter = __esm({
|
|
|
4318
4318
|
}
|
|
4319
4319
|
};
|
|
4320
4320
|
return NextTerminalAfterManyWalker2;
|
|
4321
|
-
}
|
|
4321
|
+
}(AbstractNextTerminalAfterProductionWalker);
|
|
4322
4322
|
NextTerminalAfterManySepWalker = /** @class */
|
|
4323
|
-
|
|
4323
|
+
function(_super) {
|
|
4324
4324
|
__extends7(NextTerminalAfterManySepWalker2, _super);
|
|
4325
4325
|
function NextTerminalAfterManySepWalker2() {
|
|
4326
4326
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -4338,9 +4338,9 @@ var init_interpreter = __esm({
|
|
|
4338
4338
|
}
|
|
4339
4339
|
};
|
|
4340
4340
|
return NextTerminalAfterManySepWalker2;
|
|
4341
|
-
}
|
|
4341
|
+
}(AbstractNextTerminalAfterProductionWalker);
|
|
4342
4342
|
NextTerminalAfterAtLeastOneWalker = /** @class */
|
|
4343
|
-
|
|
4343
|
+
function(_super) {
|
|
4344
4344
|
__extends7(NextTerminalAfterAtLeastOneWalker2, _super);
|
|
4345
4345
|
function NextTerminalAfterAtLeastOneWalker2() {
|
|
4346
4346
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -4358,9 +4358,9 @@ var init_interpreter = __esm({
|
|
|
4358
4358
|
}
|
|
4359
4359
|
};
|
|
4360
4360
|
return NextTerminalAfterAtLeastOneWalker2;
|
|
4361
|
-
}
|
|
4361
|
+
}(AbstractNextTerminalAfterProductionWalker);
|
|
4362
4362
|
NextTerminalAfterAtLeastOneSepWalker = /** @class */
|
|
4363
|
-
|
|
4363
|
+
function(_super) {
|
|
4364
4364
|
__extends7(NextTerminalAfterAtLeastOneSepWalker2, _super);
|
|
4365
4365
|
function NextTerminalAfterAtLeastOneSepWalker2() {
|
|
4366
4366
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -4378,7 +4378,7 @@ var init_interpreter = __esm({
|
|
|
4378
4378
|
}
|
|
4379
4379
|
};
|
|
4380
4380
|
return NextTerminalAfterAtLeastOneSepWalker2;
|
|
4381
|
-
}
|
|
4381
|
+
}(AbstractNextTerminalAfterProductionWalker);
|
|
4382
4382
|
}
|
|
4383
4383
|
});
|
|
4384
4384
|
|
|
@@ -4677,7 +4677,7 @@ var init_lookahead = __esm({
|
|
|
4677
4677
|
init_tokens();
|
|
4678
4678
|
init_gast_public();
|
|
4679
4679
|
init_gast_visitor_public();
|
|
4680
|
-
__extends8 = /* @__PURE__ */
|
|
4680
|
+
__extends8 = /* @__PURE__ */ function() {
|
|
4681
4681
|
var extendStatics = function(d, b) {
|
|
4682
4682
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
4683
4683
|
d2.__proto__ = b2;
|
|
@@ -4693,7 +4693,7 @@ var init_lookahead = __esm({
|
|
|
4693
4693
|
}
|
|
4694
4694
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
4695
4695
|
};
|
|
4696
|
-
}
|
|
4696
|
+
}();
|
|
4697
4697
|
(function(PROD_TYPE2) {
|
|
4698
4698
|
PROD_TYPE2[PROD_TYPE2["OPTION"] = 0] = "OPTION";
|
|
4699
4699
|
PROD_TYPE2[PROD_TYPE2["REPETITION"] = 1] = "REPETITION";
|
|
@@ -4703,7 +4703,7 @@ var init_lookahead = __esm({
|
|
|
4703
4703
|
PROD_TYPE2[PROD_TYPE2["ALTERNATION"] = 5] = "ALTERNATION";
|
|
4704
4704
|
})(PROD_TYPE || (PROD_TYPE = {}));
|
|
4705
4705
|
RestDefinitionFinderWalker = /** @class */
|
|
4706
|
-
|
|
4706
|
+
function(_super) {
|
|
4707
4707
|
__extends8(RestDefinitionFinderWalker2, _super);
|
|
4708
4708
|
function RestDefinitionFinderWalker2(topProd, targetOccurrence, targetProdType) {
|
|
4709
4709
|
var _this = _super.call(this) || this;
|
|
@@ -4749,9 +4749,9 @@ var init_lookahead = __esm({
|
|
|
4749
4749
|
}
|
|
4750
4750
|
};
|
|
4751
4751
|
return RestDefinitionFinderWalker2;
|
|
4752
|
-
}
|
|
4752
|
+
}(RestWalker);
|
|
4753
4753
|
InsideDefinitionFinderVisitor = /** @class */
|
|
4754
|
-
|
|
4754
|
+
function(_super) {
|
|
4755
4755
|
__extends8(InsideDefinitionFinderVisitor2, _super);
|
|
4756
4756
|
function InsideDefinitionFinderVisitor2(targetOccurrence, targetProdType, targetRef) {
|
|
4757
4757
|
var _this = _super.call(this) || this;
|
|
@@ -4785,7 +4785,7 @@ var init_lookahead = __esm({
|
|
|
4785
4785
|
this.checkIsTarget(node, PROD_TYPE.ALTERNATION);
|
|
4786
4786
|
};
|
|
4787
4787
|
return InsideDefinitionFinderVisitor2;
|
|
4788
|
-
}
|
|
4788
|
+
}(GAstVisitor);
|
|
4789
4789
|
}
|
|
4790
4790
|
});
|
|
4791
4791
|
|
|
@@ -5253,7 +5253,7 @@ var init_checks = __esm({
|
|
|
5253
5253
|
init_interpreter();
|
|
5254
5254
|
init_gast_public();
|
|
5255
5255
|
init_gast_visitor_public();
|
|
5256
|
-
__extends9 = /* @__PURE__ */
|
|
5256
|
+
__extends9 = /* @__PURE__ */ function() {
|
|
5257
5257
|
var extendStatics = function(d, b) {
|
|
5258
5258
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
5259
5259
|
d2.__proto__ = b2;
|
|
@@ -5269,9 +5269,9 @@ var init_checks = __esm({
|
|
|
5269
5269
|
}
|
|
5270
5270
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
5271
5271
|
};
|
|
5272
|
-
}
|
|
5272
|
+
}();
|
|
5273
5273
|
OccurrenceValidationCollector = /** @class */
|
|
5274
|
-
|
|
5274
|
+
function(_super) {
|
|
5275
5275
|
__extends9(OccurrenceValidationCollector2, _super);
|
|
5276
5276
|
function OccurrenceValidationCollector2() {
|
|
5277
5277
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -5303,11 +5303,11 @@ var init_checks = __esm({
|
|
|
5303
5303
|
this.allProductions.push(terminal);
|
|
5304
5304
|
};
|
|
5305
5305
|
return OccurrenceValidationCollector2;
|
|
5306
|
-
}
|
|
5306
|
+
}(GAstVisitor);
|
|
5307
5307
|
validTermsPattern = /^[a-zA-Z_]\w*$/;
|
|
5308
5308
|
validNestedRuleName = new RegExp(validTermsPattern.source.replace("^", "^\\$"));
|
|
5309
5309
|
OrCollector = /** @class */
|
|
5310
|
-
|
|
5310
|
+
function(_super) {
|
|
5311
5311
|
__extends9(OrCollector2, _super);
|
|
5312
5312
|
function OrCollector2() {
|
|
5313
5313
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -5318,9 +5318,9 @@ var init_checks = __esm({
|
|
|
5318
5318
|
this.alternations.push(node);
|
|
5319
5319
|
};
|
|
5320
5320
|
return OrCollector2;
|
|
5321
|
-
}
|
|
5321
|
+
}(GAstVisitor);
|
|
5322
5322
|
RepetionCollector = /** @class */
|
|
5323
|
-
|
|
5323
|
+
function(_super) {
|
|
5324
5324
|
__extends9(RepetionCollector2, _super);
|
|
5325
5325
|
function RepetionCollector2() {
|
|
5326
5326
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -5340,7 +5340,7 @@ var init_checks = __esm({
|
|
|
5340
5340
|
this.allProductions.push(many);
|
|
5341
5341
|
};
|
|
5342
5342
|
return RepetionCollector2;
|
|
5343
|
-
}
|
|
5343
|
+
}(GAstVisitor);
|
|
5344
5344
|
}
|
|
5345
5345
|
});
|
|
5346
5346
|
|
|
@@ -5528,7 +5528,7 @@ var init_resolver = __esm({
|
|
|
5528
5528
|
init_parser();
|
|
5529
5529
|
init_utils();
|
|
5530
5530
|
init_gast_visitor_public();
|
|
5531
|
-
__extends10 = /* @__PURE__ */
|
|
5531
|
+
__extends10 = /* @__PURE__ */ function() {
|
|
5532
5532
|
var extendStatics = function(d, b) {
|
|
5533
5533
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
5534
5534
|
d2.__proto__ = b2;
|
|
@@ -5544,9 +5544,9 @@ var init_resolver = __esm({
|
|
|
5544
5544
|
}
|
|
5545
5545
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
5546
5546
|
};
|
|
5547
|
-
}
|
|
5547
|
+
}();
|
|
5548
5548
|
GastRefResolverVisitor = /** @class */
|
|
5549
|
-
|
|
5549
|
+
function(_super) {
|
|
5550
5550
|
__extends10(GastRefResolverVisitor2, _super);
|
|
5551
5551
|
function GastRefResolverVisitor2(nameToTopRule, errMsgProvider) {
|
|
5552
5552
|
var _this = _super.call(this) || this;
|
|
@@ -5577,7 +5577,7 @@ var init_resolver = __esm({
|
|
|
5577
5577
|
}
|
|
5578
5578
|
};
|
|
5579
5579
|
return GastRefResolverVisitor2;
|
|
5580
|
-
}
|
|
5580
|
+
}(GAstVisitor);
|
|
5581
5581
|
}
|
|
5582
5582
|
});
|
|
5583
5583
|
|
|
@@ -5700,7 +5700,7 @@ var init_recoverable = __esm({
|
|
|
5700
5700
|
IN_RULE_RECOVERY_EXCEPTION = "InRuleRecoveryException";
|
|
5701
5701
|
InRuleRecoveryException.prototype = Error.prototype;
|
|
5702
5702
|
Recoverable = /** @class */
|
|
5703
|
-
|
|
5703
|
+
function() {
|
|
5704
5704
|
function Recoverable2() {
|
|
5705
5705
|
}
|
|
5706
5706
|
Recoverable2.prototype.initRecoverable = function(config) {
|
|
@@ -5921,7 +5921,7 @@ var init_recoverable = __esm({
|
|
|
5921
5921
|
}
|
|
5922
5922
|
};
|
|
5923
5923
|
return Recoverable2;
|
|
5924
|
-
}
|
|
5924
|
+
}();
|
|
5925
5925
|
}
|
|
5926
5926
|
});
|
|
5927
5927
|
|
|
@@ -5935,7 +5935,7 @@ var init_looksahead = __esm({
|
|
|
5935
5935
|
init_keys();
|
|
5936
5936
|
init_gast();
|
|
5937
5937
|
LooksAhead = /** @class */
|
|
5938
|
-
|
|
5938
|
+
function() {
|
|
5939
5939
|
function LooksAhead2() {
|
|
5940
5940
|
}
|
|
5941
5941
|
LooksAhead2.prototype.initLooksAhead = function(config) {
|
|
@@ -6017,7 +6017,7 @@ var init_looksahead = __esm({
|
|
|
6017
6017
|
this.lookAheadFuncsCache[key] = value;
|
|
6018
6018
|
};
|
|
6019
6019
|
return LooksAhead2;
|
|
6020
|
-
}
|
|
6020
|
+
}();
|
|
6021
6021
|
}
|
|
6022
6022
|
});
|
|
6023
6023
|
|
|
@@ -6175,7 +6175,7 @@ var init_tree_builder = __esm({
|
|
|
6175
6175
|
init_keys();
|
|
6176
6176
|
init_parser();
|
|
6177
6177
|
TreeBuilder = /** @class */
|
|
6178
|
-
|
|
6178
|
+
function() {
|
|
6179
6179
|
function TreeBuilder2() {
|
|
6180
6180
|
}
|
|
6181
6181
|
TreeBuilder2.prototype.initTreeBuilder = function(config) {
|
|
@@ -6414,7 +6414,7 @@ var init_tree_builder = __esm({
|
|
|
6414
6414
|
this.cstNestedFinallyStateUpdate();
|
|
6415
6415
|
};
|
|
6416
6416
|
return TreeBuilder2;
|
|
6417
|
-
}
|
|
6417
|
+
}();
|
|
6418
6418
|
}
|
|
6419
6419
|
});
|
|
6420
6420
|
|
|
@@ -6424,7 +6424,7 @@ var init_lexer_adapter = __esm({
|
|
|
6424
6424
|
"../../node_modules/.pnpm/chevrotain@6.5.0/node_modules/chevrotain/lib_esm/src/parse/parser/traits/lexer_adapter.js"() {
|
|
6425
6425
|
init_parser();
|
|
6426
6426
|
LexerAdapter = /** @class */
|
|
6427
|
-
|
|
6427
|
+
function() {
|
|
6428
6428
|
function LexerAdapter2() {
|
|
6429
6429
|
}
|
|
6430
6430
|
LexerAdapter2.prototype.initLexerAdapter = function() {
|
|
@@ -6482,7 +6482,7 @@ var init_lexer_adapter = __esm({
|
|
|
6482
6482
|
return this.exportLexerState();
|
|
6483
6483
|
};
|
|
6484
6484
|
return LexerAdapter2;
|
|
6485
|
-
}
|
|
6485
|
+
}();
|
|
6486
6486
|
}
|
|
6487
6487
|
});
|
|
6488
6488
|
|
|
@@ -6497,7 +6497,7 @@ var init_recognizer_api = __esm({
|
|
|
6497
6497
|
init_checks();
|
|
6498
6498
|
init_gast_public();
|
|
6499
6499
|
RecognizerApi = /** @class */
|
|
6500
|
-
|
|
6500
|
+
function() {
|
|
6501
6501
|
function RecognizerApi2() {
|
|
6502
6502
|
}
|
|
6503
6503
|
RecognizerApi2.prototype.ACTION = function(impl) {
|
|
@@ -6819,7 +6819,7 @@ var init_recognizer_api = __esm({
|
|
|
6819
6819
|
return serializeGrammar(values(this.gastProductionsCache));
|
|
6820
6820
|
};
|
|
6821
6821
|
return RecognizerApi2;
|
|
6822
|
-
}
|
|
6822
|
+
}();
|
|
6823
6823
|
}
|
|
6824
6824
|
});
|
|
6825
6825
|
|
|
@@ -6838,7 +6838,7 @@ var init_recognizer_engine = __esm({
|
|
|
6838
6838
|
init_tokens();
|
|
6839
6839
|
init_lang_extensions();
|
|
6840
6840
|
RecognizerEngine = /** @class */
|
|
6841
|
-
|
|
6841
|
+
function() {
|
|
6842
6842
|
function RecognizerEngine2() {
|
|
6843
6843
|
}
|
|
6844
6844
|
RecognizerEngine2.prototype.initRecognizerEngine = function(tokenVocabulary, config) {
|
|
@@ -7349,7 +7349,7 @@ var init_recognizer_engine = __esm({
|
|
|
7349
7349
|
this.RULE_OCCURRENCE_STACK = [];
|
|
7350
7350
|
};
|
|
7351
7351
|
return RecognizerEngine2;
|
|
7352
|
-
}
|
|
7352
|
+
}();
|
|
7353
7353
|
}
|
|
7354
7354
|
});
|
|
7355
7355
|
|
|
@@ -7362,7 +7362,7 @@ var init_error_handler = __esm({
|
|
|
7362
7362
|
init_lookahead();
|
|
7363
7363
|
init_parser();
|
|
7364
7364
|
ErrorHandler = /** @class */
|
|
7365
|
-
|
|
7365
|
+
function() {
|
|
7366
7366
|
function ErrorHandler2() {
|
|
7367
7367
|
}
|
|
7368
7368
|
ErrorHandler2.prototype.initErrorHandler = function(config) {
|
|
@@ -7429,7 +7429,7 @@ var init_error_handler = __esm({
|
|
|
7429
7429
|
throw this.SAVE_ERROR(new NoViableAltException(errMsg, this.LA(1), previousToken));
|
|
7430
7430
|
};
|
|
7431
7431
|
return ErrorHandler2;
|
|
7432
|
-
}
|
|
7432
|
+
}();
|
|
7433
7433
|
}
|
|
7434
7434
|
});
|
|
7435
7435
|
|
|
@@ -7440,7 +7440,7 @@ var init_context_assist = __esm({
|
|
|
7440
7440
|
init_interpreter();
|
|
7441
7441
|
init_utils();
|
|
7442
7442
|
ContentAssist = /** @class */
|
|
7443
|
-
|
|
7443
|
+
function() {
|
|
7444
7444
|
function ContentAssist2() {
|
|
7445
7445
|
}
|
|
7446
7446
|
ContentAssist2.prototype.initContentAssist = function() {
|
|
@@ -7460,7 +7460,7 @@ var init_context_assist = __esm({
|
|
|
7460
7460
|
return nextPossibleTokenTypes;
|
|
7461
7461
|
};
|
|
7462
7462
|
return ContentAssist2;
|
|
7463
|
-
}
|
|
7463
|
+
}();
|
|
7464
7464
|
}
|
|
7465
7465
|
});
|
|
7466
7466
|
|
|
@@ -7576,7 +7576,7 @@ var init_gast_recorder = __esm({
|
|
|
7576
7576
|
children: {}
|
|
7577
7577
|
};
|
|
7578
7578
|
GastRecorder = /** @class */
|
|
7579
|
-
|
|
7579
|
+
function() {
|
|
7580
7580
|
function GastRecorder2() {
|
|
7581
7581
|
}
|
|
7582
7582
|
GastRecorder2.prototype.initGastRecorder = function(config) {
|
|
@@ -7748,7 +7748,7 @@ var init_gast_recorder = __esm({
|
|
|
7748
7748
|
return RECORDING_PHASE_TOKEN;
|
|
7749
7749
|
};
|
|
7750
7750
|
return GastRecorder2;
|
|
7751
|
-
}
|
|
7751
|
+
}();
|
|
7752
7752
|
}
|
|
7753
7753
|
});
|
|
7754
7754
|
|
|
@@ -7759,7 +7759,7 @@ var init_perf_tracer = __esm({
|
|
|
7759
7759
|
init_utils();
|
|
7760
7760
|
init_parser();
|
|
7761
7761
|
PerformanceTracer = /** @class */
|
|
7762
|
-
|
|
7762
|
+
function() {
|
|
7763
7763
|
function PerformanceTracer2() {
|
|
7764
7764
|
}
|
|
7765
7765
|
PerformanceTracer2.prototype.initPerformanceTracer = function(config) {
|
|
@@ -7793,7 +7793,7 @@ var init_perf_tracer = __esm({
|
|
|
7793
7793
|
}
|
|
7794
7794
|
};
|
|
7795
7795
|
return PerformanceTracer2;
|
|
7796
|
-
}
|
|
7796
|
+
}();
|
|
7797
7797
|
}
|
|
7798
7798
|
});
|
|
7799
7799
|
|
|
@@ -7825,7 +7825,7 @@ var init_parser = __esm({
|
|
|
7825
7825
|
init_context_assist();
|
|
7826
7826
|
init_gast_recorder();
|
|
7827
7827
|
init_perf_tracer();
|
|
7828
|
-
__extends11 = /* @__PURE__ */
|
|
7828
|
+
__extends11 = /* @__PURE__ */ function() {
|
|
7829
7829
|
var extendStatics = function(d, b) {
|
|
7830
7830
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
7831
7831
|
d2.__proto__ = b2;
|
|
@@ -7841,7 +7841,7 @@ var init_parser = __esm({
|
|
|
7841
7841
|
}
|
|
7842
7842
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
7843
7843
|
};
|
|
7844
|
-
}
|
|
7844
|
+
}();
|
|
7845
7845
|
END_OF_FILE = createTokenInstance(EOF, "", NaN, NaN, NaN, NaN, NaN, NaN);
|
|
7846
7846
|
Object.freeze(END_OF_FILE);
|
|
7847
7847
|
DEFAULT_PARSER_CONFIG = Object.freeze({
|
|
@@ -7879,7 +7879,7 @@ var init_parser = __esm({
|
|
|
7879
7879
|
ParserDefinitionErrorType2[ParserDefinitionErrorType2["TOO_MANY_ALTS"] = 14] = "TOO_MANY_ALTS";
|
|
7880
7880
|
})(ParserDefinitionErrorType || (ParserDefinitionErrorType = {}));
|
|
7881
7881
|
Parser = /** @class */
|
|
7882
|
-
|
|
7882
|
+
function() {
|
|
7883
7883
|
function Parser2(tokenVocabulary, config) {
|
|
7884
7884
|
if (config === void 0) {
|
|
7885
7885
|
config = DEFAULT_PARSER_CONFIG;
|
|
@@ -7977,7 +7977,7 @@ var init_parser = __esm({
|
|
|
7977
7977
|
};
|
|
7978
7978
|
Parser2.DEFER_DEFINITION_ERRORS_HANDLING = false;
|
|
7979
7979
|
return Parser2;
|
|
7980
|
-
}
|
|
7980
|
+
}();
|
|
7981
7981
|
applyMixins(Parser, [
|
|
7982
7982
|
Recoverable,
|
|
7983
7983
|
LooksAhead,
|
|
@@ -7991,7 +7991,7 @@ var init_parser = __esm({
|
|
|
7991
7991
|
PerformanceTracer
|
|
7992
7992
|
]);
|
|
7993
7993
|
CstParser = /** @class */
|
|
7994
|
-
|
|
7994
|
+
function(_super) {
|
|
7995
7995
|
__extends11(CstParser2, _super);
|
|
7996
7996
|
function CstParser2(tokenVocabulary, config) {
|
|
7997
7997
|
if (config === void 0) {
|
|
@@ -8004,9 +8004,9 @@ var init_parser = __esm({
|
|
|
8004
8004
|
return _this;
|
|
8005
8005
|
}
|
|
8006
8006
|
return CstParser2;
|
|
8007
|
-
}
|
|
8007
|
+
}(Parser);
|
|
8008
8008
|
EmbeddedActionsParser = /** @class */
|
|
8009
|
-
|
|
8009
|
+
function(_super) {
|
|
8010
8010
|
__extends11(EmbeddedActionsParser2, _super);
|
|
8011
8011
|
function EmbeddedActionsParser2(tokenVocabulary, config) {
|
|
8012
8012
|
if (config === void 0) {
|
|
@@ -8019,7 +8019,7 @@ var init_parser = __esm({
|
|
|
8019
8019
|
return _this;
|
|
8020
8020
|
}
|
|
8021
8021
|
return EmbeddedActionsParser2;
|
|
8022
|
-
}
|
|
8022
|
+
}(Parser);
|
|
8023
8023
|
}
|
|
8024
8024
|
});
|
|
8025
8025
|
|
|
@@ -32942,7 +32942,7 @@ function _bessel_wrap(bessel0, bessel1, name, nonzero, sign) {
|
|
|
32942
32942
|
return _bessel_iter(x, n, b0, b1, sign);
|
|
32943
32943
|
};
|
|
32944
32944
|
}
|
|
32945
|
-
var besselj =
|
|
32945
|
+
var besselj = function() {
|
|
32946
32946
|
var W = 0.636619772;
|
|
32947
32947
|
var b0_a1a = [57568490574, -13362590354, 6516196407e-1, -1121442418e-2, 77392.33017, -184.9052456].reverse();
|
|
32948
32948
|
var b0_a2a = [57568490411, 1029532985, 9494680718e-3, 59272.64853, 267.8532712, 1].reverse();
|
|
@@ -33036,8 +33036,8 @@ var besselj = (function() {
|
|
|
33036
33036
|
}
|
|
33037
33037
|
return ret;
|
|
33038
33038
|
};
|
|
33039
|
-
}
|
|
33040
|
-
var bessely =
|
|
33039
|
+
}();
|
|
33040
|
+
var bessely = function() {
|
|
33041
33041
|
var W = 0.636619772;
|
|
33042
33042
|
var b0_a1a = [-2957821389, 7062834065, -5123598036e-1, 1087988129e-2, -86327.92757, 228.4622733].reverse();
|
|
33043
33043
|
var b0_a2a = [40076544269, 7452499648e-1, 7189466438e-3, 47447.2647, 226.1030244, 1].reverse();
|
|
@@ -33076,8 +33076,8 @@ var bessely = (function() {
|
|
|
33076
33076
|
return a;
|
|
33077
33077
|
}
|
|
33078
33078
|
return _bessel_wrap(bessel0, bessel1, "BESSELY", 1, -1);
|
|
33079
|
-
}
|
|
33080
|
-
var besseli =
|
|
33079
|
+
}();
|
|
33080
|
+
var besseli = function() {
|
|
33081
33081
|
var b0_a = [1, 3.5156229, 3.0899424, 1.2067492, 0.2659732, 0.0360768, 45813e-7].reverse();
|
|
33082
33082
|
var b0_b = [0.39894228, 0.01328592, 225319e-8, -157565e-8, 916281e-8, -0.02057706, 0.02635537, -0.01647633, 392377e-8].reverse();
|
|
33083
33083
|
function bessel0(x) {
|
|
@@ -33129,8 +33129,8 @@ var besseli = (function() {
|
|
|
33129
33129
|
ret *= besseli2(x, 0) / bi;
|
|
33130
33130
|
return x < 0 && n % 2 ? -ret : ret;
|
|
33131
33131
|
};
|
|
33132
|
-
}
|
|
33133
|
-
var besselk =
|
|
33132
|
+
}();
|
|
33133
|
+
var besselk = function() {
|
|
33134
33134
|
var b0_a = [-0.57721566, 0.4227842, 0.23069756, 0.0348859, 262698e-8, 1075e-7, 74e-7].reverse();
|
|
33135
33135
|
var b0_b = [1.25331414, -0.07832358, 0.02189568, -0.01062446, 587872e-8, -25154e-7, 53208e-8].reverse();
|
|
33136
33136
|
function bessel0(x) {
|
|
@@ -33148,7 +33148,7 @@ var besselk = (function() {
|
|
|
33148
33148
|
return M.exp(-x) / M.sqrt(x) * _horner(b1_b, 2 / x);
|
|
33149
33149
|
}
|
|
33150
33150
|
return _bessel_wrap(bessel0, bessel1, "BESSELK", 2, 1);
|
|
33151
|
-
}
|
|
33151
|
+
}();
|
|
33152
33152
|
|
|
33153
33153
|
// ../../node_modules/.pnpm/hyperformula@2.7.1/node_modules/hyperformula/es/interpreter/plugin/3rdparty/jstat/jstat.js
|
|
33154
33154
|
function erf(x) {
|