@dxos/vendor-hyperformula 0.8.4-main.e098934 → 0.8.4-main.e8ec1fe
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
|
@@ -1906,7 +1906,7 @@ var require_reg_exp_parser = __commonJS({
|
|
|
1906
1906
|
var require_reg_exp = __commonJS({
|
|
1907
1907
|
"../../node_modules/.pnpm/chevrotain@6.5.0/node_modules/chevrotain/lib/src/scan/reg_exp.js"(exports2) {
|
|
1908
1908
|
"use strict";
|
|
1909
|
-
var __extends = exports2 && exports2.__extends || /* @__PURE__ */ function() {
|
|
1909
|
+
var __extends = exports2 && exports2.__extends || /* @__PURE__ */ (function() {
|
|
1910
1910
|
var extendStatics = function(d, b) {
|
|
1911
1911
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
1912
1912
|
d2.__proto__ = b2;
|
|
@@ -1922,7 +1922,7 @@ var require_reg_exp = __commonJS({
|
|
|
1922
1922
|
}
|
|
1923
1923
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
1924
1924
|
};
|
|
1925
|
-
}();
|
|
1925
|
+
})();
|
|
1926
1926
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
1927
1927
|
var regexp_to_ast_1 = require_regexp_to_ast();
|
|
1928
1928
|
var utils_1 = require_utils();
|
|
@@ -2083,7 +2083,7 @@ var require_reg_exp = __commonJS({
|
|
|
2083
2083
|
}
|
|
2084
2084
|
var CharCodeFinder = (
|
|
2085
2085
|
/** @class */
|
|
2086
|
-
function(_super) {
|
|
2086
|
+
(function(_super) {
|
|
2087
2087
|
__extends(CharCodeFinder2, _super);
|
|
2088
2088
|
function CharCodeFinder2(targetCharCodes) {
|
|
2089
2089
|
var _this = _super.call(this) || this;
|
|
@@ -2122,7 +2122,7 @@ var require_reg_exp = __commonJS({
|
|
|
2122
2122
|
}
|
|
2123
2123
|
};
|
|
2124
2124
|
return CharCodeFinder2;
|
|
2125
|
-
}(regexp_to_ast_1.BaseRegExpVisitor)
|
|
2125
|
+
})(regexp_to_ast_1.BaseRegExpVisitor)
|
|
2126
2126
|
);
|
|
2127
2127
|
function canMatchCharCode(charCodes, pattern) {
|
|
2128
2128
|
if (pattern instanceof RegExp) {
|
|
@@ -2144,7 +2144,7 @@ var require_reg_exp = __commonJS({
|
|
|
2144
2144
|
var require_lexer = __commonJS({
|
|
2145
2145
|
"../../node_modules/.pnpm/chevrotain@6.5.0/node_modules/chevrotain/lib/src/scan/lexer.js"(exports2) {
|
|
2146
2146
|
"use strict";
|
|
2147
|
-
var __extends = exports2 && exports2.__extends || /* @__PURE__ */ function() {
|
|
2147
|
+
var __extends = exports2 && exports2.__extends || /* @__PURE__ */ (function() {
|
|
2148
2148
|
var extendStatics = function(d, b) {
|
|
2149
2149
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
2150
2150
|
d2.__proto__ = b2;
|
|
@@ -2160,7 +2160,7 @@ var require_lexer = __commonJS({
|
|
|
2160
2160
|
}
|
|
2161
2161
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
2162
2162
|
};
|
|
2163
|
-
}();
|
|
2163
|
+
})();
|
|
2164
2164
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
2165
2165
|
var regexp_to_ast_1 = require_regexp_to_ast();
|
|
2166
2166
|
var lexer_public_1 = require_lexer_public();
|
|
@@ -2452,7 +2452,7 @@ var require_lexer = __commonJS({
|
|
|
2452
2452
|
function findEndOfInputAnchor(tokenTypes) {
|
|
2453
2453
|
var EndAnchorFinder = (
|
|
2454
2454
|
/** @class */
|
|
2455
|
-
function(_super) {
|
|
2455
|
+
(function(_super) {
|
|
2456
2456
|
__extends(EndAnchorFinder2, _super);
|
|
2457
2457
|
function EndAnchorFinder2() {
|
|
2458
2458
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -2463,7 +2463,7 @@ var require_lexer = __commonJS({
|
|
|
2463
2463
|
this.found = true;
|
|
2464
2464
|
};
|
|
2465
2465
|
return EndAnchorFinder2;
|
|
2466
|
-
}(regexp_to_ast_1.BaseRegExpVisitor)
|
|
2466
|
+
})(regexp_to_ast_1.BaseRegExpVisitor)
|
|
2467
2467
|
);
|
|
2468
2468
|
var invalidRegex = utils_1.filter(tokenTypes, function(currType) {
|
|
2469
2469
|
var pattern = currType[PATTERN];
|
|
@@ -2505,7 +2505,7 @@ var require_lexer = __commonJS({
|
|
|
2505
2505
|
function findStartOfInputAnchor(tokenTypes) {
|
|
2506
2506
|
var StartAnchorFinder = (
|
|
2507
2507
|
/** @class */
|
|
2508
|
-
function(_super) {
|
|
2508
|
+
(function(_super) {
|
|
2509
2509
|
__extends(StartAnchorFinder2, _super);
|
|
2510
2510
|
function StartAnchorFinder2() {
|
|
2511
2511
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -2516,7 +2516,7 @@ var require_lexer = __commonJS({
|
|
|
2516
2516
|
this.found = true;
|
|
2517
2517
|
};
|
|
2518
2518
|
return StartAnchorFinder2;
|
|
2519
|
-
}(regexp_to_ast_1.BaseRegExpVisitor)
|
|
2519
|
+
})(regexp_to_ast_1.BaseRegExpVisitor)
|
|
2520
2520
|
);
|
|
2521
2521
|
var invalidRegex = utils_1.filter(tokenTypes, function(currType) {
|
|
2522
2522
|
var pattern = currType[PATTERN];
|
|
@@ -3076,7 +3076,7 @@ var require_lexer_public = __commonJS({
|
|
|
3076
3076
|
Object.freeze(DEFAULT_LEXER_CONFIG);
|
|
3077
3077
|
var Lexer = (
|
|
3078
3078
|
/** @class */
|
|
3079
|
-
function() {
|
|
3079
|
+
(function() {
|
|
3080
3080
|
function Lexer2(lexerDefinition, config) {
|
|
3081
3081
|
var _this = this;
|
|
3082
3082
|
if (config === void 0) {
|
|
@@ -3593,7 +3593,7 @@ var require_lexer_public = __commonJS({
|
|
|
3593
3593
|
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.";
|
|
3594
3594
|
Lexer2.NA = /NOT_APPLICABLE/;
|
|
3595
3595
|
return Lexer2;
|
|
3596
|
-
}()
|
|
3596
|
+
})()
|
|
3597
3597
|
);
|
|
3598
3598
|
exports2.Lexer = Lexer;
|
|
3599
3599
|
}
|
|
@@ -3700,7 +3700,7 @@ var require_tokens_public = __commonJS({
|
|
|
3700
3700
|
var require_gast_public = __commonJS({
|
|
3701
3701
|
"../../node_modules/.pnpm/chevrotain@6.5.0/node_modules/chevrotain/lib/src/parse/grammar/gast/gast_public.js"(exports2) {
|
|
3702
3702
|
"use strict";
|
|
3703
|
-
var __extends = exports2 && exports2.__extends || /* @__PURE__ */ function() {
|
|
3703
|
+
var __extends = exports2 && exports2.__extends || /* @__PURE__ */ (function() {
|
|
3704
3704
|
var extendStatics = function(d, b) {
|
|
3705
3705
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
3706
3706
|
d2.__proto__ = b2;
|
|
@@ -3716,13 +3716,13 @@ var require_gast_public = __commonJS({
|
|
|
3716
3716
|
}
|
|
3717
3717
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
3718
3718
|
};
|
|
3719
|
-
}();
|
|
3719
|
+
})();
|
|
3720
3720
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
3721
3721
|
var utils_1 = require_utils();
|
|
3722
3722
|
var tokens_public_1 = require_tokens_public();
|
|
3723
3723
|
var AbstractProduction = (
|
|
3724
3724
|
/** @class */
|
|
3725
|
-
function() {
|
|
3725
|
+
(function() {
|
|
3726
3726
|
function AbstractProduction2(definition) {
|
|
3727
3727
|
this.definition = definition;
|
|
3728
3728
|
}
|
|
@@ -3733,12 +3733,12 @@ var require_gast_public = __commonJS({
|
|
|
3733
3733
|
});
|
|
3734
3734
|
};
|
|
3735
3735
|
return AbstractProduction2;
|
|
3736
|
-
}()
|
|
3736
|
+
})()
|
|
3737
3737
|
);
|
|
3738
3738
|
exports2.AbstractProduction = AbstractProduction;
|
|
3739
3739
|
var NonTerminal = (
|
|
3740
3740
|
/** @class */
|
|
3741
|
-
function(_super) {
|
|
3741
|
+
(function(_super) {
|
|
3742
3742
|
__extends(NonTerminal2, _super);
|
|
3743
3743
|
function NonTerminal2(options) {
|
|
3744
3744
|
var _this = _super.call(this, []) || this;
|
|
@@ -3764,12 +3764,12 @@ var require_gast_public = __commonJS({
|
|
|
3764
3764
|
visitor.visit(this);
|
|
3765
3765
|
};
|
|
3766
3766
|
return NonTerminal2;
|
|
3767
|
-
}(AbstractProduction)
|
|
3767
|
+
})(AbstractProduction)
|
|
3768
3768
|
);
|
|
3769
3769
|
exports2.NonTerminal = NonTerminal;
|
|
3770
3770
|
var Rule = (
|
|
3771
3771
|
/** @class */
|
|
3772
|
-
function(_super) {
|
|
3772
|
+
(function(_super) {
|
|
3773
3773
|
__extends(Rule2, _super);
|
|
3774
3774
|
function Rule2(options) {
|
|
3775
3775
|
var _this = _super.call(this, options.definition) || this;
|
|
@@ -3780,12 +3780,12 @@ var require_gast_public = __commonJS({
|
|
|
3780
3780
|
return _this;
|
|
3781
3781
|
}
|
|
3782
3782
|
return Rule2;
|
|
3783
|
-
}(AbstractProduction)
|
|
3783
|
+
})(AbstractProduction)
|
|
3784
3784
|
);
|
|
3785
3785
|
exports2.Rule = Rule;
|
|
3786
3786
|
var Flat = (
|
|
3787
3787
|
/** @class */
|
|
3788
|
-
function(_super) {
|
|
3788
|
+
(function(_super) {
|
|
3789
3789
|
__extends(Flat2, _super);
|
|
3790
3790
|
function Flat2(options) {
|
|
3791
3791
|
var _this = _super.call(this, options.definition) || this;
|
|
@@ -3796,12 +3796,12 @@ var require_gast_public = __commonJS({
|
|
|
3796
3796
|
return _this;
|
|
3797
3797
|
}
|
|
3798
3798
|
return Flat2;
|
|
3799
|
-
}(AbstractProduction)
|
|
3799
|
+
})(AbstractProduction)
|
|
3800
3800
|
);
|
|
3801
3801
|
exports2.Flat = Flat;
|
|
3802
3802
|
var Option = (
|
|
3803
3803
|
/** @class */
|
|
3804
|
-
function(_super) {
|
|
3804
|
+
(function(_super) {
|
|
3805
3805
|
__extends(Option2, _super);
|
|
3806
3806
|
function Option2(options) {
|
|
3807
3807
|
var _this = _super.call(this, options.definition) || this;
|
|
@@ -3812,12 +3812,12 @@ var require_gast_public = __commonJS({
|
|
|
3812
3812
|
return _this;
|
|
3813
3813
|
}
|
|
3814
3814
|
return Option2;
|
|
3815
|
-
}(AbstractProduction)
|
|
3815
|
+
})(AbstractProduction)
|
|
3816
3816
|
);
|
|
3817
3817
|
exports2.Option = Option;
|
|
3818
3818
|
var RepetitionMandatory = (
|
|
3819
3819
|
/** @class */
|
|
3820
|
-
function(_super) {
|
|
3820
|
+
(function(_super) {
|
|
3821
3821
|
__extends(RepetitionMandatory2, _super);
|
|
3822
3822
|
function RepetitionMandatory2(options) {
|
|
3823
3823
|
var _this = _super.call(this, options.definition) || this;
|
|
@@ -3828,12 +3828,12 @@ var require_gast_public = __commonJS({
|
|
|
3828
3828
|
return _this;
|
|
3829
3829
|
}
|
|
3830
3830
|
return RepetitionMandatory2;
|
|
3831
|
-
}(AbstractProduction)
|
|
3831
|
+
})(AbstractProduction)
|
|
3832
3832
|
);
|
|
3833
3833
|
exports2.RepetitionMandatory = RepetitionMandatory;
|
|
3834
3834
|
var RepetitionMandatoryWithSeparator = (
|
|
3835
3835
|
/** @class */
|
|
3836
|
-
function(_super) {
|
|
3836
|
+
(function(_super) {
|
|
3837
3837
|
__extends(RepetitionMandatoryWithSeparator2, _super);
|
|
3838
3838
|
function RepetitionMandatoryWithSeparator2(options) {
|
|
3839
3839
|
var _this = _super.call(this, options.definition) || this;
|
|
@@ -3844,12 +3844,12 @@ var require_gast_public = __commonJS({
|
|
|
3844
3844
|
return _this;
|
|
3845
3845
|
}
|
|
3846
3846
|
return RepetitionMandatoryWithSeparator2;
|
|
3847
|
-
}(AbstractProduction)
|
|
3847
|
+
})(AbstractProduction)
|
|
3848
3848
|
);
|
|
3849
3849
|
exports2.RepetitionMandatoryWithSeparator = RepetitionMandatoryWithSeparator;
|
|
3850
3850
|
var Repetition = (
|
|
3851
3851
|
/** @class */
|
|
3852
|
-
function(_super) {
|
|
3852
|
+
(function(_super) {
|
|
3853
3853
|
__extends(Repetition2, _super);
|
|
3854
3854
|
function Repetition2(options) {
|
|
3855
3855
|
var _this = _super.call(this, options.definition) || this;
|
|
@@ -3860,12 +3860,12 @@ var require_gast_public = __commonJS({
|
|
|
3860
3860
|
return _this;
|
|
3861
3861
|
}
|
|
3862
3862
|
return Repetition2;
|
|
3863
|
-
}(AbstractProduction)
|
|
3863
|
+
})(AbstractProduction)
|
|
3864
3864
|
);
|
|
3865
3865
|
exports2.Repetition = Repetition;
|
|
3866
3866
|
var RepetitionWithSeparator = (
|
|
3867
3867
|
/** @class */
|
|
3868
|
-
function(_super) {
|
|
3868
|
+
(function(_super) {
|
|
3869
3869
|
__extends(RepetitionWithSeparator2, _super);
|
|
3870
3870
|
function RepetitionWithSeparator2(options) {
|
|
3871
3871
|
var _this = _super.call(this, options.definition) || this;
|
|
@@ -3876,12 +3876,12 @@ var require_gast_public = __commonJS({
|
|
|
3876
3876
|
return _this;
|
|
3877
3877
|
}
|
|
3878
3878
|
return RepetitionWithSeparator2;
|
|
3879
|
-
}(AbstractProduction)
|
|
3879
|
+
})(AbstractProduction)
|
|
3880
3880
|
);
|
|
3881
3881
|
exports2.RepetitionWithSeparator = RepetitionWithSeparator;
|
|
3882
3882
|
var Alternation = (
|
|
3883
3883
|
/** @class */
|
|
3884
|
-
function(_super) {
|
|
3884
|
+
(function(_super) {
|
|
3885
3885
|
__extends(Alternation2, _super);
|
|
3886
3886
|
function Alternation2(options) {
|
|
3887
3887
|
var _this = _super.call(this, options.definition) || this;
|
|
@@ -3894,12 +3894,12 @@ var require_gast_public = __commonJS({
|
|
|
3894
3894
|
return _this;
|
|
3895
3895
|
}
|
|
3896
3896
|
return Alternation2;
|
|
3897
|
-
}(AbstractProduction)
|
|
3897
|
+
})(AbstractProduction)
|
|
3898
3898
|
);
|
|
3899
3899
|
exports2.Alternation = Alternation;
|
|
3900
3900
|
var Terminal = (
|
|
3901
3901
|
/** @class */
|
|
3902
|
-
function() {
|
|
3902
|
+
(function() {
|
|
3903
3903
|
function Terminal2(options) {
|
|
3904
3904
|
this.idx = 1;
|
|
3905
3905
|
utils_1.assign(this, utils_1.pick(options, function(v) {
|
|
@@ -3910,7 +3910,7 @@ var require_gast_public = __commonJS({
|
|
|
3910
3910
|
visitor.visit(this);
|
|
3911
3911
|
};
|
|
3912
3912
|
return Terminal2;
|
|
3913
|
-
}()
|
|
3913
|
+
})()
|
|
3914
3914
|
);
|
|
3915
3915
|
exports2.Terminal = Terminal;
|
|
3916
3916
|
function serializeGrammar(topRules) {
|
|
@@ -4011,7 +4011,7 @@ var require_rest = __commonJS({
|
|
|
4011
4011
|
var gast_public_1 = require_gast_public();
|
|
4012
4012
|
var RestWalker = (
|
|
4013
4013
|
/** @class */
|
|
4014
|
-
function() {
|
|
4014
|
+
(function() {
|
|
4015
4015
|
function RestWalker2() {
|
|
4016
4016
|
}
|
|
4017
4017
|
RestWalker2.prototype.walk = function(prod, prevRest) {
|
|
@@ -4085,7 +4085,7 @@ var require_rest = __commonJS({
|
|
|
4085
4085
|
});
|
|
4086
4086
|
};
|
|
4087
4087
|
return RestWalker2;
|
|
4088
|
-
}()
|
|
4088
|
+
})()
|
|
4089
4089
|
);
|
|
4090
4090
|
exports2.RestWalker = RestWalker;
|
|
4091
4091
|
function restForRepetitionWithSeparator(repSepProd, currRest, prevRest) {
|
|
@@ -4110,7 +4110,7 @@ var require_gast_visitor_public = __commonJS({
|
|
|
4110
4110
|
var gast_public_1 = require_gast_public();
|
|
4111
4111
|
var GAstVisitor = (
|
|
4112
4112
|
/** @class */
|
|
4113
|
-
function() {
|
|
4113
|
+
(function() {
|
|
4114
4114
|
function GAstVisitor2() {
|
|
4115
4115
|
}
|
|
4116
4116
|
GAstVisitor2.prototype.visit = function(node) {
|
|
@@ -4162,7 +4162,7 @@ var require_gast_visitor_public = __commonJS({
|
|
|
4162
4162
|
GAstVisitor2.prototype.visitRule = function(node) {
|
|
4163
4163
|
};
|
|
4164
4164
|
return GAstVisitor2;
|
|
4165
|
-
}()
|
|
4165
|
+
})()
|
|
4166
4166
|
);
|
|
4167
4167
|
exports2.GAstVisitor = GAstVisitor;
|
|
4168
4168
|
}
|
|
@@ -4172,7 +4172,7 @@ var require_gast_visitor_public = __commonJS({
|
|
|
4172
4172
|
var require_gast = __commonJS({
|
|
4173
4173
|
"../../node_modules/.pnpm/chevrotain@6.5.0/node_modules/chevrotain/lib/src/parse/grammar/gast/gast.js"(exports2) {
|
|
4174
4174
|
"use strict";
|
|
4175
|
-
var __extends = exports2 && exports2.__extends || /* @__PURE__ */ function() {
|
|
4175
|
+
var __extends = exports2 && exports2.__extends || /* @__PURE__ */ (function() {
|
|
4176
4176
|
var extendStatics = function(d, b) {
|
|
4177
4177
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
4178
4178
|
d2.__proto__ = b2;
|
|
@@ -4188,7 +4188,7 @@ var require_gast = __commonJS({
|
|
|
4188
4188
|
}
|
|
4189
4189
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
4190
4190
|
};
|
|
4191
|
-
}();
|
|
4191
|
+
})();
|
|
4192
4192
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
4193
4193
|
var utils_1 = require_utils();
|
|
4194
4194
|
var gast_public_1 = require_gast_public();
|
|
@@ -4251,7 +4251,7 @@ var require_gast = __commonJS({
|
|
|
4251
4251
|
exports2.getProductionDslName = getProductionDslName;
|
|
4252
4252
|
var DslMethodsCollectorVisitor = (
|
|
4253
4253
|
/** @class */
|
|
4254
|
-
function(_super) {
|
|
4254
|
+
(function(_super) {
|
|
4255
4255
|
__extends(DslMethodsCollectorVisitor2, _super);
|
|
4256
4256
|
function DslMethodsCollectorVisitor2() {
|
|
4257
4257
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -4309,7 +4309,7 @@ var require_gast = __commonJS({
|
|
|
4309
4309
|
this.dslMethods.alternation.push(or);
|
|
4310
4310
|
};
|
|
4311
4311
|
return DslMethodsCollectorVisitor2;
|
|
4312
|
-
}(gast_visitor_public_1.GAstVisitor)
|
|
4312
|
+
})(gast_visitor_public_1.GAstVisitor)
|
|
4313
4313
|
);
|
|
4314
4314
|
exports2.DslMethodsCollectorVisitor = DslMethodsCollectorVisitor;
|
|
4315
4315
|
var collectorVisitor = new DslMethodsCollectorVisitor();
|
|
@@ -4390,7 +4390,7 @@ var require_constants = __commonJS({
|
|
|
4390
4390
|
var require_follow = __commonJS({
|
|
4391
4391
|
"../../node_modules/.pnpm/chevrotain@6.5.0/node_modules/chevrotain/lib/src/parse/grammar/follow.js"(exports2) {
|
|
4392
4392
|
"use strict";
|
|
4393
|
-
var __extends = exports2 && exports2.__extends || /* @__PURE__ */ function() {
|
|
4393
|
+
var __extends = exports2 && exports2.__extends || /* @__PURE__ */ (function() {
|
|
4394
4394
|
var extendStatics = function(d, b) {
|
|
4395
4395
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
4396
4396
|
d2.__proto__ = b2;
|
|
@@ -4406,7 +4406,7 @@ var require_follow = __commonJS({
|
|
|
4406
4406
|
}
|
|
4407
4407
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
4408
4408
|
};
|
|
4409
|
-
}();
|
|
4409
|
+
})();
|
|
4410
4410
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
4411
4411
|
var rest_1 = require_rest();
|
|
4412
4412
|
var first_1 = require_first();
|
|
@@ -4415,7 +4415,7 @@ var require_follow = __commonJS({
|
|
|
4415
4415
|
var gast_public_1 = require_gast_public();
|
|
4416
4416
|
var ResyncFollowsWalker = (
|
|
4417
4417
|
/** @class */
|
|
4418
|
-
function(_super) {
|
|
4418
|
+
(function(_super) {
|
|
4419
4419
|
__extends(ResyncFollowsWalker2, _super);
|
|
4420
4420
|
function ResyncFollowsWalker2(topProd) {
|
|
4421
4421
|
var _this = _super.call(this) || this;
|
|
@@ -4437,7 +4437,7 @@ var require_follow = __commonJS({
|
|
|
4437
4437
|
this.follows[followName] = t_in_topProd_follows;
|
|
4438
4438
|
};
|
|
4439
4439
|
return ResyncFollowsWalker2;
|
|
4440
|
-
}(rest_1.RestWalker)
|
|
4440
|
+
})(rest_1.RestWalker)
|
|
4441
4441
|
);
|
|
4442
4442
|
exports2.ResyncFollowsWalker = ResyncFollowsWalker;
|
|
4443
4443
|
function computeAllProdsFollows(topProductions) {
|
|
@@ -4493,7 +4493,7 @@ var require_keys = __commonJS({
|
|
|
4493
4493
|
var require_cst = __commonJS({
|
|
4494
4494
|
"../../node_modules/.pnpm/chevrotain@6.5.0/node_modules/chevrotain/lib/src/parse/cst/cst.js"(exports2) {
|
|
4495
4495
|
"use strict";
|
|
4496
|
-
var __extends = exports2 && exports2.__extends || /* @__PURE__ */ function() {
|
|
4496
|
+
var __extends = exports2 && exports2.__extends || /* @__PURE__ */ (function() {
|
|
4497
4497
|
var extendStatics = function(d, b) {
|
|
4498
4498
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
4499
4499
|
d2.__proto__ = b2;
|
|
@@ -4509,7 +4509,7 @@ var require_cst = __commonJS({
|
|
|
4509
4509
|
}
|
|
4510
4510
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
4511
4511
|
};
|
|
4512
|
-
}();
|
|
4512
|
+
})();
|
|
4513
4513
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
4514
4514
|
var utils_1 = require_utils();
|
|
4515
4515
|
var keys_1 = require_keys();
|
|
@@ -4557,7 +4557,7 @@ var require_cst = __commonJS({
|
|
|
4557
4557
|
exports2.addNoneTerminalToCst = addNoneTerminalToCst;
|
|
4558
4558
|
var NamedDSLMethodsCollectorVisitor = (
|
|
4559
4559
|
/** @class */
|
|
4560
|
-
function(_super) {
|
|
4560
|
+
(function(_super) {
|
|
4561
4561
|
__extends(NamedDSLMethodsCollectorVisitor2, _super);
|
|
4562
4562
|
function NamedDSLMethodsCollectorVisitor2(ruleIdx) {
|
|
4563
4563
|
var _this = _super.call(this) || this;
|
|
@@ -4625,7 +4625,7 @@ var require_cst = __commonJS({
|
|
|
4625
4625
|
});
|
|
4626
4626
|
};
|
|
4627
4627
|
return NamedDSLMethodsCollectorVisitor2;
|
|
4628
|
-
}(gast_visitor_public_1.GAstVisitor)
|
|
4628
|
+
})(gast_visitor_public_1.GAstVisitor)
|
|
4629
4629
|
);
|
|
4630
4630
|
exports2.NamedDSLMethodsCollectorVisitor = NamedDSLMethodsCollectorVisitor;
|
|
4631
4631
|
function expandAllNestedRuleNames(topRules, fullToShortName) {
|
|
@@ -4652,7 +4652,7 @@ var require_cst = __commonJS({
|
|
|
4652
4652
|
var require_interpreter = __commonJS({
|
|
4653
4653
|
"../../node_modules/.pnpm/chevrotain@6.5.0/node_modules/chevrotain/lib/src/parse/grammar/interpreter.js"(exports2) {
|
|
4654
4654
|
"use strict";
|
|
4655
|
-
var __extends = exports2 && exports2.__extends || /* @__PURE__ */ function() {
|
|
4655
|
+
var __extends = exports2 && exports2.__extends || /* @__PURE__ */ (function() {
|
|
4656
4656
|
var extendStatics = function(d, b) {
|
|
4657
4657
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
4658
4658
|
d2.__proto__ = b2;
|
|
@@ -4668,7 +4668,7 @@ var require_interpreter = __commonJS({
|
|
|
4668
4668
|
}
|
|
4669
4669
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
4670
4670
|
};
|
|
4671
|
-
}();
|
|
4671
|
+
})();
|
|
4672
4672
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
4673
4673
|
var rest_1 = require_rest();
|
|
4674
4674
|
var utils_1 = require_utils();
|
|
@@ -4676,7 +4676,7 @@ var require_interpreter = __commonJS({
|
|
|
4676
4676
|
var gast_public_1 = require_gast_public();
|
|
4677
4677
|
var AbstractNextPossibleTokensWalker = (
|
|
4678
4678
|
/** @class */
|
|
4679
|
-
function(_super) {
|
|
4679
|
+
(function(_super) {
|
|
4680
4680
|
__extends(AbstractNextPossibleTokensWalker2, _super);
|
|
4681
4681
|
function AbstractNextPossibleTokensWalker2(topProd, path) {
|
|
4682
4682
|
var _this = _super.call(this) || this;
|
|
@@ -4728,12 +4728,12 @@ var require_interpreter = __commonJS({
|
|
|
4728
4728
|
}
|
|
4729
4729
|
};
|
|
4730
4730
|
return AbstractNextPossibleTokensWalker2;
|
|
4731
|
-
}(rest_1.RestWalker)
|
|
4731
|
+
})(rest_1.RestWalker)
|
|
4732
4732
|
);
|
|
4733
4733
|
exports2.AbstractNextPossibleTokensWalker = AbstractNextPossibleTokensWalker;
|
|
4734
4734
|
var NextAfterTokenWalker = (
|
|
4735
4735
|
/** @class */
|
|
4736
|
-
function(_super) {
|
|
4736
|
+
(function(_super) {
|
|
4737
4737
|
__extends(NextAfterTokenWalker2, _super);
|
|
4738
4738
|
function NextAfterTokenWalker2(topProd, path) {
|
|
4739
4739
|
var _this = _super.call(this, topProd, path) || this;
|
|
@@ -4753,12 +4753,12 @@ var require_interpreter = __commonJS({
|
|
|
4753
4753
|
}
|
|
4754
4754
|
};
|
|
4755
4755
|
return NextAfterTokenWalker2;
|
|
4756
|
-
}(AbstractNextPossibleTokensWalker)
|
|
4756
|
+
})(AbstractNextPossibleTokensWalker)
|
|
4757
4757
|
);
|
|
4758
4758
|
exports2.NextAfterTokenWalker = NextAfterTokenWalker;
|
|
4759
4759
|
var AbstractNextTerminalAfterProductionWalker = (
|
|
4760
4760
|
/** @class */
|
|
4761
|
-
function(_super) {
|
|
4761
|
+
(function(_super) {
|
|
4762
4762
|
__extends(AbstractNextTerminalAfterProductionWalker2, _super);
|
|
4763
4763
|
function AbstractNextTerminalAfterProductionWalker2(topRule, occurrence) {
|
|
4764
4764
|
var _this = _super.call(this) || this;
|
|
@@ -4776,12 +4776,12 @@ var require_interpreter = __commonJS({
|
|
|
4776
4776
|
return this.result;
|
|
4777
4777
|
};
|
|
4778
4778
|
return AbstractNextTerminalAfterProductionWalker2;
|
|
4779
|
-
}(rest_1.RestWalker)
|
|
4779
|
+
})(rest_1.RestWalker)
|
|
4780
4780
|
);
|
|
4781
4781
|
exports2.AbstractNextTerminalAfterProductionWalker = AbstractNextTerminalAfterProductionWalker;
|
|
4782
4782
|
var NextTerminalAfterManyWalker = (
|
|
4783
4783
|
/** @class */
|
|
4784
|
-
function(_super) {
|
|
4784
|
+
(function(_super) {
|
|
4785
4785
|
__extends(NextTerminalAfterManyWalker2, _super);
|
|
4786
4786
|
function NextTerminalAfterManyWalker2() {
|
|
4787
4787
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -4799,12 +4799,12 @@ var require_interpreter = __commonJS({
|
|
|
4799
4799
|
}
|
|
4800
4800
|
};
|
|
4801
4801
|
return NextTerminalAfterManyWalker2;
|
|
4802
|
-
}(AbstractNextTerminalAfterProductionWalker)
|
|
4802
|
+
})(AbstractNextTerminalAfterProductionWalker)
|
|
4803
4803
|
);
|
|
4804
4804
|
exports2.NextTerminalAfterManyWalker = NextTerminalAfterManyWalker;
|
|
4805
4805
|
var NextTerminalAfterManySepWalker = (
|
|
4806
4806
|
/** @class */
|
|
4807
|
-
function(_super) {
|
|
4807
|
+
(function(_super) {
|
|
4808
4808
|
__extends(NextTerminalAfterManySepWalker2, _super);
|
|
4809
4809
|
function NextTerminalAfterManySepWalker2() {
|
|
4810
4810
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -4822,12 +4822,12 @@ var require_interpreter = __commonJS({
|
|
|
4822
4822
|
}
|
|
4823
4823
|
};
|
|
4824
4824
|
return NextTerminalAfterManySepWalker2;
|
|
4825
|
-
}(AbstractNextTerminalAfterProductionWalker)
|
|
4825
|
+
})(AbstractNextTerminalAfterProductionWalker)
|
|
4826
4826
|
);
|
|
4827
4827
|
exports2.NextTerminalAfterManySepWalker = NextTerminalAfterManySepWalker;
|
|
4828
4828
|
var NextTerminalAfterAtLeastOneWalker = (
|
|
4829
4829
|
/** @class */
|
|
4830
|
-
function(_super) {
|
|
4830
|
+
(function(_super) {
|
|
4831
4831
|
__extends(NextTerminalAfterAtLeastOneWalker2, _super);
|
|
4832
4832
|
function NextTerminalAfterAtLeastOneWalker2() {
|
|
4833
4833
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -4845,12 +4845,12 @@ var require_interpreter = __commonJS({
|
|
|
4845
4845
|
}
|
|
4846
4846
|
};
|
|
4847
4847
|
return NextTerminalAfterAtLeastOneWalker2;
|
|
4848
|
-
}(AbstractNextTerminalAfterProductionWalker)
|
|
4848
|
+
})(AbstractNextTerminalAfterProductionWalker)
|
|
4849
4849
|
);
|
|
4850
4850
|
exports2.NextTerminalAfterAtLeastOneWalker = NextTerminalAfterAtLeastOneWalker;
|
|
4851
4851
|
var NextTerminalAfterAtLeastOneSepWalker = (
|
|
4852
4852
|
/** @class */
|
|
4853
|
-
function(_super) {
|
|
4853
|
+
(function(_super) {
|
|
4854
4854
|
__extends(NextTerminalAfterAtLeastOneSepWalker2, _super);
|
|
4855
4855
|
function NextTerminalAfterAtLeastOneSepWalker2() {
|
|
4856
4856
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -4868,7 +4868,7 @@ var require_interpreter = __commonJS({
|
|
|
4868
4868
|
}
|
|
4869
4869
|
};
|
|
4870
4870
|
return NextTerminalAfterAtLeastOneSepWalker2;
|
|
4871
|
-
}(AbstractNextTerminalAfterProductionWalker)
|
|
4871
|
+
})(AbstractNextTerminalAfterProductionWalker)
|
|
4872
4872
|
);
|
|
4873
4873
|
exports2.NextTerminalAfterAtLeastOneSepWalker = NextTerminalAfterAtLeastOneSepWalker;
|
|
4874
4874
|
function possiblePathsFrom(targetDef, maxLength, currPath) {
|
|
@@ -5157,7 +5157,7 @@ var require_interpreter = __commonJS({
|
|
|
5157
5157
|
var require_lookahead = __commonJS({
|
|
5158
5158
|
"../../node_modules/.pnpm/chevrotain@6.5.0/node_modules/chevrotain/lib/src/parse/grammar/lookahead.js"(exports2) {
|
|
5159
5159
|
"use strict";
|
|
5160
|
-
var __extends = exports2 && exports2.__extends || /* @__PURE__ */ function() {
|
|
5160
|
+
var __extends = exports2 && exports2.__extends || /* @__PURE__ */ (function() {
|
|
5161
5161
|
var extendStatics = function(d, b) {
|
|
5162
5162
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
5163
5163
|
d2.__proto__ = b2;
|
|
@@ -5173,7 +5173,7 @@ var require_lookahead = __commonJS({
|
|
|
5173
5173
|
}
|
|
5174
5174
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
5175
5175
|
};
|
|
5176
|
-
}();
|
|
5176
|
+
})();
|
|
5177
5177
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
5178
5178
|
var utils_1 = require_utils();
|
|
5179
5179
|
var interpreter_1 = require_interpreter();
|
|
@@ -5342,7 +5342,7 @@ var require_lookahead = __commonJS({
|
|
|
5342
5342
|
exports2.buildSingleAlternativeLookaheadFunction = buildSingleAlternativeLookaheadFunction;
|
|
5343
5343
|
var RestDefinitionFinderWalker = (
|
|
5344
5344
|
/** @class */
|
|
5345
|
-
function(_super) {
|
|
5345
|
+
(function(_super) {
|
|
5346
5346
|
__extends(RestDefinitionFinderWalker2, _super);
|
|
5347
5347
|
function RestDefinitionFinderWalker2(topProd, targetOccurrence, targetProdType) {
|
|
5348
5348
|
var _this = _super.call(this) || this;
|
|
@@ -5388,11 +5388,11 @@ var require_lookahead = __commonJS({
|
|
|
5388
5388
|
}
|
|
5389
5389
|
};
|
|
5390
5390
|
return RestDefinitionFinderWalker2;
|
|
5391
|
-
}(rest_1.RestWalker)
|
|
5391
|
+
})(rest_1.RestWalker)
|
|
5392
5392
|
);
|
|
5393
5393
|
var InsideDefinitionFinderVisitor = (
|
|
5394
5394
|
/** @class */
|
|
5395
|
-
function(_super) {
|
|
5395
|
+
(function(_super) {
|
|
5396
5396
|
__extends(InsideDefinitionFinderVisitor2, _super);
|
|
5397
5397
|
function InsideDefinitionFinderVisitor2(targetOccurrence, targetProdType, targetRef) {
|
|
5398
5398
|
var _this = _super.call(this) || this;
|
|
@@ -5426,7 +5426,7 @@ var require_lookahead = __commonJS({
|
|
|
5426
5426
|
this.checkIsTarget(node, PROD_TYPE.ALTERNATION);
|
|
5427
5427
|
};
|
|
5428
5428
|
return InsideDefinitionFinderVisitor2;
|
|
5429
|
-
}(gast_visitor_public_1.GAstVisitor)
|
|
5429
|
+
})(gast_visitor_public_1.GAstVisitor)
|
|
5430
5430
|
);
|
|
5431
5431
|
function initializeArrayOfArrays(size) {
|
|
5432
5432
|
var result = new Array(size);
|
|
@@ -5581,7 +5581,7 @@ var require_lookahead = __commonJS({
|
|
|
5581
5581
|
var require_checks = __commonJS({
|
|
5582
5582
|
"../../node_modules/.pnpm/chevrotain@6.5.0/node_modules/chevrotain/lib/src/parse/grammar/checks.js"(exports2) {
|
|
5583
5583
|
"use strict";
|
|
5584
|
-
var __extends = exports2 && exports2.__extends || /* @__PURE__ */ function() {
|
|
5584
|
+
var __extends = exports2 && exports2.__extends || /* @__PURE__ */ (function() {
|
|
5585
5585
|
var extendStatics = function(d, b) {
|
|
5586
5586
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
5587
5587
|
d2.__proto__ = b2;
|
|
@@ -5597,7 +5597,7 @@ var require_checks = __commonJS({
|
|
|
5597
5597
|
}
|
|
5598
5598
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
5599
5599
|
};
|
|
5600
|
-
}();
|
|
5600
|
+
})();
|
|
5601
5601
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
5602
5602
|
var utils = require_utils();
|
|
5603
5603
|
var utils_1 = require_utils();
|
|
@@ -5701,7 +5701,7 @@ var require_checks = __commonJS({
|
|
|
5701
5701
|
}
|
|
5702
5702
|
var OccurrenceValidationCollector = (
|
|
5703
5703
|
/** @class */
|
|
5704
|
-
function(_super) {
|
|
5704
|
+
(function(_super) {
|
|
5705
5705
|
__extends(OccurrenceValidationCollector2, _super);
|
|
5706
5706
|
function OccurrenceValidationCollector2() {
|
|
5707
5707
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -5733,7 +5733,7 @@ var require_checks = __commonJS({
|
|
|
5733
5733
|
this.allProductions.push(terminal);
|
|
5734
5734
|
};
|
|
5735
5735
|
return OccurrenceValidationCollector2;
|
|
5736
|
-
}(gast_visitor_public_1.GAstVisitor)
|
|
5736
|
+
})(gast_visitor_public_1.GAstVisitor)
|
|
5737
5737
|
);
|
|
5738
5738
|
exports2.OccurrenceValidationCollector = OccurrenceValidationCollector;
|
|
5739
5739
|
exports2.validTermsPattern = /^[a-zA-Z_]\w*$/;
|
|
@@ -5880,7 +5880,7 @@ var require_checks = __commonJS({
|
|
|
5880
5880
|
exports2.getFirstNoneTerminal = getFirstNoneTerminal;
|
|
5881
5881
|
var OrCollector = (
|
|
5882
5882
|
/** @class */
|
|
5883
|
-
function(_super) {
|
|
5883
|
+
(function(_super) {
|
|
5884
5884
|
__extends(OrCollector2, _super);
|
|
5885
5885
|
function OrCollector2() {
|
|
5886
5886
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -5891,7 +5891,7 @@ var require_checks = __commonJS({
|
|
|
5891
5891
|
this.alternations.push(node);
|
|
5892
5892
|
};
|
|
5893
5893
|
return OrCollector2;
|
|
5894
|
-
}(gast_visitor_public_1.GAstVisitor)
|
|
5894
|
+
})(gast_visitor_public_1.GAstVisitor)
|
|
5895
5895
|
);
|
|
5896
5896
|
function validateEmptyOrAlternative(topLevelRule, errMsgProvider) {
|
|
5897
5897
|
var orCollector = new OrCollector();
|
|
@@ -5948,7 +5948,7 @@ var require_checks = __commonJS({
|
|
|
5948
5948
|
exports2.validateAmbiguousAlternationAlternatives = validateAmbiguousAlternationAlternatives;
|
|
5949
5949
|
var RepetionCollector = (
|
|
5950
5950
|
/** @class */
|
|
5951
|
-
function(_super) {
|
|
5951
|
+
(function(_super) {
|
|
5952
5952
|
__extends(RepetionCollector2, _super);
|
|
5953
5953
|
function RepetionCollector2() {
|
|
5954
5954
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -5968,7 +5968,7 @@ var require_checks = __commonJS({
|
|
|
5968
5968
|
this.allProductions.push(many);
|
|
5969
5969
|
};
|
|
5970
5970
|
return RepetionCollector2;
|
|
5971
|
-
}(gast_visitor_public_1.GAstVisitor)
|
|
5971
|
+
})(gast_visitor_public_1.GAstVisitor)
|
|
5972
5972
|
);
|
|
5973
5973
|
exports2.RepetionCollector = RepetionCollector;
|
|
5974
5974
|
function validateTooManyAlts(topLevelRule, errMsgProvider) {
|
|
@@ -6332,7 +6332,7 @@ var require_errors_public = __commonJS({
|
|
|
6332
6332
|
var require_resolver = __commonJS({
|
|
6333
6333
|
"../../node_modules/.pnpm/chevrotain@6.5.0/node_modules/chevrotain/lib/src/parse/grammar/resolver.js"(exports2) {
|
|
6334
6334
|
"use strict";
|
|
6335
|
-
var __extends = exports2 && exports2.__extends || /* @__PURE__ */ function() {
|
|
6335
|
+
var __extends = exports2 && exports2.__extends || /* @__PURE__ */ (function() {
|
|
6336
6336
|
var extendStatics = function(d, b) {
|
|
6337
6337
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
6338
6338
|
d2.__proto__ = b2;
|
|
@@ -6348,7 +6348,7 @@ var require_resolver = __commonJS({
|
|
|
6348
6348
|
}
|
|
6349
6349
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
6350
6350
|
};
|
|
6351
|
-
}();
|
|
6351
|
+
})();
|
|
6352
6352
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
6353
6353
|
var parser_1 = require_parser();
|
|
6354
6354
|
var utils_1 = require_utils();
|
|
@@ -6361,7 +6361,7 @@ var require_resolver = __commonJS({
|
|
|
6361
6361
|
exports2.resolveGrammar = resolveGrammar;
|
|
6362
6362
|
var GastRefResolverVisitor = (
|
|
6363
6363
|
/** @class */
|
|
6364
|
-
function(_super) {
|
|
6364
|
+
(function(_super) {
|
|
6365
6365
|
__extends(GastRefResolverVisitor2, _super);
|
|
6366
6366
|
function GastRefResolverVisitor2(nameToTopRule, errMsgProvider) {
|
|
6367
6367
|
var _this = _super.call(this) || this;
|
|
@@ -6392,7 +6392,7 @@ var require_resolver = __commonJS({
|
|
|
6392
6392
|
}
|
|
6393
6393
|
};
|
|
6394
6394
|
return GastRefResolverVisitor2;
|
|
6395
|
-
}(gast_visitor_public_1.GAstVisitor)
|
|
6395
|
+
})(gast_visitor_public_1.GAstVisitor)
|
|
6396
6396
|
);
|
|
6397
6397
|
exports2.GastRefResolverVisitor = GastRefResolverVisitor;
|
|
6398
6398
|
}
|
|
@@ -6521,7 +6521,7 @@ var require_recoverable = __commonJS({
|
|
|
6521
6521
|
InRuleRecoveryException.prototype = Error.prototype;
|
|
6522
6522
|
var Recoverable = (
|
|
6523
6523
|
/** @class */
|
|
6524
|
-
function() {
|
|
6524
|
+
(function() {
|
|
6525
6525
|
function Recoverable2() {
|
|
6526
6526
|
}
|
|
6527
6527
|
Recoverable2.prototype.initRecoverable = function(config) {
|
|
@@ -6742,7 +6742,7 @@ var require_recoverable = __commonJS({
|
|
|
6742
6742
|
}
|
|
6743
6743
|
};
|
|
6744
6744
|
return Recoverable2;
|
|
6745
|
-
}()
|
|
6745
|
+
})()
|
|
6746
6746
|
);
|
|
6747
6747
|
exports2.Recoverable = Recoverable;
|
|
6748
6748
|
function attemptInRepetitionRecovery(prodFunc, args, lookaheadFunc, dslMethodIdx, prodOccurrence, nextToksWalker, notStuck) {
|
|
@@ -6782,7 +6782,7 @@ var require_looksahead = __commonJS({
|
|
|
6782
6782
|
var gast_1 = require_gast();
|
|
6783
6783
|
var LooksAhead = (
|
|
6784
6784
|
/** @class */
|
|
6785
|
-
function() {
|
|
6785
|
+
(function() {
|
|
6786
6786
|
function LooksAhead2() {
|
|
6787
6787
|
}
|
|
6788
6788
|
LooksAhead2.prototype.initLooksAhead = function(config) {
|
|
@@ -6864,7 +6864,7 @@ var require_looksahead = __commonJS({
|
|
|
6864
6864
|
this.lookAheadFuncsCache[key] = value;
|
|
6865
6865
|
};
|
|
6866
6866
|
return LooksAhead2;
|
|
6867
|
-
}()
|
|
6867
|
+
})()
|
|
6868
6868
|
);
|
|
6869
6869
|
exports2.LooksAhead = LooksAhead;
|
|
6870
6870
|
}
|
|
@@ -7038,7 +7038,7 @@ var require_tree_builder = __commonJS({
|
|
|
7038
7038
|
var parser_1 = require_parser();
|
|
7039
7039
|
var TreeBuilder = (
|
|
7040
7040
|
/** @class */
|
|
7041
|
-
function() {
|
|
7041
|
+
(function() {
|
|
7042
7042
|
function TreeBuilder2() {
|
|
7043
7043
|
}
|
|
7044
7044
|
TreeBuilder2.prototype.initTreeBuilder = function(config) {
|
|
@@ -7277,7 +7277,7 @@ var require_tree_builder = __commonJS({
|
|
|
7277
7277
|
this.cstNestedFinallyStateUpdate();
|
|
7278
7278
|
};
|
|
7279
7279
|
return TreeBuilder2;
|
|
7280
|
-
}()
|
|
7280
|
+
})()
|
|
7281
7281
|
);
|
|
7282
7282
|
exports2.TreeBuilder = TreeBuilder;
|
|
7283
7283
|
}
|
|
@@ -7291,7 +7291,7 @@ var require_lexer_adapter = __commonJS({
|
|
|
7291
7291
|
var parser_1 = require_parser();
|
|
7292
7292
|
var LexerAdapter = (
|
|
7293
7293
|
/** @class */
|
|
7294
|
-
function() {
|
|
7294
|
+
(function() {
|
|
7295
7295
|
function LexerAdapter2() {
|
|
7296
7296
|
}
|
|
7297
7297
|
LexerAdapter2.prototype.initLexerAdapter = function() {
|
|
@@ -7349,7 +7349,7 @@ var require_lexer_adapter = __commonJS({
|
|
|
7349
7349
|
return this.exportLexerState();
|
|
7350
7350
|
};
|
|
7351
7351
|
return LexerAdapter2;
|
|
7352
|
-
}()
|
|
7352
|
+
})()
|
|
7353
7353
|
);
|
|
7354
7354
|
exports2.LexerAdapter = LexerAdapter;
|
|
7355
7355
|
}
|
|
@@ -7368,7 +7368,7 @@ var require_recognizer_api = __commonJS({
|
|
|
7368
7368
|
var gast_public_1 = require_gast_public();
|
|
7369
7369
|
var RecognizerApi = (
|
|
7370
7370
|
/** @class */
|
|
7371
|
-
function() {
|
|
7371
|
+
(function() {
|
|
7372
7372
|
function RecognizerApi2() {
|
|
7373
7373
|
}
|
|
7374
7374
|
RecognizerApi2.prototype.ACTION = function(impl) {
|
|
@@ -7690,7 +7690,7 @@ var require_recognizer_api = __commonJS({
|
|
|
7690
7690
|
return gast_public_1.serializeGrammar(utils_1.values(this.gastProductionsCache));
|
|
7691
7691
|
};
|
|
7692
7692
|
return RecognizerApi2;
|
|
7693
|
-
}()
|
|
7693
|
+
})()
|
|
7694
7694
|
);
|
|
7695
7695
|
exports2.RecognizerApi = RecognizerApi;
|
|
7696
7696
|
}
|
|
@@ -7713,7 +7713,7 @@ var require_recognizer_engine = __commonJS({
|
|
|
7713
7713
|
var lang_extensions_1 = require_lang_extensions();
|
|
7714
7714
|
var RecognizerEngine = (
|
|
7715
7715
|
/** @class */
|
|
7716
|
-
function() {
|
|
7716
|
+
(function() {
|
|
7717
7717
|
function RecognizerEngine2() {
|
|
7718
7718
|
}
|
|
7719
7719
|
RecognizerEngine2.prototype.initRecognizerEngine = function(tokenVocabulary, config) {
|
|
@@ -8224,7 +8224,7 @@ var require_recognizer_engine = __commonJS({
|
|
|
8224
8224
|
this.RULE_OCCURRENCE_STACK = [];
|
|
8225
8225
|
};
|
|
8226
8226
|
return RecognizerEngine2;
|
|
8227
|
-
}()
|
|
8227
|
+
})()
|
|
8228
8228
|
);
|
|
8229
8229
|
exports2.RecognizerEngine = RecognizerEngine;
|
|
8230
8230
|
}
|
|
@@ -8241,7 +8241,7 @@ var require_error_handler = __commonJS({
|
|
|
8241
8241
|
var parser_1 = require_parser();
|
|
8242
8242
|
var ErrorHandler = (
|
|
8243
8243
|
/** @class */
|
|
8244
|
-
function() {
|
|
8244
|
+
(function() {
|
|
8245
8245
|
function ErrorHandler2() {
|
|
8246
8246
|
}
|
|
8247
8247
|
ErrorHandler2.prototype.initErrorHandler = function(config) {
|
|
@@ -8308,7 +8308,7 @@ var require_error_handler = __commonJS({
|
|
|
8308
8308
|
throw this.SAVE_ERROR(new exceptions_public_1.NoViableAltException(errMsg, this.LA(1), previousToken));
|
|
8309
8309
|
};
|
|
8310
8310
|
return ErrorHandler2;
|
|
8311
|
-
}()
|
|
8311
|
+
})()
|
|
8312
8312
|
);
|
|
8313
8313
|
exports2.ErrorHandler = ErrorHandler;
|
|
8314
8314
|
}
|
|
@@ -8323,7 +8323,7 @@ var require_context_assist = __commonJS({
|
|
|
8323
8323
|
var utils_1 = require_utils();
|
|
8324
8324
|
var ContentAssist = (
|
|
8325
8325
|
/** @class */
|
|
8326
|
-
function() {
|
|
8326
|
+
(function() {
|
|
8327
8327
|
function ContentAssist2() {
|
|
8328
8328
|
}
|
|
8329
8329
|
ContentAssist2.prototype.initContentAssist = function() {
|
|
@@ -8343,7 +8343,7 @@ var require_context_assist = __commonJS({
|
|
|
8343
8343
|
return nextPossibleTokenTypes;
|
|
8344
8344
|
};
|
|
8345
8345
|
return ContentAssist2;
|
|
8346
|
-
}()
|
|
8346
|
+
})()
|
|
8347
8347
|
);
|
|
8348
8348
|
exports2.ContentAssist = ContentAssist;
|
|
8349
8349
|
}
|
|
@@ -8388,7 +8388,7 @@ var require_gast_recorder = __commonJS({
|
|
|
8388
8388
|
};
|
|
8389
8389
|
var GastRecorder = (
|
|
8390
8390
|
/** @class */
|
|
8391
|
-
function() {
|
|
8391
|
+
(function() {
|
|
8392
8392
|
function GastRecorder2() {
|
|
8393
8393
|
}
|
|
8394
8394
|
GastRecorder2.prototype.initGastRecorder = function(config) {
|
|
@@ -8560,7 +8560,7 @@ var require_gast_recorder = __commonJS({
|
|
|
8560
8560
|
return RECORDING_PHASE_TOKEN;
|
|
8561
8561
|
};
|
|
8562
8562
|
return GastRecorder2;
|
|
8563
|
-
}()
|
|
8563
|
+
})()
|
|
8564
8564
|
);
|
|
8565
8565
|
exports2.GastRecorder = GastRecorder;
|
|
8566
8566
|
function recordProd(prodConstructor, mainProdArg, occurrence, handleSep) {
|
|
@@ -8650,7 +8650,7 @@ var require_perf_tracer = __commonJS({
|
|
|
8650
8650
|
var parser_1 = require_parser();
|
|
8651
8651
|
var PerformanceTracer = (
|
|
8652
8652
|
/** @class */
|
|
8653
|
-
function() {
|
|
8653
|
+
(function() {
|
|
8654
8654
|
function PerformanceTracer2() {
|
|
8655
8655
|
}
|
|
8656
8656
|
PerformanceTracer2.prototype.initPerformanceTracer = function(config) {
|
|
@@ -8684,7 +8684,7 @@ var require_perf_tracer = __commonJS({
|
|
|
8684
8684
|
}
|
|
8685
8685
|
};
|
|
8686
8686
|
return PerformanceTracer2;
|
|
8687
|
-
}()
|
|
8687
|
+
})()
|
|
8688
8688
|
);
|
|
8689
8689
|
exports2.PerformanceTracer = PerformanceTracer;
|
|
8690
8690
|
}
|
|
@@ -8694,7 +8694,7 @@ var require_perf_tracer = __commonJS({
|
|
|
8694
8694
|
var require_parser = __commonJS({
|
|
8695
8695
|
"../../node_modules/.pnpm/chevrotain@6.5.0/node_modules/chevrotain/lib/src/parse/parser/parser.js"(exports2) {
|
|
8696
8696
|
"use strict";
|
|
8697
|
-
var __extends = exports2 && exports2.__extends || /* @__PURE__ */ function() {
|
|
8697
|
+
var __extends = exports2 && exports2.__extends || /* @__PURE__ */ (function() {
|
|
8698
8698
|
var extendStatics = function(d, b) {
|
|
8699
8699
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
8700
8700
|
d2.__proto__ = b2;
|
|
@@ -8710,7 +8710,7 @@ var require_parser = __commonJS({
|
|
|
8710
8710
|
}
|
|
8711
8711
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
8712
8712
|
};
|
|
8713
|
-
}();
|
|
8713
|
+
})();
|
|
8714
8714
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
8715
8715
|
var utils_1 = require_utils();
|
|
8716
8716
|
var follow_1 = require_follow();
|
|
@@ -8776,7 +8776,7 @@ var require_parser = __commonJS({
|
|
|
8776
8776
|
exports2.EMPTY_ALT = EMPTY_ALT;
|
|
8777
8777
|
var Parser = (
|
|
8778
8778
|
/** @class */
|
|
8779
|
-
function() {
|
|
8779
|
+
(function() {
|
|
8780
8780
|
function Parser2(tokenVocabulary, config) {
|
|
8781
8781
|
if (config === void 0) {
|
|
8782
8782
|
config = exports2.DEFAULT_PARSER_CONFIG;
|
|
@@ -8874,7 +8874,7 @@ var require_parser = __commonJS({
|
|
|
8874
8874
|
};
|
|
8875
8875
|
Parser2.DEFER_DEFINITION_ERRORS_HANDLING = false;
|
|
8876
8876
|
return Parser2;
|
|
8877
|
-
}()
|
|
8877
|
+
})()
|
|
8878
8878
|
);
|
|
8879
8879
|
exports2.Parser = Parser;
|
|
8880
8880
|
utils_1.applyMixins(Parser, [
|
|
@@ -8891,7 +8891,7 @@ var require_parser = __commonJS({
|
|
|
8891
8891
|
]);
|
|
8892
8892
|
var CstParser = (
|
|
8893
8893
|
/** @class */
|
|
8894
|
-
function(_super) {
|
|
8894
|
+
(function(_super) {
|
|
8895
8895
|
__extends(CstParser2, _super);
|
|
8896
8896
|
function CstParser2(tokenVocabulary, config) {
|
|
8897
8897
|
if (config === void 0) {
|
|
@@ -8904,12 +8904,12 @@ var require_parser = __commonJS({
|
|
|
8904
8904
|
return _this;
|
|
8905
8905
|
}
|
|
8906
8906
|
return CstParser2;
|
|
8907
|
-
}(Parser)
|
|
8907
|
+
})(Parser)
|
|
8908
8908
|
);
|
|
8909
8909
|
exports2.CstParser = CstParser;
|
|
8910
8910
|
var EmbeddedActionsParser = (
|
|
8911
8911
|
/** @class */
|
|
8912
|
-
function(_super) {
|
|
8912
|
+
(function(_super) {
|
|
8913
8913
|
__extends(EmbeddedActionsParser2, _super);
|
|
8914
8914
|
function EmbeddedActionsParser2(tokenVocabulary, config) {
|
|
8915
8915
|
if (config === void 0) {
|
|
@@ -8922,7 +8922,7 @@ var require_parser = __commonJS({
|
|
|
8922
8922
|
return _this;
|
|
8923
8923
|
}
|
|
8924
8924
|
return EmbeddedActionsParser2;
|
|
8925
|
-
}(Parser)
|
|
8925
|
+
})(Parser)
|
|
8926
8926
|
);
|
|
8927
8927
|
exports2.EmbeddedActionsParser = EmbeddedActionsParser;
|
|
8928
8928
|
}
|
|
@@ -35351,7 +35351,7 @@ var require_bessel = __commonJS({
|
|
|
35351
35351
|
return _bessel_iter(x, n, b0, b1, sign);
|
|
35352
35352
|
};
|
|
35353
35353
|
}
|
|
35354
|
-
var besselj = exports2.besselj = function() {
|
|
35354
|
+
var besselj = exports2.besselj = (function() {
|
|
35355
35355
|
var W = 0.636619772;
|
|
35356
35356
|
var b0_a1a = [57568490574, -13362590354, 6516196407e-1, -1121442418e-2, 77392.33017, -184.9052456].reverse();
|
|
35357
35357
|
var b0_a2a = [57568490411, 1029532985, 9494680718e-3, 59272.64853, 267.8532712, 1].reverse();
|
|
@@ -35445,8 +35445,8 @@ var require_bessel = __commonJS({
|
|
|
35445
35445
|
}
|
|
35446
35446
|
return ret;
|
|
35447
35447
|
};
|
|
35448
|
-
}();
|
|
35449
|
-
var bessely = exports2.bessely = function() {
|
|
35448
|
+
})();
|
|
35449
|
+
var bessely = exports2.bessely = (function() {
|
|
35450
35450
|
var W = 0.636619772;
|
|
35451
35451
|
var b0_a1a = [-2957821389, 7062834065, -5123598036e-1, 1087988129e-2, -86327.92757, 228.4622733].reverse();
|
|
35452
35452
|
var b0_a2a = [40076544269, 7452499648e-1, 7189466438e-3, 47447.2647, 226.1030244, 1].reverse();
|
|
@@ -35485,8 +35485,8 @@ var require_bessel = __commonJS({
|
|
|
35485
35485
|
return a;
|
|
35486
35486
|
}
|
|
35487
35487
|
return _bessel_wrap(bessel0, bessel1, "BESSELY", 1, -1);
|
|
35488
|
-
}();
|
|
35489
|
-
var besseli = exports2.besseli = function() {
|
|
35488
|
+
})();
|
|
35489
|
+
var besseli = exports2.besseli = (function() {
|
|
35490
35490
|
var b0_a = [1, 3.5156229, 3.0899424, 1.2067492, 0.2659732, 0.0360768, 45813e-7].reverse();
|
|
35491
35491
|
var b0_b = [0.39894228, 0.01328592, 225319e-8, -157565e-8, 916281e-8, -0.02057706, 0.02635537, -0.01647633, 392377e-8].reverse();
|
|
35492
35492
|
function bessel0(x) {
|
|
@@ -35538,8 +35538,8 @@ var require_bessel = __commonJS({
|
|
|
35538
35538
|
ret *= besseli2(x, 0) / bi;
|
|
35539
35539
|
return x < 0 && n % 2 ? -ret : ret;
|
|
35540
35540
|
};
|
|
35541
|
-
}();
|
|
35542
|
-
var besselk = exports2.besselk = function() {
|
|
35541
|
+
})();
|
|
35542
|
+
var besselk = exports2.besselk = (function() {
|
|
35543
35543
|
var b0_a = [-0.57721566, 0.4227842, 0.23069756, 0.0348859, 262698e-8, 1075e-7, 74e-7].reverse();
|
|
35544
35544
|
var b0_b = [1.25331414, -0.07832358, 0.02189568, -0.01062446, 587872e-8, -25154e-7, 53208e-8].reverse();
|
|
35545
35545
|
function bessel0(x) {
|
|
@@ -35557,7 +35557,7 @@ var require_bessel = __commonJS({
|
|
|
35557
35557
|
return M.exp(-x) / M.sqrt(x) * _horner(b1_b, 2 / x);
|
|
35558
35558
|
}
|
|
35559
35559
|
return _bessel_wrap(bessel0, bessel1, "BESSELK", 2, 1);
|
|
35560
|
-
}();
|
|
35560
|
+
})();
|
|
35561
35561
|
}
|
|
35562
35562
|
});
|
|
35563
35563
|
|