@jorgsowa/php-parser 3.2.5-1 → 3.2.5
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.
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
*
|
|
3
3
|
* Package: @jorgsowa/php-parser
|
|
4
4
|
* Parse PHP code from JS and returns its AST
|
|
5
|
-
* Build:
|
|
5
|
+
* Build: 63b6cdec1729bc049a82 - 1/6/2026
|
|
6
6
|
* Copyright (C) 2021 Glayzzle (BSD-3-Clause)
|
|
7
7
|
* @authors https://github.com/glayzzle/php-parser/graphs/contributors
|
|
8
8
|
* @url http://glayzzle.com
|
|
@@ -22,7 +22,7 @@ return /******/ (() => { // webpackBootstrap
|
|
|
22
22
|
/******/ "use strict";
|
|
23
23
|
/******/ var __webpack_modules__ = ({
|
|
24
24
|
|
|
25
|
-
/***/
|
|
25
|
+
/***/ 575:
|
|
26
26
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
27
27
|
|
|
28
28
|
/**
|
|
@@ -32,8 +32,8 @@ return /******/ (() => { // webpackBootstrap
|
|
|
32
32
|
*/
|
|
33
33
|
|
|
34
34
|
|
|
35
|
-
var Location = __webpack_require__(
|
|
36
|
-
var Position = __webpack_require__(
|
|
35
|
+
var Location = __webpack_require__(5441);
|
|
36
|
+
var Position = __webpack_require__(6085);
|
|
37
37
|
|
|
38
38
|
/**
|
|
39
39
|
* ## Class hierarchy
|
|
@@ -445,14 +445,14 @@ AST.prototype.checkNodes = function () {
|
|
|
445
445
|
};
|
|
446
446
|
|
|
447
447
|
// Define all AST nodes
|
|
448
|
-
[__webpack_require__(
|
|
448
|
+
[__webpack_require__(7057), __webpack_require__(6967), __webpack_require__(3435), __webpack_require__(778), __webpack_require__(548), __webpack_require__(2302), __webpack_require__(8449), __webpack_require__(7141), __webpack_require__(1012), __webpack_require__(4207), __webpack_require__(7202), __webpack_require__(4794), __webpack_require__(1274), __webpack_require__(8121), __webpack_require__(9627), __webpack_require__(388), __webpack_require__(432), __webpack_require__(8005), __webpack_require__(1013), __webpack_require__(1193), __webpack_require__(5928), __webpack_require__(1523), __webpack_require__(5414), __webpack_require__(1985), __webpack_require__(451), __webpack_require__(2600), __webpack_require__(9366), __webpack_require__(1661), __webpack_require__(1235), __webpack_require__(9123), __webpack_require__(4369), __webpack_require__(5509), __webpack_require__(6224), __webpack_require__(4800), __webpack_require__(8791), __webpack_require__(5091), __webpack_require__(5818), __webpack_require__(7308), __webpack_require__(3214), __webpack_require__(8808), __webpack_require__(951), __webpack_require__(2367), __webpack_require__(2058), __webpack_require__(3194), __webpack_require__(5729), __webpack_require__(3449), __webpack_require__(6901), __webpack_require__(3697), __webpack_require__(7393), __webpack_require__(4828), __webpack_require__(7763), __webpack_require__(103), __webpack_require__(5999), __webpack_require__(328), __webpack_require__(4630), __webpack_require__(8370), __webpack_require__(6747), __webpack_require__(7128), __webpack_require__(1779), __webpack_require__(9185), __webpack_require__(1303), __webpack_require__(1247), __webpack_require__(4145), __webpack_require__(8495), __webpack_require__(7050), __webpack_require__(866), __webpack_require__(4230), __webpack_require__(4398), __webpack_require__(8520), __webpack_require__(3708), __webpack_require__(7829), __webpack_require__(2503), __webpack_require__(9635), __webpack_require__(905), __webpack_require__(5567), __webpack_require__(6125), __webpack_require__(9324), __webpack_require__(2329), __webpack_require__(8071), __webpack_require__(1032), __webpack_require__(599), __webpack_require__(6580), __webpack_require__(697), __webpack_require__(7910), __webpack_require__(7261), __webpack_require__(8920), __webpack_require__(3540), __webpack_require__(7571), __webpack_require__(579), __webpack_require__(6457), __webpack_require__(1368), __webpack_require__(8372), __webpack_require__(6670), __webpack_require__(8895), __webpack_require__(9783), __webpack_require__(7778), __webpack_require__(7284), __webpack_require__(1008), __webpack_require__(7110), __webpack_require__(936), __webpack_require__(4133), __webpack_require__(3473), __webpack_require__(8325), __webpack_require__(9967), __webpack_require__(8723), __webpack_require__(1133), __webpack_require__(2996), __webpack_require__(6584), __webpack_require__(4374), __webpack_require__(4567), __webpack_require__(8502), __webpack_require__(977), __webpack_require__(785), __webpack_require__(2717)].forEach(function (ctor) {
|
|
449
449
|
AST.prototype[ctor.kind] = ctor;
|
|
450
450
|
});
|
|
451
451
|
module.exports = AST;
|
|
452
452
|
|
|
453
453
|
/***/ }),
|
|
454
454
|
|
|
455
|
-
/***/
|
|
455
|
+
/***/ 7057:
|
|
456
456
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
457
457
|
|
|
458
458
|
/**
|
|
@@ -462,7 +462,7 @@ module.exports = AST;
|
|
|
462
462
|
*/
|
|
463
463
|
|
|
464
464
|
|
|
465
|
-
var Expr = __webpack_require__(
|
|
465
|
+
var Expr = __webpack_require__(8808);
|
|
466
466
|
var KIND = "array";
|
|
467
467
|
|
|
468
468
|
/**
|
|
@@ -499,7 +499,7 @@ module.exports = Expr["extends"](KIND, function Array(shortForm, items, docs, lo
|
|
|
499
499
|
|
|
500
500
|
/***/ }),
|
|
501
501
|
|
|
502
|
-
/***/
|
|
502
|
+
/***/ 6967:
|
|
503
503
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
504
504
|
|
|
505
505
|
/**
|
|
@@ -509,7 +509,7 @@ module.exports = Expr["extends"](KIND, function Array(shortForm, items, docs, lo
|
|
|
509
509
|
*/
|
|
510
510
|
|
|
511
511
|
|
|
512
|
-
var Expression = __webpack_require__(
|
|
512
|
+
var Expression = __webpack_require__(8808);
|
|
513
513
|
var KIND = "arrowfunc";
|
|
514
514
|
|
|
515
515
|
/**
|
|
@@ -536,7 +536,7 @@ module.exports = Expression["extends"](KIND, function Closure(args, byref, body,
|
|
|
536
536
|
|
|
537
537
|
/***/ }),
|
|
538
538
|
|
|
539
|
-
/***/
|
|
539
|
+
/***/ 3435:
|
|
540
540
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
541
541
|
|
|
542
542
|
/**
|
|
@@ -546,7 +546,7 @@ module.exports = Expression["extends"](KIND, function Closure(args, byref, body,
|
|
|
546
546
|
*/
|
|
547
547
|
|
|
548
548
|
|
|
549
|
-
var Expression = __webpack_require__(
|
|
549
|
+
var Expression = __webpack_require__(8808);
|
|
550
550
|
var KIND = "assign";
|
|
551
551
|
|
|
552
552
|
/**
|
|
@@ -567,7 +567,7 @@ module.exports = Expression["extends"](KIND, function Assign(left, right, operat
|
|
|
567
567
|
|
|
568
568
|
/***/ }),
|
|
569
569
|
|
|
570
|
-
/***/
|
|
570
|
+
/***/ 778:
|
|
571
571
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
572
572
|
|
|
573
573
|
/**
|
|
@@ -577,7 +577,7 @@ module.exports = Expression["extends"](KIND, function Assign(left, right, operat
|
|
|
577
577
|
*/
|
|
578
578
|
|
|
579
579
|
|
|
580
|
-
var Expression = __webpack_require__(
|
|
580
|
+
var Expression = __webpack_require__(8808);
|
|
581
581
|
var KIND = "assignref";
|
|
582
582
|
|
|
583
583
|
/**
|
|
@@ -597,7 +597,7 @@ module.exports = Expression["extends"](KIND, function AssignRef(left, right, doc
|
|
|
597
597
|
|
|
598
598
|
/***/ }),
|
|
599
599
|
|
|
600
|
-
/***/
|
|
600
|
+
/***/ 2302:
|
|
601
601
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
602
602
|
|
|
603
603
|
/**
|
|
@@ -607,7 +607,7 @@ module.exports = Expression["extends"](KIND, function AssignRef(left, right, doc
|
|
|
607
607
|
*/
|
|
608
608
|
|
|
609
609
|
|
|
610
|
-
var Node = __webpack_require__(
|
|
610
|
+
var Node = __webpack_require__(4230);
|
|
611
611
|
var KIND = "attrgroup";
|
|
612
612
|
|
|
613
613
|
/**
|
|
@@ -624,7 +624,7 @@ module.exports = Node["extends"](KIND, function AttrGroup(attrs, docs, location)
|
|
|
624
624
|
|
|
625
625
|
/***/ }),
|
|
626
626
|
|
|
627
|
-
/***/
|
|
627
|
+
/***/ 548:
|
|
628
628
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
629
629
|
|
|
630
630
|
/**
|
|
@@ -634,7 +634,7 @@ module.exports = Node["extends"](KIND, function AttrGroup(attrs, docs, location)
|
|
|
634
634
|
*/
|
|
635
635
|
|
|
636
636
|
|
|
637
|
-
var Node = __webpack_require__(
|
|
637
|
+
var Node = __webpack_require__(4230);
|
|
638
638
|
var KIND = "attribute";
|
|
639
639
|
|
|
640
640
|
/**
|
|
@@ -653,7 +653,7 @@ module.exports = Node["extends"](KIND, function Attribute(name, args, docs, loca
|
|
|
653
653
|
|
|
654
654
|
/***/ }),
|
|
655
655
|
|
|
656
|
-
/***/
|
|
656
|
+
/***/ 8449:
|
|
657
657
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
658
658
|
|
|
659
659
|
/**
|
|
@@ -663,7 +663,7 @@ module.exports = Node["extends"](KIND, function Attribute(name, args, docs, loca
|
|
|
663
663
|
*/
|
|
664
664
|
|
|
665
665
|
|
|
666
|
-
var Operation = __webpack_require__(
|
|
666
|
+
var Operation = __webpack_require__(905);
|
|
667
667
|
var KIND = "bin";
|
|
668
668
|
/**
|
|
669
669
|
* Binary operations
|
|
@@ -683,7 +683,7 @@ module.exports = Operation["extends"](KIND, function Bin(type, left, right, docs
|
|
|
683
683
|
|
|
684
684
|
/***/ }),
|
|
685
685
|
|
|
686
|
-
/***/
|
|
686
|
+
/***/ 7141:
|
|
687
687
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
688
688
|
|
|
689
689
|
/**
|
|
@@ -693,7 +693,7 @@ module.exports = Operation["extends"](KIND, function Bin(type, left, right, docs
|
|
|
693
693
|
*/
|
|
694
694
|
|
|
695
695
|
|
|
696
|
-
var Statement = __webpack_require__(
|
|
696
|
+
var Statement = __webpack_require__(6457);
|
|
697
697
|
var KIND = "block";
|
|
698
698
|
|
|
699
699
|
/**
|
|
@@ -710,7 +710,7 @@ module.exports = Statement["extends"](KIND, function Block(kind, children, docs,
|
|
|
710
710
|
|
|
711
711
|
/***/ }),
|
|
712
712
|
|
|
713
|
-
/***/
|
|
713
|
+
/***/ 1012:
|
|
714
714
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
715
715
|
|
|
716
716
|
/**
|
|
@@ -720,7 +720,7 @@ module.exports = Statement["extends"](KIND, function Block(kind, children, docs,
|
|
|
720
720
|
*/
|
|
721
721
|
|
|
722
722
|
|
|
723
|
-
var Literal = __webpack_require__(
|
|
723
|
+
var Literal = __webpack_require__(6747);
|
|
724
724
|
var KIND = "boolean";
|
|
725
725
|
|
|
726
726
|
/**
|
|
@@ -736,7 +736,7 @@ module.exports = Literal["extends"](KIND, function Boolean(value, raw, docs, loc
|
|
|
736
736
|
|
|
737
737
|
/***/ }),
|
|
738
738
|
|
|
739
|
-
/***/
|
|
739
|
+
/***/ 4207:
|
|
740
740
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
741
741
|
|
|
742
742
|
/**
|
|
@@ -746,7 +746,7 @@ module.exports = Literal["extends"](KIND, function Boolean(value, raw, docs, loc
|
|
|
746
746
|
*/
|
|
747
747
|
|
|
748
748
|
|
|
749
|
-
var Statement = __webpack_require__(
|
|
749
|
+
var Statement = __webpack_require__(6457);
|
|
750
750
|
var KIND = "break";
|
|
751
751
|
|
|
752
752
|
/**
|
|
@@ -763,7 +763,7 @@ module.exports = Statement["extends"](KIND, function Break(level, docs, location
|
|
|
763
763
|
|
|
764
764
|
/***/ }),
|
|
765
765
|
|
|
766
|
-
/***/
|
|
766
|
+
/***/ 7202:
|
|
767
767
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
768
768
|
|
|
769
769
|
/**
|
|
@@ -773,7 +773,7 @@ module.exports = Statement["extends"](KIND, function Break(level, docs, location
|
|
|
773
773
|
*/
|
|
774
774
|
|
|
775
775
|
|
|
776
|
-
var Expression = __webpack_require__(
|
|
776
|
+
var Expression = __webpack_require__(8808);
|
|
777
777
|
var KIND = "byref";
|
|
778
778
|
|
|
779
779
|
/**
|
|
@@ -790,7 +790,7 @@ module.exports = Expression["extends"](KIND, function ByRef(what, docs, location
|
|
|
790
790
|
|
|
791
791
|
/***/ }),
|
|
792
792
|
|
|
793
|
-
/***/
|
|
793
|
+
/***/ 4794:
|
|
794
794
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
795
795
|
|
|
796
796
|
/**
|
|
@@ -800,7 +800,7 @@ module.exports = Expression["extends"](KIND, function ByRef(what, docs, location
|
|
|
800
800
|
*/
|
|
801
801
|
|
|
802
802
|
|
|
803
|
-
var Expression = __webpack_require__(
|
|
803
|
+
var Expression = __webpack_require__(8808);
|
|
804
804
|
var KIND = "call";
|
|
805
805
|
|
|
806
806
|
/**
|
|
@@ -819,7 +819,7 @@ module.exports = Expression["extends"](KIND, function Call(what, args, docs, loc
|
|
|
819
819
|
|
|
820
820
|
/***/ }),
|
|
821
821
|
|
|
822
|
-
/***/
|
|
822
|
+
/***/ 1274:
|
|
823
823
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
824
824
|
|
|
825
825
|
/**
|
|
@@ -829,7 +829,7 @@ module.exports = Expression["extends"](KIND, function Call(what, args, docs, loc
|
|
|
829
829
|
*/
|
|
830
830
|
|
|
831
831
|
|
|
832
|
-
var Statement = __webpack_require__(
|
|
832
|
+
var Statement = __webpack_require__(6457);
|
|
833
833
|
var KIND = "case";
|
|
834
834
|
|
|
835
835
|
/**
|
|
@@ -848,7 +848,7 @@ module.exports = Statement["extends"](KIND, function Case(test, body, docs, loca
|
|
|
848
848
|
|
|
849
849
|
/***/ }),
|
|
850
850
|
|
|
851
|
-
/***/
|
|
851
|
+
/***/ 8121:
|
|
852
852
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
853
853
|
|
|
854
854
|
/**
|
|
@@ -858,7 +858,7 @@ module.exports = Statement["extends"](KIND, function Case(test, body, docs, loca
|
|
|
858
858
|
*/
|
|
859
859
|
|
|
860
860
|
|
|
861
|
-
var Operation = __webpack_require__(
|
|
861
|
+
var Operation = __webpack_require__(905);
|
|
862
862
|
var KIND = "cast";
|
|
863
863
|
|
|
864
864
|
/**
|
|
@@ -879,7 +879,7 @@ module.exports = Operation["extends"](KIND, function Cast(type, raw, expr, docs,
|
|
|
879
879
|
|
|
880
880
|
/***/ }),
|
|
881
881
|
|
|
882
|
-
/***/
|
|
882
|
+
/***/ 9627:
|
|
883
883
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
884
884
|
|
|
885
885
|
/**
|
|
@@ -889,7 +889,7 @@ module.exports = Operation["extends"](KIND, function Cast(type, raw, expr, docs,
|
|
|
889
889
|
*/
|
|
890
890
|
|
|
891
891
|
|
|
892
|
-
var Statement = __webpack_require__(
|
|
892
|
+
var Statement = __webpack_require__(6457);
|
|
893
893
|
var KIND = "catch";
|
|
894
894
|
|
|
895
895
|
/**
|
|
@@ -911,7 +911,7 @@ module.exports = Statement["extends"](KIND, function Catch(body, what, variable,
|
|
|
911
911
|
|
|
912
912
|
/***/ }),
|
|
913
913
|
|
|
914
|
-
/***/
|
|
914
|
+
/***/ 388:
|
|
915
915
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
916
916
|
|
|
917
917
|
/**
|
|
@@ -921,7 +921,7 @@ module.exports = Statement["extends"](KIND, function Catch(body, what, variable,
|
|
|
921
921
|
*/
|
|
922
922
|
|
|
923
923
|
|
|
924
|
-
var Declaration = __webpack_require__(
|
|
924
|
+
var Declaration = __webpack_require__(2600);
|
|
925
925
|
var KIND = "class";
|
|
926
926
|
|
|
927
927
|
/**
|
|
@@ -950,7 +950,7 @@ module.exports = Declaration["extends"](KIND, function Class(name, ext, impl, bo
|
|
|
950
950
|
|
|
951
951
|
/***/ }),
|
|
952
952
|
|
|
953
|
-
/***/
|
|
953
|
+
/***/ 432:
|
|
954
954
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
955
955
|
|
|
956
956
|
/**
|
|
@@ -960,7 +960,7 @@ module.exports = Declaration["extends"](KIND, function Class(name, ext, impl, bo
|
|
|
960
960
|
*/
|
|
961
961
|
|
|
962
962
|
|
|
963
|
-
var ConstantStatement = __webpack_require__(
|
|
963
|
+
var ConstantStatement = __webpack_require__(1985);
|
|
964
964
|
var KIND = "classconstant";
|
|
965
965
|
var IS_UNDEFINED = "";
|
|
966
966
|
var IS_PUBLIC = "public";
|
|
@@ -1013,7 +1013,7 @@ module.exports = ClassConstant;
|
|
|
1013
1013
|
|
|
1014
1014
|
/***/ }),
|
|
1015
1015
|
|
|
1016
|
-
/***/
|
|
1016
|
+
/***/ 8005:
|
|
1017
1017
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1018
1018
|
|
|
1019
1019
|
/**
|
|
@@ -1023,7 +1023,7 @@ module.exports = ClassConstant;
|
|
|
1023
1023
|
*/
|
|
1024
1024
|
|
|
1025
1025
|
|
|
1026
|
-
var Expression = __webpack_require__(
|
|
1026
|
+
var Expression = __webpack_require__(8808);
|
|
1027
1027
|
var KIND = "clone";
|
|
1028
1028
|
|
|
1029
1029
|
/**
|
|
@@ -1040,7 +1040,7 @@ module.exports = Expression["extends"](KIND, function Clone(what, docs, location
|
|
|
1040
1040
|
|
|
1041
1041
|
/***/ }),
|
|
1042
1042
|
|
|
1043
|
-
/***/
|
|
1043
|
+
/***/ 1013:
|
|
1044
1044
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1045
1045
|
|
|
1046
1046
|
/**
|
|
@@ -1050,7 +1050,7 @@ module.exports = Expression["extends"](KIND, function Clone(what, docs, location
|
|
|
1050
1050
|
*/
|
|
1051
1051
|
|
|
1052
1052
|
|
|
1053
|
-
var Expression = __webpack_require__(
|
|
1053
|
+
var Expression = __webpack_require__(8808);
|
|
1054
1054
|
var KIND = "closure";
|
|
1055
1055
|
|
|
1056
1056
|
/**
|
|
@@ -1081,7 +1081,7 @@ module.exports = Expression["extends"](KIND, function Closure(args, byref, uses,
|
|
|
1081
1081
|
|
|
1082
1082
|
/***/ }),
|
|
1083
1083
|
|
|
1084
|
-
/***/
|
|
1084
|
+
/***/ 1193:
|
|
1085
1085
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1086
1086
|
|
|
1087
1087
|
/**
|
|
@@ -1091,7 +1091,7 @@ module.exports = Expression["extends"](KIND, function Closure(args, byref, uses,
|
|
|
1091
1091
|
*/
|
|
1092
1092
|
|
|
1093
1093
|
|
|
1094
|
-
var Node = __webpack_require__(
|
|
1094
|
+
var Node = __webpack_require__(4230);
|
|
1095
1095
|
|
|
1096
1096
|
/**
|
|
1097
1097
|
* Abstract documentation node (ComentLine or CommentBlock)
|
|
@@ -1107,7 +1107,7 @@ module.exports = Node["extends"]("comment", function Comment(kind, value, docs,
|
|
|
1107
1107
|
|
|
1108
1108
|
/***/ }),
|
|
1109
1109
|
|
|
1110
|
-
/***/
|
|
1110
|
+
/***/ 5928:
|
|
1111
1111
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1112
1112
|
|
|
1113
1113
|
/**
|
|
@@ -1117,7 +1117,7 @@ module.exports = Node["extends"]("comment", function Comment(kind, value, docs,
|
|
|
1117
1117
|
*/
|
|
1118
1118
|
|
|
1119
1119
|
|
|
1120
|
-
var Comment = __webpack_require__(
|
|
1120
|
+
var Comment = __webpack_require__(1193);
|
|
1121
1121
|
var KIND = "commentblock";
|
|
1122
1122
|
|
|
1123
1123
|
/**
|
|
@@ -1132,7 +1132,7 @@ module.exports = Comment["extends"](KIND, function CommentBlock(value, docs, loc
|
|
|
1132
1132
|
|
|
1133
1133
|
/***/ }),
|
|
1134
1134
|
|
|
1135
|
-
/***/
|
|
1135
|
+
/***/ 1523:
|
|
1136
1136
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1137
1137
|
|
|
1138
1138
|
/**
|
|
@@ -1142,7 +1142,7 @@ module.exports = Comment["extends"](KIND, function CommentBlock(value, docs, loc
|
|
|
1142
1142
|
*/
|
|
1143
1143
|
|
|
1144
1144
|
|
|
1145
|
-
var Comment = __webpack_require__(
|
|
1145
|
+
var Comment = __webpack_require__(1193);
|
|
1146
1146
|
var KIND = "commentline";
|
|
1147
1147
|
|
|
1148
1148
|
/**
|
|
@@ -1157,7 +1157,7 @@ module.exports = Comment["extends"](KIND, function CommentLine(value, docs, loca
|
|
|
1157
1157
|
|
|
1158
1158
|
/***/ }),
|
|
1159
1159
|
|
|
1160
|
-
/***/
|
|
1160
|
+
/***/ 5414:
|
|
1161
1161
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1162
1162
|
|
|
1163
1163
|
/**
|
|
@@ -1167,7 +1167,7 @@ module.exports = Comment["extends"](KIND, function CommentLine(value, docs, loca
|
|
|
1167
1167
|
*/
|
|
1168
1168
|
|
|
1169
1169
|
|
|
1170
|
-
var Node = __webpack_require__(
|
|
1170
|
+
var Node = __webpack_require__(4230);
|
|
1171
1171
|
var KIND = "constant";
|
|
1172
1172
|
|
|
1173
1173
|
/**
|
|
@@ -1186,7 +1186,7 @@ module.exports = Node["extends"](KIND, function Constant(name, value, docs, loca
|
|
|
1186
1186
|
|
|
1187
1187
|
/***/ }),
|
|
1188
1188
|
|
|
1189
|
-
/***/
|
|
1189
|
+
/***/ 1985:
|
|
1190
1190
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1191
1191
|
|
|
1192
1192
|
/**
|
|
@@ -1196,7 +1196,7 @@ module.exports = Node["extends"](KIND, function Constant(name, value, docs, loca
|
|
|
1196
1196
|
*/
|
|
1197
1197
|
|
|
1198
1198
|
|
|
1199
|
-
var Statement = __webpack_require__(
|
|
1199
|
+
var Statement = __webpack_require__(6457);
|
|
1200
1200
|
var KIND = "constantstatement";
|
|
1201
1201
|
|
|
1202
1202
|
/**
|
|
@@ -1213,7 +1213,7 @@ module.exports = Statement["extends"](KIND, function ConstantStatement(kind, con
|
|
|
1213
1213
|
|
|
1214
1214
|
/***/ }),
|
|
1215
1215
|
|
|
1216
|
-
/***/
|
|
1216
|
+
/***/ 451:
|
|
1217
1217
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1218
1218
|
|
|
1219
1219
|
/**
|
|
@@ -1223,7 +1223,7 @@ module.exports = Statement["extends"](KIND, function ConstantStatement(kind, con
|
|
|
1223
1223
|
*/
|
|
1224
1224
|
|
|
1225
1225
|
|
|
1226
|
-
var Statement = __webpack_require__(
|
|
1226
|
+
var Statement = __webpack_require__(6457);
|
|
1227
1227
|
var KIND = "continue";
|
|
1228
1228
|
|
|
1229
1229
|
/**
|
|
@@ -1240,7 +1240,7 @@ module.exports = Statement["extends"](KIND, function Continue(level, docs, locat
|
|
|
1240
1240
|
|
|
1241
1241
|
/***/ }),
|
|
1242
1242
|
|
|
1243
|
-
/***/
|
|
1243
|
+
/***/ 2600:
|
|
1244
1244
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1245
1245
|
|
|
1246
1246
|
/**
|
|
@@ -1250,7 +1250,7 @@ module.exports = Statement["extends"](KIND, function Continue(level, docs, locat
|
|
|
1250
1250
|
*/
|
|
1251
1251
|
|
|
1252
1252
|
|
|
1253
|
-
var Statement = __webpack_require__(
|
|
1253
|
+
var Statement = __webpack_require__(6457);
|
|
1254
1254
|
var KIND = "declaration";
|
|
1255
1255
|
var IS_UNDEFINED = "";
|
|
1256
1256
|
var IS_PUBLIC = "public";
|
|
@@ -1301,7 +1301,7 @@ module.exports = Declaration;
|
|
|
1301
1301
|
|
|
1302
1302
|
/***/ }),
|
|
1303
1303
|
|
|
1304
|
-
/***/
|
|
1304
|
+
/***/ 9366:
|
|
1305
1305
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1306
1306
|
|
|
1307
1307
|
/**
|
|
@@ -1311,7 +1311,7 @@ module.exports = Declaration;
|
|
|
1311
1311
|
*/
|
|
1312
1312
|
|
|
1313
1313
|
|
|
1314
|
-
var Block = __webpack_require__(
|
|
1314
|
+
var Block = __webpack_require__(7141);
|
|
1315
1315
|
var KIND = "declare";
|
|
1316
1316
|
|
|
1317
1317
|
/**
|
|
@@ -1374,7 +1374,7 @@ module.exports = Declare;
|
|
|
1374
1374
|
|
|
1375
1375
|
/***/ }),
|
|
1376
1376
|
|
|
1377
|
-
/***/
|
|
1377
|
+
/***/ 1661:
|
|
1378
1378
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1379
1379
|
|
|
1380
1380
|
/**
|
|
@@ -1384,7 +1384,7 @@ module.exports = Declare;
|
|
|
1384
1384
|
*/
|
|
1385
1385
|
|
|
1386
1386
|
|
|
1387
|
-
var Node = __webpack_require__(
|
|
1387
|
+
var Node = __webpack_require__(4230);
|
|
1388
1388
|
var KIND = "declaredirective";
|
|
1389
1389
|
|
|
1390
1390
|
/**
|
|
@@ -1403,7 +1403,7 @@ module.exports = Node["extends"](KIND, function DeclareDirective(key, value, doc
|
|
|
1403
1403
|
|
|
1404
1404
|
/***/ }),
|
|
1405
1405
|
|
|
1406
|
-
/***/
|
|
1406
|
+
/***/ 1235:
|
|
1407
1407
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1408
1408
|
|
|
1409
1409
|
/**
|
|
@@ -1413,7 +1413,7 @@ module.exports = Node["extends"](KIND, function DeclareDirective(key, value, doc
|
|
|
1413
1413
|
*/
|
|
1414
1414
|
|
|
1415
1415
|
|
|
1416
|
-
var Statement = __webpack_require__(
|
|
1416
|
+
var Statement = __webpack_require__(6457);
|
|
1417
1417
|
var KIND = "do";
|
|
1418
1418
|
|
|
1419
1419
|
/**
|
|
@@ -1432,7 +1432,7 @@ module.exports = Statement["extends"](KIND, function Do(test, body, docs, locati
|
|
|
1432
1432
|
|
|
1433
1433
|
/***/ }),
|
|
1434
1434
|
|
|
1435
|
-
/***/
|
|
1435
|
+
/***/ 9123:
|
|
1436
1436
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1437
1437
|
|
|
1438
1438
|
/**
|
|
@@ -1442,7 +1442,7 @@ module.exports = Statement["extends"](KIND, function Do(test, body, docs, locati
|
|
|
1442
1442
|
*/
|
|
1443
1443
|
|
|
1444
1444
|
|
|
1445
|
-
var Statement = __webpack_require__(
|
|
1445
|
+
var Statement = __webpack_require__(6457);
|
|
1446
1446
|
var KIND = "echo";
|
|
1447
1447
|
|
|
1448
1448
|
/**
|
|
@@ -1461,7 +1461,7 @@ module.exports = Statement["extends"](KIND, function Echo(expressions, shortForm
|
|
|
1461
1461
|
|
|
1462
1462
|
/***/ }),
|
|
1463
1463
|
|
|
1464
|
-
/***/
|
|
1464
|
+
/***/ 4369:
|
|
1465
1465
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1466
1466
|
|
|
1467
1467
|
/**
|
|
@@ -1471,7 +1471,7 @@ module.exports = Statement["extends"](KIND, function Echo(expressions, shortForm
|
|
|
1471
1471
|
*/
|
|
1472
1472
|
|
|
1473
1473
|
|
|
1474
|
-
var Expression = __webpack_require__(
|
|
1474
|
+
var Expression = __webpack_require__(8808);
|
|
1475
1475
|
var KIND = "empty";
|
|
1476
1476
|
|
|
1477
1477
|
/**
|
|
@@ -1487,7 +1487,7 @@ module.exports = Expression["extends"](KIND, function Empty(expression, docs, lo
|
|
|
1487
1487
|
|
|
1488
1488
|
/***/ }),
|
|
1489
1489
|
|
|
1490
|
-
/***/
|
|
1490
|
+
/***/ 5509:
|
|
1491
1491
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1492
1492
|
|
|
1493
1493
|
/**
|
|
@@ -1497,7 +1497,7 @@ module.exports = Expression["extends"](KIND, function Empty(expression, docs, lo
|
|
|
1497
1497
|
*/
|
|
1498
1498
|
|
|
1499
1499
|
|
|
1500
|
-
var Literal = __webpack_require__(
|
|
1500
|
+
var Literal = __webpack_require__(6747);
|
|
1501
1501
|
var KIND = "encapsed";
|
|
1502
1502
|
|
|
1503
1503
|
/**
|
|
@@ -1564,7 +1564,7 @@ module.exports = Encapsed;
|
|
|
1564
1564
|
|
|
1565
1565
|
/***/ }),
|
|
1566
1566
|
|
|
1567
|
-
/***/
|
|
1567
|
+
/***/ 6224:
|
|
1568
1568
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1569
1569
|
|
|
1570
1570
|
/**
|
|
@@ -1574,7 +1574,7 @@ module.exports = Encapsed;
|
|
|
1574
1574
|
*/
|
|
1575
1575
|
|
|
1576
1576
|
|
|
1577
|
-
var Expression = __webpack_require__(
|
|
1577
|
+
var Expression = __webpack_require__(8808);
|
|
1578
1578
|
var KIND = "encapsedpart";
|
|
1579
1579
|
|
|
1580
1580
|
/**
|
|
@@ -1595,7 +1595,7 @@ module.exports = Expression["extends"](KIND, function EncapsedPart(expression, s
|
|
|
1595
1595
|
|
|
1596
1596
|
/***/ }),
|
|
1597
1597
|
|
|
1598
|
-
/***/
|
|
1598
|
+
/***/ 4800:
|
|
1599
1599
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1600
1600
|
|
|
1601
1601
|
/**
|
|
@@ -1605,7 +1605,7 @@ module.exports = Expression["extends"](KIND, function EncapsedPart(expression, s
|
|
|
1605
1605
|
*/
|
|
1606
1606
|
|
|
1607
1607
|
|
|
1608
|
-
var Expression = __webpack_require__(
|
|
1608
|
+
var Expression = __webpack_require__(8808);
|
|
1609
1609
|
var KIND = "entry";
|
|
1610
1610
|
|
|
1611
1611
|
/**
|
|
@@ -1628,7 +1628,7 @@ module.exports = Expression["extends"](KIND, function Entry(key, value, byRef, u
|
|
|
1628
1628
|
|
|
1629
1629
|
/***/ }),
|
|
1630
1630
|
|
|
1631
|
-
/***/
|
|
1631
|
+
/***/ 8791:
|
|
1632
1632
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1633
1633
|
|
|
1634
1634
|
/**
|
|
@@ -1638,7 +1638,7 @@ module.exports = Expression["extends"](KIND, function Entry(key, value, byRef, u
|
|
|
1638
1638
|
*/
|
|
1639
1639
|
|
|
1640
1640
|
|
|
1641
|
-
var Declaration = __webpack_require__(
|
|
1641
|
+
var Declaration = __webpack_require__(2600);
|
|
1642
1642
|
var KIND = "enum";
|
|
1643
1643
|
|
|
1644
1644
|
/**
|
|
@@ -1661,7 +1661,7 @@ module.exports = Declaration["extends"](KIND, function Enum(name, valueType, imp
|
|
|
1661
1661
|
|
|
1662
1662
|
/***/ }),
|
|
1663
1663
|
|
|
1664
|
-
/***/
|
|
1664
|
+
/***/ 5091:
|
|
1665
1665
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1666
1666
|
|
|
1667
1667
|
/**
|
|
@@ -1671,7 +1671,7 @@ module.exports = Declaration["extends"](KIND, function Enum(name, valueType, imp
|
|
|
1671
1671
|
*/
|
|
1672
1672
|
|
|
1673
1673
|
|
|
1674
|
-
var Node = __webpack_require__(
|
|
1674
|
+
var Node = __webpack_require__(4230);
|
|
1675
1675
|
var KIND = "enumcase";
|
|
1676
1676
|
|
|
1677
1677
|
/**
|
|
@@ -1690,7 +1690,7 @@ module.exports = Node["extends"](KIND, function EnumCase(name, value, docs, loca
|
|
|
1690
1690
|
|
|
1691
1691
|
/***/ }),
|
|
1692
1692
|
|
|
1693
|
-
/***/
|
|
1693
|
+
/***/ 5818:
|
|
1694
1694
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1695
1695
|
|
|
1696
1696
|
/**
|
|
@@ -1700,7 +1700,7 @@ module.exports = Node["extends"](KIND, function EnumCase(name, value, docs, loca
|
|
|
1700
1700
|
*/
|
|
1701
1701
|
|
|
1702
1702
|
|
|
1703
|
-
var Node = __webpack_require__(
|
|
1703
|
+
var Node = __webpack_require__(4230);
|
|
1704
1704
|
var KIND = "error";
|
|
1705
1705
|
|
|
1706
1706
|
/**
|
|
@@ -1723,7 +1723,7 @@ module.exports = Node["extends"](KIND, function Error(message, token, line, expe
|
|
|
1723
1723
|
|
|
1724
1724
|
/***/ }),
|
|
1725
1725
|
|
|
1726
|
-
/***/
|
|
1726
|
+
/***/ 7308:
|
|
1727
1727
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1728
1728
|
|
|
1729
1729
|
/**
|
|
@@ -1733,7 +1733,7 @@ module.exports = Node["extends"](KIND, function Error(message, token, line, expe
|
|
|
1733
1733
|
*/
|
|
1734
1734
|
|
|
1735
1735
|
|
|
1736
|
-
var Expression = __webpack_require__(
|
|
1736
|
+
var Expression = __webpack_require__(8808);
|
|
1737
1737
|
var KIND = "eval";
|
|
1738
1738
|
|
|
1739
1739
|
/**
|
|
@@ -1750,7 +1750,7 @@ module.exports = Expression["extends"](KIND, function Eval(source, docs, locatio
|
|
|
1750
1750
|
|
|
1751
1751
|
/***/ }),
|
|
1752
1752
|
|
|
1753
|
-
/***/
|
|
1753
|
+
/***/ 3214:
|
|
1754
1754
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1755
1755
|
|
|
1756
1756
|
/**
|
|
@@ -1760,7 +1760,7 @@ module.exports = Expression["extends"](KIND, function Eval(source, docs, locatio
|
|
|
1760
1760
|
*/
|
|
1761
1761
|
|
|
1762
1762
|
|
|
1763
|
-
var Expression = __webpack_require__(
|
|
1763
|
+
var Expression = __webpack_require__(8808);
|
|
1764
1764
|
var KIND = "exit";
|
|
1765
1765
|
|
|
1766
1766
|
/**
|
|
@@ -1779,7 +1779,7 @@ module.exports = Expression["extends"](KIND, function Exit(expression, useDie, d
|
|
|
1779
1779
|
|
|
1780
1780
|
/***/ }),
|
|
1781
1781
|
|
|
1782
|
-
/***/
|
|
1782
|
+
/***/ 8808:
|
|
1783
1783
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1784
1784
|
|
|
1785
1785
|
/**
|
|
@@ -1789,7 +1789,7 @@ module.exports = Expression["extends"](KIND, function Exit(expression, useDie, d
|
|
|
1789
1789
|
*/
|
|
1790
1790
|
|
|
1791
1791
|
|
|
1792
|
-
var Node = __webpack_require__(
|
|
1792
|
+
var Node = __webpack_require__(4230);
|
|
1793
1793
|
var KIND = "expression";
|
|
1794
1794
|
|
|
1795
1795
|
/**
|
|
@@ -1805,7 +1805,7 @@ module.exports = Node["extends"](KIND, function Expression(kind, docs, location)
|
|
|
1805
1805
|
|
|
1806
1806
|
/***/ }),
|
|
1807
1807
|
|
|
1808
|
-
/***/
|
|
1808
|
+
/***/ 951:
|
|
1809
1809
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1810
1810
|
|
|
1811
1811
|
/**
|
|
@@ -1815,7 +1815,7 @@ module.exports = Node["extends"](KIND, function Expression(kind, docs, location)
|
|
|
1815
1815
|
*/
|
|
1816
1816
|
|
|
1817
1817
|
|
|
1818
|
-
var Statement = __webpack_require__(
|
|
1818
|
+
var Statement = __webpack_require__(6457);
|
|
1819
1819
|
var KIND = "expressionstatement";
|
|
1820
1820
|
|
|
1821
1821
|
/**
|
|
@@ -1832,7 +1832,7 @@ module.exports = Statement["extends"](KIND, function ExpressionStatement(expr, d
|
|
|
1832
1832
|
|
|
1833
1833
|
/***/ }),
|
|
1834
1834
|
|
|
1835
|
-
/***/
|
|
1835
|
+
/***/ 2367:
|
|
1836
1836
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1837
1837
|
|
|
1838
1838
|
/**
|
|
@@ -1842,7 +1842,7 @@ module.exports = Statement["extends"](KIND, function ExpressionStatement(expr, d
|
|
|
1842
1842
|
*/
|
|
1843
1843
|
|
|
1844
1844
|
|
|
1845
|
-
var Statement = __webpack_require__(
|
|
1845
|
+
var Statement = __webpack_require__(6457);
|
|
1846
1846
|
var KIND = "for";
|
|
1847
1847
|
|
|
1848
1848
|
/**
|
|
@@ -1868,7 +1868,7 @@ module.exports = Statement["extends"](KIND, function For(init, test, increment,
|
|
|
1868
1868
|
|
|
1869
1869
|
/***/ }),
|
|
1870
1870
|
|
|
1871
|
-
/***/
|
|
1871
|
+
/***/ 2058:
|
|
1872
1872
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1873
1873
|
|
|
1874
1874
|
/**
|
|
@@ -1878,7 +1878,7 @@ module.exports = Statement["extends"](KIND, function For(init, test, increment,
|
|
|
1878
1878
|
*/
|
|
1879
1879
|
|
|
1880
1880
|
|
|
1881
|
-
var Statement = __webpack_require__(
|
|
1881
|
+
var Statement = __webpack_require__(6457);
|
|
1882
1882
|
var KIND = "foreach";
|
|
1883
1883
|
|
|
1884
1884
|
/**
|
|
@@ -1904,7 +1904,7 @@ module.exports = Statement["extends"](KIND, function Foreach(source, key, value,
|
|
|
1904
1904
|
|
|
1905
1905
|
/***/ }),
|
|
1906
1906
|
|
|
1907
|
-
/***/
|
|
1907
|
+
/***/ 3194:
|
|
1908
1908
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1909
1909
|
|
|
1910
1910
|
/**
|
|
@@ -1914,7 +1914,7 @@ module.exports = Statement["extends"](KIND, function Foreach(source, key, value,
|
|
|
1914
1914
|
*/
|
|
1915
1915
|
|
|
1916
1916
|
|
|
1917
|
-
var Declaration = __webpack_require__(
|
|
1917
|
+
var Declaration = __webpack_require__(2600);
|
|
1918
1918
|
var KIND = "function";
|
|
1919
1919
|
|
|
1920
1920
|
/**
|
|
@@ -1941,7 +1941,7 @@ module.exports = Declaration["extends"](KIND, function _Function(name, args, byr
|
|
|
1941
1941
|
|
|
1942
1942
|
/***/ }),
|
|
1943
1943
|
|
|
1944
|
-
/***/
|
|
1944
|
+
/***/ 5729:
|
|
1945
1945
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1946
1946
|
|
|
1947
1947
|
/**
|
|
@@ -1951,7 +1951,7 @@ module.exports = Declaration["extends"](KIND, function _Function(name, args, byr
|
|
|
1951
1951
|
*/
|
|
1952
1952
|
|
|
1953
1953
|
|
|
1954
|
-
var Statement = __webpack_require__(
|
|
1954
|
+
var Statement = __webpack_require__(6457);
|
|
1955
1955
|
var KIND = "global";
|
|
1956
1956
|
|
|
1957
1957
|
/**
|
|
@@ -1968,7 +1968,7 @@ module.exports = Statement["extends"](KIND, function Global(items, docs, locatio
|
|
|
1968
1968
|
|
|
1969
1969
|
/***/ }),
|
|
1970
1970
|
|
|
1971
|
-
/***/
|
|
1971
|
+
/***/ 3449:
|
|
1972
1972
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1973
1973
|
|
|
1974
1974
|
/**
|
|
@@ -1978,7 +1978,7 @@ module.exports = Statement["extends"](KIND, function Global(items, docs, locatio
|
|
|
1978
1978
|
*/
|
|
1979
1979
|
|
|
1980
1980
|
|
|
1981
|
-
var Statement = __webpack_require__(
|
|
1981
|
+
var Statement = __webpack_require__(6457);
|
|
1982
1982
|
var KIND = "goto";
|
|
1983
1983
|
|
|
1984
1984
|
/**
|
|
@@ -1996,7 +1996,7 @@ module.exports = Statement["extends"](KIND, function Goto(label, docs, location)
|
|
|
1996
1996
|
|
|
1997
1997
|
/***/ }),
|
|
1998
1998
|
|
|
1999
|
-
/***/
|
|
1999
|
+
/***/ 6901:
|
|
2000
2000
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2001
2001
|
|
|
2002
2002
|
/**
|
|
@@ -2006,7 +2006,7 @@ module.exports = Statement["extends"](KIND, function Goto(label, docs, location)
|
|
|
2006
2006
|
*/
|
|
2007
2007
|
|
|
2008
2008
|
|
|
2009
|
-
var Statement = __webpack_require__(
|
|
2009
|
+
var Statement = __webpack_require__(6457);
|
|
2010
2010
|
var KIND = "halt";
|
|
2011
2011
|
|
|
2012
2012
|
/**
|
|
@@ -2024,7 +2024,7 @@ module.exports = Statement["extends"](KIND, function Halt(after, docs, location)
|
|
|
2024
2024
|
|
|
2025
2025
|
/***/ }),
|
|
2026
2026
|
|
|
2027
|
-
/***/
|
|
2027
|
+
/***/ 3697:
|
|
2028
2028
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2029
2029
|
|
|
2030
2030
|
/**
|
|
@@ -2034,7 +2034,7 @@ module.exports = Statement["extends"](KIND, function Halt(after, docs, location)
|
|
|
2034
2034
|
*/
|
|
2035
2035
|
|
|
2036
2036
|
|
|
2037
|
-
var Node = __webpack_require__(
|
|
2037
|
+
var Node = __webpack_require__(4230);
|
|
2038
2038
|
var KIND = "identifier";
|
|
2039
2039
|
|
|
2040
2040
|
/**
|
|
@@ -2052,7 +2052,7 @@ module.exports = Identifier;
|
|
|
2052
2052
|
|
|
2053
2053
|
/***/ }),
|
|
2054
2054
|
|
|
2055
|
-
/***/
|
|
2055
|
+
/***/ 7393:
|
|
2056
2056
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2057
2057
|
|
|
2058
2058
|
/**
|
|
@@ -2062,7 +2062,7 @@ module.exports = Identifier;
|
|
|
2062
2062
|
*/
|
|
2063
2063
|
|
|
2064
2064
|
|
|
2065
|
-
var Statement = __webpack_require__(
|
|
2065
|
+
var Statement = __webpack_require__(6457);
|
|
2066
2066
|
var KIND = "if";
|
|
2067
2067
|
|
|
2068
2068
|
/**
|
|
@@ -2085,7 +2085,7 @@ module.exports = Statement["extends"](KIND, function If(test, body, alternate, s
|
|
|
2085
2085
|
|
|
2086
2086
|
/***/ }),
|
|
2087
2087
|
|
|
2088
|
-
/***/
|
|
2088
|
+
/***/ 4828:
|
|
2089
2089
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2090
2090
|
|
|
2091
2091
|
/**
|
|
@@ -2095,7 +2095,7 @@ module.exports = Statement["extends"](KIND, function If(test, body, alternate, s
|
|
|
2095
2095
|
*/
|
|
2096
2096
|
|
|
2097
2097
|
|
|
2098
|
-
var Expression = __webpack_require__(
|
|
2098
|
+
var Expression = __webpack_require__(8808);
|
|
2099
2099
|
var KIND = "include";
|
|
2100
2100
|
|
|
2101
2101
|
/**
|
|
@@ -2116,7 +2116,7 @@ module.exports = Expression["extends"](KIND, function Include(once, require, tar
|
|
|
2116
2116
|
|
|
2117
2117
|
/***/ }),
|
|
2118
2118
|
|
|
2119
|
-
/***/
|
|
2119
|
+
/***/ 7763:
|
|
2120
2120
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2121
2121
|
|
|
2122
2122
|
/**
|
|
@@ -2126,7 +2126,7 @@ module.exports = Expression["extends"](KIND, function Include(once, require, tar
|
|
|
2126
2126
|
*/
|
|
2127
2127
|
|
|
2128
2128
|
|
|
2129
|
-
var Literal = __webpack_require__(
|
|
2129
|
+
var Literal = __webpack_require__(6747);
|
|
2130
2130
|
var KIND = "inline";
|
|
2131
2131
|
|
|
2132
2132
|
/**
|
|
@@ -2142,7 +2142,7 @@ module.exports = Literal["extends"](KIND, function Inline(value, raw, docs, loca
|
|
|
2142
2142
|
|
|
2143
2143
|
/***/ }),
|
|
2144
2144
|
|
|
2145
|
-
/***/
|
|
2145
|
+
/***/ 103:
|
|
2146
2146
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2147
2147
|
|
|
2148
2148
|
/**
|
|
@@ -2152,7 +2152,7 @@ module.exports = Literal["extends"](KIND, function Inline(value, raw, docs, loca
|
|
|
2152
2152
|
*/
|
|
2153
2153
|
|
|
2154
2154
|
|
|
2155
|
-
var Declaration = __webpack_require__(
|
|
2155
|
+
var Declaration = __webpack_require__(2600);
|
|
2156
2156
|
var KIND = "interface";
|
|
2157
2157
|
|
|
2158
2158
|
/**
|
|
@@ -2173,7 +2173,7 @@ module.exports = Declaration["extends"](KIND, function Interface(name, ext, body
|
|
|
2173
2173
|
|
|
2174
2174
|
/***/ }),
|
|
2175
2175
|
|
|
2176
|
-
/***/
|
|
2176
|
+
/***/ 5999:
|
|
2177
2177
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2178
2178
|
|
|
2179
2179
|
/**
|
|
@@ -2183,7 +2183,7 @@ module.exports = Declaration["extends"](KIND, function Interface(name, ext, body
|
|
|
2183
2183
|
*/
|
|
2184
2184
|
|
|
2185
2185
|
|
|
2186
|
-
var Declaration = __webpack_require__(
|
|
2186
|
+
var Declaration = __webpack_require__(2600);
|
|
2187
2187
|
var KIND = "intersectiontype";
|
|
2188
2188
|
|
|
2189
2189
|
/**
|
|
@@ -2200,7 +2200,7 @@ module.exports = Declaration["extends"](KIND, function IntersectionType(types, d
|
|
|
2200
2200
|
|
|
2201
2201
|
/***/ }),
|
|
2202
2202
|
|
|
2203
|
-
/***/
|
|
2203
|
+
/***/ 328:
|
|
2204
2204
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2205
2205
|
|
|
2206
2206
|
/**
|
|
@@ -2210,7 +2210,7 @@ module.exports = Declaration["extends"](KIND, function IntersectionType(types, d
|
|
|
2210
2210
|
*/
|
|
2211
2211
|
|
|
2212
2212
|
|
|
2213
|
-
var Expression = __webpack_require__(
|
|
2213
|
+
var Expression = __webpack_require__(8808);
|
|
2214
2214
|
var KIND = "isset";
|
|
2215
2215
|
|
|
2216
2216
|
/**
|
|
@@ -2226,7 +2226,7 @@ module.exports = Expression["extends"](KIND, function Isset(variables, docs, loc
|
|
|
2226
2226
|
|
|
2227
2227
|
/***/ }),
|
|
2228
2228
|
|
|
2229
|
-
/***/
|
|
2229
|
+
/***/ 4630:
|
|
2230
2230
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2231
2231
|
|
|
2232
2232
|
/**
|
|
@@ -2236,7 +2236,7 @@ module.exports = Expression["extends"](KIND, function Isset(variables, docs, loc
|
|
|
2236
2236
|
*/
|
|
2237
2237
|
|
|
2238
2238
|
|
|
2239
|
-
var Statement = __webpack_require__(
|
|
2239
|
+
var Statement = __webpack_require__(6457);
|
|
2240
2240
|
var KIND = "label";
|
|
2241
2241
|
|
|
2242
2242
|
/**
|
|
@@ -2253,7 +2253,7 @@ module.exports = Statement["extends"](KIND, function Label(name, docs, location)
|
|
|
2253
2253
|
|
|
2254
2254
|
/***/ }),
|
|
2255
2255
|
|
|
2256
|
-
/***/
|
|
2256
|
+
/***/ 8370:
|
|
2257
2257
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2258
2258
|
|
|
2259
2259
|
/**
|
|
@@ -2263,7 +2263,7 @@ module.exports = Statement["extends"](KIND, function Label(name, docs, location)
|
|
|
2263
2263
|
*/
|
|
2264
2264
|
|
|
2265
2265
|
|
|
2266
|
-
var Expression = __webpack_require__(
|
|
2266
|
+
var Expression = __webpack_require__(8808);
|
|
2267
2267
|
var KIND = "list";
|
|
2268
2268
|
|
|
2269
2269
|
/**
|
|
@@ -2282,7 +2282,7 @@ module.exports = Expression["extends"](KIND, function List(items, shortForm, doc
|
|
|
2282
2282
|
|
|
2283
2283
|
/***/ }),
|
|
2284
2284
|
|
|
2285
|
-
/***/
|
|
2285
|
+
/***/ 6747:
|
|
2286
2286
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2287
2287
|
|
|
2288
2288
|
/**
|
|
@@ -2292,7 +2292,7 @@ module.exports = Expression["extends"](KIND, function List(items, shortForm, doc
|
|
|
2292
2292
|
*/
|
|
2293
2293
|
|
|
2294
2294
|
|
|
2295
|
-
var Expression = __webpack_require__(
|
|
2295
|
+
var Expression = __webpack_require__(8808);
|
|
2296
2296
|
var KIND = "literal";
|
|
2297
2297
|
|
|
2298
2298
|
/**
|
|
@@ -2313,7 +2313,7 @@ module.exports = Expression["extends"](KIND, function Literal(kind, value, raw,
|
|
|
2313
2313
|
|
|
2314
2314
|
/***/ }),
|
|
2315
2315
|
|
|
2316
|
-
/***/
|
|
2316
|
+
/***/ 5441:
|
|
2317
2317
|
/***/ ((module) => {
|
|
2318
2318
|
|
|
2319
2319
|
/**
|
|
@@ -2340,7 +2340,7 @@ module.exports = Location;
|
|
|
2340
2340
|
|
|
2341
2341
|
/***/ }),
|
|
2342
2342
|
|
|
2343
|
-
/***/
|
|
2343
|
+
/***/ 7128:
|
|
2344
2344
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2345
2345
|
|
|
2346
2346
|
/**
|
|
@@ -2350,7 +2350,7 @@ module.exports = Location;
|
|
|
2350
2350
|
*/
|
|
2351
2351
|
|
|
2352
2352
|
|
|
2353
|
-
var Expr = __webpack_require__(
|
|
2353
|
+
var Expr = __webpack_require__(8808);
|
|
2354
2354
|
var KIND = "lookup";
|
|
2355
2355
|
|
|
2356
2356
|
/**
|
|
@@ -2369,7 +2369,7 @@ module.exports = Expr["extends"](KIND, function Lookup(kind, what, offset, docs,
|
|
|
2369
2369
|
|
|
2370
2370
|
/***/ }),
|
|
2371
2371
|
|
|
2372
|
-
/***/
|
|
2372
|
+
/***/ 1779:
|
|
2373
2373
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2374
2374
|
|
|
2375
2375
|
/**
|
|
@@ -2379,7 +2379,7 @@ module.exports = Expr["extends"](KIND, function Lookup(kind, what, offset, docs,
|
|
|
2379
2379
|
*/
|
|
2380
2380
|
|
|
2381
2381
|
|
|
2382
|
-
var Literal = __webpack_require__(
|
|
2382
|
+
var Literal = __webpack_require__(6747);
|
|
2383
2383
|
var KIND = "magic";
|
|
2384
2384
|
|
|
2385
2385
|
/**
|
|
@@ -2394,7 +2394,7 @@ module.exports = Literal["extends"](KIND, function Magic(value, raw, docs, locat
|
|
|
2394
2394
|
|
|
2395
2395
|
/***/ }),
|
|
2396
2396
|
|
|
2397
|
-
/***/
|
|
2397
|
+
/***/ 9185:
|
|
2398
2398
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2399
2399
|
|
|
2400
2400
|
/**
|
|
@@ -2404,7 +2404,7 @@ module.exports = Literal["extends"](KIND, function Magic(value, raw, docs, locat
|
|
|
2404
2404
|
*/
|
|
2405
2405
|
|
|
2406
2406
|
|
|
2407
|
-
var Expression = __webpack_require__(
|
|
2407
|
+
var Expression = __webpack_require__(8808);
|
|
2408
2408
|
var KIND = "match";
|
|
2409
2409
|
|
|
2410
2410
|
/**
|
|
@@ -2423,7 +2423,7 @@ module.exports = Expression["extends"](KIND, function Match(cond, arms, docs, lo
|
|
|
2423
2423
|
|
|
2424
2424
|
/***/ }),
|
|
2425
2425
|
|
|
2426
|
-
/***/
|
|
2426
|
+
/***/ 1303:
|
|
2427
2427
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2428
2428
|
|
|
2429
2429
|
/**
|
|
@@ -2433,7 +2433,7 @@ module.exports = Expression["extends"](KIND, function Match(cond, arms, docs, lo
|
|
|
2433
2433
|
*/
|
|
2434
2434
|
|
|
2435
2435
|
|
|
2436
|
-
var Expression = __webpack_require__(
|
|
2436
|
+
var Expression = __webpack_require__(8808);
|
|
2437
2437
|
var KIND = "matcharm";
|
|
2438
2438
|
|
|
2439
2439
|
/**
|
|
@@ -2452,7 +2452,7 @@ module.exports = Expression["extends"](KIND, function MatchArm(conds, body, docs
|
|
|
2452
2452
|
|
|
2453
2453
|
/***/ }),
|
|
2454
2454
|
|
|
2455
|
-
/***/
|
|
2455
|
+
/***/ 1247:
|
|
2456
2456
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2457
2457
|
|
|
2458
2458
|
/**
|
|
@@ -2462,7 +2462,7 @@ module.exports = Expression["extends"](KIND, function MatchArm(conds, body, docs
|
|
|
2462
2462
|
*/
|
|
2463
2463
|
|
|
2464
2464
|
|
|
2465
|
-
var Function_ = __webpack_require__(
|
|
2465
|
+
var Function_ = __webpack_require__(3194);
|
|
2466
2466
|
var KIND = "method";
|
|
2467
2467
|
|
|
2468
2468
|
/**
|
|
@@ -2482,7 +2482,7 @@ module.exports = Function_["extends"](KIND, function Method() {
|
|
|
2482
2482
|
|
|
2483
2483
|
/***/ }),
|
|
2484
2484
|
|
|
2485
|
-
/***/
|
|
2485
|
+
/***/ 4145:
|
|
2486
2486
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2487
2487
|
|
|
2488
2488
|
/**
|
|
@@ -2492,7 +2492,7 @@ module.exports = Function_["extends"](KIND, function Method() {
|
|
|
2492
2492
|
*/
|
|
2493
2493
|
|
|
2494
2494
|
|
|
2495
|
-
var Reference = __webpack_require__(
|
|
2495
|
+
var Reference = __webpack_require__(7261);
|
|
2496
2496
|
var KIND = "name";
|
|
2497
2497
|
|
|
2498
2498
|
/**
|
|
@@ -2539,7 +2539,7 @@ module.exports = Name;
|
|
|
2539
2539
|
|
|
2540
2540
|
/***/ }),
|
|
2541
2541
|
|
|
2542
|
-
/***/
|
|
2542
|
+
/***/ 7050:
|
|
2543
2543
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2544
2544
|
|
|
2545
2545
|
/**
|
|
@@ -2549,7 +2549,7 @@ module.exports = Name;
|
|
|
2549
2549
|
*/
|
|
2550
2550
|
|
|
2551
2551
|
|
|
2552
|
-
var Expression = __webpack_require__(
|
|
2552
|
+
var Expression = __webpack_require__(8808);
|
|
2553
2553
|
var KIND = "namedargument";
|
|
2554
2554
|
|
|
2555
2555
|
/**
|
|
@@ -2569,7 +2569,7 @@ module.exports = Expression["extends"](KIND, function namedargument(name, value,
|
|
|
2569
2569
|
|
|
2570
2570
|
/***/ }),
|
|
2571
2571
|
|
|
2572
|
-
/***/
|
|
2572
|
+
/***/ 8495:
|
|
2573
2573
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2574
2574
|
|
|
2575
2575
|
/**
|
|
@@ -2579,7 +2579,7 @@ module.exports = Expression["extends"](KIND, function namedargument(name, value,
|
|
|
2579
2579
|
*/
|
|
2580
2580
|
|
|
2581
2581
|
|
|
2582
|
-
var Block = __webpack_require__(
|
|
2582
|
+
var Block = __webpack_require__(7141);
|
|
2583
2583
|
var KIND = "namespace";
|
|
2584
2584
|
|
|
2585
2585
|
/**
|
|
@@ -2598,7 +2598,7 @@ module.exports = Block["extends"](KIND, function Namespace(name, children, withB
|
|
|
2598
2598
|
|
|
2599
2599
|
/***/ }),
|
|
2600
2600
|
|
|
2601
|
-
/***/
|
|
2601
|
+
/***/ 866:
|
|
2602
2602
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2603
2603
|
|
|
2604
2604
|
/**
|
|
@@ -2608,7 +2608,7 @@ module.exports = Block["extends"](KIND, function Namespace(name, children, withB
|
|
|
2608
2608
|
*/
|
|
2609
2609
|
|
|
2610
2610
|
|
|
2611
|
-
var Expression = __webpack_require__(
|
|
2611
|
+
var Expression = __webpack_require__(8808);
|
|
2612
2612
|
var KIND = "new";
|
|
2613
2613
|
|
|
2614
2614
|
/**
|
|
@@ -2627,7 +2627,7 @@ module.exports = Expression["extends"](KIND, function New(what, args, docs, loca
|
|
|
2627
2627
|
|
|
2628
2628
|
/***/ }),
|
|
2629
2629
|
|
|
2630
|
-
/***/
|
|
2630
|
+
/***/ 4230:
|
|
2631
2631
|
/***/ ((module) => {
|
|
2632
2632
|
|
|
2633
2633
|
/**
|
|
@@ -2732,7 +2732,7 @@ module.exports = Node;
|
|
|
2732
2732
|
|
|
2733
2733
|
/***/ }),
|
|
2734
2734
|
|
|
2735
|
-
/***/
|
|
2735
|
+
/***/ 4398:
|
|
2736
2736
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2737
2737
|
|
|
2738
2738
|
/**
|
|
@@ -2742,7 +2742,7 @@ module.exports = Node;
|
|
|
2742
2742
|
*/
|
|
2743
2743
|
|
|
2744
2744
|
|
|
2745
|
-
var Node = __webpack_require__(
|
|
2745
|
+
var Node = __webpack_require__(4230);
|
|
2746
2746
|
var KIND = "noop";
|
|
2747
2747
|
|
|
2748
2748
|
/**
|
|
@@ -2758,7 +2758,7 @@ module.exports = Node["extends"](KIND, function Noop(docs, location) {
|
|
|
2758
2758
|
|
|
2759
2759
|
/***/ }),
|
|
2760
2760
|
|
|
2761
|
-
/***/
|
|
2761
|
+
/***/ 8520:
|
|
2762
2762
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2763
2763
|
|
|
2764
2764
|
/**
|
|
@@ -2768,7 +2768,7 @@ module.exports = Node["extends"](KIND, function Noop(docs, location) {
|
|
|
2768
2768
|
*/
|
|
2769
2769
|
|
|
2770
2770
|
|
|
2771
|
-
var Literal = __webpack_require__(
|
|
2771
|
+
var Literal = __webpack_require__(6747);
|
|
2772
2772
|
var KIND = "nowdoc";
|
|
2773
2773
|
|
|
2774
2774
|
/**
|
|
@@ -2787,7 +2787,7 @@ module.exports = Literal["extends"](KIND, function Nowdoc(value, raw, label, doc
|
|
|
2787
2787
|
|
|
2788
2788
|
/***/ }),
|
|
2789
2789
|
|
|
2790
|
-
/***/
|
|
2790
|
+
/***/ 3708:
|
|
2791
2791
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2792
2792
|
|
|
2793
2793
|
/**
|
|
@@ -2797,7 +2797,7 @@ module.exports = Literal["extends"](KIND, function Nowdoc(value, raw, label, doc
|
|
|
2797
2797
|
*/
|
|
2798
2798
|
|
|
2799
2799
|
|
|
2800
|
-
var Node = __webpack_require__(
|
|
2800
|
+
var Node = __webpack_require__(4230);
|
|
2801
2801
|
var KIND = "nullkeyword";
|
|
2802
2802
|
|
|
2803
2803
|
/**
|
|
@@ -2813,7 +2813,7 @@ module.exports = Node["extends"](KIND, function NullKeyword(raw, docs, location)
|
|
|
2813
2813
|
|
|
2814
2814
|
/***/ }),
|
|
2815
2815
|
|
|
2816
|
-
/***/
|
|
2816
|
+
/***/ 7829:
|
|
2817
2817
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2818
2818
|
|
|
2819
2819
|
/**
|
|
@@ -2823,7 +2823,7 @@ module.exports = Node["extends"](KIND, function NullKeyword(raw, docs, location)
|
|
|
2823
2823
|
*/
|
|
2824
2824
|
|
|
2825
2825
|
|
|
2826
|
-
var Lookup = __webpack_require__(
|
|
2826
|
+
var Lookup = __webpack_require__(7128);
|
|
2827
2827
|
var KIND = "nullsafepropertylookup";
|
|
2828
2828
|
|
|
2829
2829
|
/**
|
|
@@ -2838,7 +2838,7 @@ module.exports = Lookup["extends"](KIND, function NullSafePropertyLookup(what, o
|
|
|
2838
2838
|
|
|
2839
2839
|
/***/ }),
|
|
2840
2840
|
|
|
2841
|
-
/***/
|
|
2841
|
+
/***/ 2503:
|
|
2842
2842
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2843
2843
|
|
|
2844
2844
|
/**
|
|
@@ -2848,7 +2848,7 @@ module.exports = Lookup["extends"](KIND, function NullSafePropertyLookup(what, o
|
|
|
2848
2848
|
*/
|
|
2849
2849
|
|
|
2850
2850
|
|
|
2851
|
-
var Literal = __webpack_require__(
|
|
2851
|
+
var Literal = __webpack_require__(6747);
|
|
2852
2852
|
var KIND = "number";
|
|
2853
2853
|
|
|
2854
2854
|
/**
|
|
@@ -2864,7 +2864,7 @@ module.exports = Literal["extends"](KIND, function Number(value, raw, docs, loca
|
|
|
2864
2864
|
|
|
2865
2865
|
/***/ }),
|
|
2866
2866
|
|
|
2867
|
-
/***/
|
|
2867
|
+
/***/ 9635:
|
|
2868
2868
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2869
2869
|
|
|
2870
2870
|
/**
|
|
@@ -2874,7 +2874,7 @@ module.exports = Literal["extends"](KIND, function Number(value, raw, docs, loca
|
|
|
2874
2874
|
*/
|
|
2875
2875
|
|
|
2876
2876
|
|
|
2877
|
-
var Lookup = __webpack_require__(
|
|
2877
|
+
var Lookup = __webpack_require__(7128);
|
|
2878
2878
|
var KIND = "offsetlookup";
|
|
2879
2879
|
|
|
2880
2880
|
/**
|
|
@@ -2889,7 +2889,7 @@ module.exports = Lookup["extends"](KIND, function OffsetLookup(what, offset, doc
|
|
|
2889
2889
|
|
|
2890
2890
|
/***/ }),
|
|
2891
2891
|
|
|
2892
|
-
/***/
|
|
2892
|
+
/***/ 905:
|
|
2893
2893
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2894
2894
|
|
|
2895
2895
|
/**
|
|
@@ -2899,7 +2899,7 @@ module.exports = Lookup["extends"](KIND, function OffsetLookup(what, offset, doc
|
|
|
2899
2899
|
*/
|
|
2900
2900
|
|
|
2901
2901
|
|
|
2902
|
-
var Expr = __webpack_require__(
|
|
2902
|
+
var Expr = __webpack_require__(8808);
|
|
2903
2903
|
var KIND = "operation";
|
|
2904
2904
|
|
|
2905
2905
|
/**
|
|
@@ -2914,7 +2914,7 @@ module.exports = Expr["extends"](KIND, function Operation(kind, docs, location)
|
|
|
2914
2914
|
|
|
2915
2915
|
/***/ }),
|
|
2916
2916
|
|
|
2917
|
-
/***/
|
|
2917
|
+
/***/ 5567:
|
|
2918
2918
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2919
2919
|
|
|
2920
2920
|
/**
|
|
@@ -2924,7 +2924,7 @@ module.exports = Expr["extends"](KIND, function Operation(kind, docs, location)
|
|
|
2924
2924
|
*/
|
|
2925
2925
|
|
|
2926
2926
|
|
|
2927
|
-
var Declaration = __webpack_require__(
|
|
2927
|
+
var Declaration = __webpack_require__(2600);
|
|
2928
2928
|
var KIND = "parameter";
|
|
2929
2929
|
|
|
2930
2930
|
/**
|
|
@@ -2967,7 +2967,7 @@ module.exports = Declaration["extends"](KIND, function Parameter(name, type, val
|
|
|
2967
2967
|
|
|
2968
2968
|
/***/ }),
|
|
2969
2969
|
|
|
2970
|
-
/***/
|
|
2970
|
+
/***/ 6125:
|
|
2971
2971
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2972
2972
|
|
|
2973
2973
|
/**
|
|
@@ -2977,7 +2977,7 @@ module.exports = Declaration["extends"](KIND, function Parameter(name, type, val
|
|
|
2977
2977
|
*/
|
|
2978
2978
|
|
|
2979
2979
|
|
|
2980
|
-
var Reference = __webpack_require__(
|
|
2980
|
+
var Reference = __webpack_require__(7261);
|
|
2981
2981
|
var KIND = "parentreference";
|
|
2982
2982
|
|
|
2983
2983
|
/**
|
|
@@ -2994,7 +2994,7 @@ module.exports = ParentReference;
|
|
|
2994
2994
|
|
|
2995
2995
|
/***/ }),
|
|
2996
2996
|
|
|
2997
|
-
/***/
|
|
2997
|
+
/***/ 6085:
|
|
2998
2998
|
/***/ ((module) => {
|
|
2999
2999
|
|
|
3000
3000
|
/**
|
|
@@ -3021,7 +3021,7 @@ module.exports = Position;
|
|
|
3021
3021
|
|
|
3022
3022
|
/***/ }),
|
|
3023
3023
|
|
|
3024
|
-
/***/
|
|
3024
|
+
/***/ 9324:
|
|
3025
3025
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3026
3026
|
|
|
3027
3027
|
/**
|
|
@@ -3031,7 +3031,7 @@ module.exports = Position;
|
|
|
3031
3031
|
*/
|
|
3032
3032
|
|
|
3033
3033
|
|
|
3034
|
-
var Operation = __webpack_require__(
|
|
3034
|
+
var Operation = __webpack_require__(905);
|
|
3035
3035
|
var KIND = "post";
|
|
3036
3036
|
|
|
3037
3037
|
/**
|
|
@@ -3050,7 +3050,7 @@ module.exports = Operation["extends"](KIND, function Post(type, what, docs, loca
|
|
|
3050
3050
|
|
|
3051
3051
|
/***/ }),
|
|
3052
3052
|
|
|
3053
|
-
/***/
|
|
3053
|
+
/***/ 2329:
|
|
3054
3054
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3055
3055
|
|
|
3056
3056
|
/**
|
|
@@ -3060,7 +3060,7 @@ module.exports = Operation["extends"](KIND, function Post(type, what, docs, loca
|
|
|
3060
3060
|
*/
|
|
3061
3061
|
|
|
3062
3062
|
|
|
3063
|
-
var Operation = __webpack_require__(
|
|
3063
|
+
var Operation = __webpack_require__(905);
|
|
3064
3064
|
var KIND = "pre";
|
|
3065
3065
|
|
|
3066
3066
|
/**
|
|
@@ -3079,7 +3079,7 @@ module.exports = Operation["extends"](KIND, function Pre(type, what, docs, locat
|
|
|
3079
3079
|
|
|
3080
3080
|
/***/ }),
|
|
3081
3081
|
|
|
3082
|
-
/***/
|
|
3082
|
+
/***/ 8071:
|
|
3083
3083
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3084
3084
|
|
|
3085
3085
|
/**
|
|
@@ -3089,7 +3089,7 @@ module.exports = Operation["extends"](KIND, function Pre(type, what, docs, locat
|
|
|
3089
3089
|
*/
|
|
3090
3090
|
|
|
3091
3091
|
|
|
3092
|
-
var Expression = __webpack_require__(
|
|
3092
|
+
var Expression = __webpack_require__(8808);
|
|
3093
3093
|
var KIND = "print";
|
|
3094
3094
|
|
|
3095
3095
|
/**
|
|
@@ -3105,7 +3105,7 @@ module.exports = Expression["extends"](KIND, function Print(expression, docs, lo
|
|
|
3105
3105
|
|
|
3106
3106
|
/***/ }),
|
|
3107
3107
|
|
|
3108
|
-
/***/
|
|
3108
|
+
/***/ 1032:
|
|
3109
3109
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3110
3110
|
|
|
3111
3111
|
/**
|
|
@@ -3115,7 +3115,7 @@ module.exports = Expression["extends"](KIND, function Print(expression, docs, lo
|
|
|
3115
3115
|
*/
|
|
3116
3116
|
|
|
3117
3117
|
|
|
3118
|
-
var Block = __webpack_require__(
|
|
3118
|
+
var Block = __webpack_require__(7141);
|
|
3119
3119
|
var KIND = "program";
|
|
3120
3120
|
|
|
3121
3121
|
/**
|
|
@@ -3140,7 +3140,7 @@ module.exports = Block["extends"](KIND, function Program(children, errors, comme
|
|
|
3140
3140
|
|
|
3141
3141
|
/***/ }),
|
|
3142
3142
|
|
|
3143
|
-
/***/
|
|
3143
|
+
/***/ 599:
|
|
3144
3144
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3145
3145
|
|
|
3146
3146
|
/**
|
|
@@ -3150,7 +3150,7 @@ module.exports = Block["extends"](KIND, function Program(children, errors, comme
|
|
|
3150
3150
|
*/
|
|
3151
3151
|
|
|
3152
3152
|
|
|
3153
|
-
var Statement = __webpack_require__(
|
|
3153
|
+
var Statement = __webpack_require__(6457);
|
|
3154
3154
|
var KIND = "property";
|
|
3155
3155
|
|
|
3156
3156
|
/**
|
|
@@ -3179,7 +3179,7 @@ module.exports = Statement["extends"](KIND, function Property(name, value, reado
|
|
|
3179
3179
|
|
|
3180
3180
|
/***/ }),
|
|
3181
3181
|
|
|
3182
|
-
/***/
|
|
3182
|
+
/***/ 6580:
|
|
3183
3183
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3184
3184
|
|
|
3185
3185
|
/**
|
|
@@ -3189,7 +3189,7 @@ module.exports = Statement["extends"](KIND, function Property(name, value, reado
|
|
|
3189
3189
|
*/
|
|
3190
3190
|
|
|
3191
3191
|
|
|
3192
|
-
var Node = __webpack_require__(
|
|
3192
|
+
var Node = __webpack_require__(4230);
|
|
3193
3193
|
var KIND = "propertyhook";
|
|
3194
3194
|
|
|
3195
3195
|
/**
|
|
@@ -3215,7 +3215,7 @@ module.exports = Node["extends"](KIND, function PropertyHook(name, isFinal, byre
|
|
|
3215
3215
|
|
|
3216
3216
|
/***/ }),
|
|
3217
3217
|
|
|
3218
|
-
/***/
|
|
3218
|
+
/***/ 697:
|
|
3219
3219
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3220
3220
|
|
|
3221
3221
|
/**
|
|
@@ -3225,7 +3225,7 @@ module.exports = Node["extends"](KIND, function PropertyHook(name, isFinal, byre
|
|
|
3225
3225
|
*/
|
|
3226
3226
|
|
|
3227
3227
|
|
|
3228
|
-
var Lookup = __webpack_require__(
|
|
3228
|
+
var Lookup = __webpack_require__(7128);
|
|
3229
3229
|
var KIND = "propertylookup";
|
|
3230
3230
|
|
|
3231
3231
|
/**
|
|
@@ -3240,7 +3240,7 @@ module.exports = Lookup["extends"](KIND, function PropertyLookup(what, offset, d
|
|
|
3240
3240
|
|
|
3241
3241
|
/***/ }),
|
|
3242
3242
|
|
|
3243
|
-
/***/
|
|
3243
|
+
/***/ 7910:
|
|
3244
3244
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3245
3245
|
|
|
3246
3246
|
/**
|
|
@@ -3250,7 +3250,7 @@ module.exports = Lookup["extends"](KIND, function PropertyLookup(what, offset, d
|
|
|
3250
3250
|
*/
|
|
3251
3251
|
|
|
3252
3252
|
|
|
3253
|
-
var Statement = __webpack_require__(
|
|
3253
|
+
var Statement = __webpack_require__(6457);
|
|
3254
3254
|
var KIND = "propertystatement";
|
|
3255
3255
|
var IS_UNDEFINED = "";
|
|
3256
3256
|
var IS_PUBLIC = "public";
|
|
@@ -3299,7 +3299,7 @@ module.exports = PropertyStatement;
|
|
|
3299
3299
|
|
|
3300
3300
|
/***/ }),
|
|
3301
3301
|
|
|
3302
|
-
/***/
|
|
3302
|
+
/***/ 7261:
|
|
3303
3303
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3304
3304
|
|
|
3305
3305
|
/**
|
|
@@ -3309,7 +3309,7 @@ module.exports = PropertyStatement;
|
|
|
3309
3309
|
*/
|
|
3310
3310
|
|
|
3311
3311
|
|
|
3312
|
-
var Node = __webpack_require__(
|
|
3312
|
+
var Node = __webpack_require__(4230);
|
|
3313
3313
|
var KIND = "reference";
|
|
3314
3314
|
|
|
3315
3315
|
/**
|
|
@@ -3325,7 +3325,7 @@ module.exports = Reference;
|
|
|
3325
3325
|
|
|
3326
3326
|
/***/ }),
|
|
3327
3327
|
|
|
3328
|
-
/***/
|
|
3328
|
+
/***/ 8920:
|
|
3329
3329
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3330
3330
|
|
|
3331
3331
|
/**
|
|
@@ -3335,7 +3335,7 @@ module.exports = Reference;
|
|
|
3335
3335
|
*/
|
|
3336
3336
|
|
|
3337
3337
|
|
|
3338
|
-
var Expression = __webpack_require__(
|
|
3338
|
+
var Expression = __webpack_require__(8808);
|
|
3339
3339
|
var KIND = "retif";
|
|
3340
3340
|
|
|
3341
3341
|
/**
|
|
@@ -3356,7 +3356,7 @@ module.exports = Expression["extends"](KIND, function RetIf(test, trueExpr, fals
|
|
|
3356
3356
|
|
|
3357
3357
|
/***/ }),
|
|
3358
3358
|
|
|
3359
|
-
/***/
|
|
3359
|
+
/***/ 3540:
|
|
3360
3360
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3361
3361
|
|
|
3362
3362
|
/**
|
|
@@ -3366,7 +3366,7 @@ module.exports = Expression["extends"](KIND, function RetIf(test, trueExpr, fals
|
|
|
3366
3366
|
*/
|
|
3367
3367
|
|
|
3368
3368
|
|
|
3369
|
-
var Statement = __webpack_require__(
|
|
3369
|
+
var Statement = __webpack_require__(6457);
|
|
3370
3370
|
var KIND = "return";
|
|
3371
3371
|
|
|
3372
3372
|
/**
|
|
@@ -3383,7 +3383,7 @@ module.exports = Statement["extends"](KIND, function Return(expr, docs, location
|
|
|
3383
3383
|
|
|
3384
3384
|
/***/ }),
|
|
3385
3385
|
|
|
3386
|
-
/***/
|
|
3386
|
+
/***/ 7571:
|
|
3387
3387
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3388
3388
|
|
|
3389
3389
|
/**
|
|
@@ -3393,7 +3393,7 @@ module.exports = Statement["extends"](KIND, function Return(expr, docs, location
|
|
|
3393
3393
|
*/
|
|
3394
3394
|
|
|
3395
3395
|
|
|
3396
|
-
var Reference = __webpack_require__(
|
|
3396
|
+
var Reference = __webpack_require__(7261);
|
|
3397
3397
|
var KIND = "selfreference";
|
|
3398
3398
|
|
|
3399
3399
|
/**
|
|
@@ -3410,7 +3410,7 @@ module.exports = SelfReference;
|
|
|
3410
3410
|
|
|
3411
3411
|
/***/ }),
|
|
3412
3412
|
|
|
3413
|
-
/***/
|
|
3413
|
+
/***/ 579:
|
|
3414
3414
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3415
3415
|
|
|
3416
3416
|
/**
|
|
@@ -3420,7 +3420,7 @@ module.exports = SelfReference;
|
|
|
3420
3420
|
*/
|
|
3421
3421
|
|
|
3422
3422
|
|
|
3423
|
-
var Expression = __webpack_require__(
|
|
3423
|
+
var Expression = __webpack_require__(8808);
|
|
3424
3424
|
var KIND = "silent";
|
|
3425
3425
|
|
|
3426
3426
|
/**
|
|
@@ -3437,7 +3437,7 @@ module.exports = Expression["extends"](KIND, function Silent(expr, docs, locatio
|
|
|
3437
3437
|
|
|
3438
3438
|
/***/ }),
|
|
3439
3439
|
|
|
3440
|
-
/***/
|
|
3440
|
+
/***/ 6457:
|
|
3441
3441
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3442
3442
|
|
|
3443
3443
|
/**
|
|
@@ -3447,7 +3447,7 @@ module.exports = Expression["extends"](KIND, function Silent(expr, docs, locatio
|
|
|
3447
3447
|
*/
|
|
3448
3448
|
|
|
3449
3449
|
|
|
3450
|
-
var Node = __webpack_require__(
|
|
3450
|
+
var Node = __webpack_require__(4230);
|
|
3451
3451
|
var KIND = "statement";
|
|
3452
3452
|
|
|
3453
3453
|
/**
|
|
@@ -3462,7 +3462,7 @@ module.exports = Node["extends"](KIND, function Statement(kind, docs, location)
|
|
|
3462
3462
|
|
|
3463
3463
|
/***/ }),
|
|
3464
3464
|
|
|
3465
|
-
/***/
|
|
3465
|
+
/***/ 1368:
|
|
3466
3466
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3467
3467
|
|
|
3468
3468
|
/**
|
|
@@ -3472,7 +3472,7 @@ module.exports = Node["extends"](KIND, function Statement(kind, docs, location)
|
|
|
3472
3472
|
*/
|
|
3473
3473
|
|
|
3474
3474
|
|
|
3475
|
-
var Statement = __webpack_require__(
|
|
3475
|
+
var Statement = __webpack_require__(6457);
|
|
3476
3476
|
var KIND = "static";
|
|
3477
3477
|
|
|
3478
3478
|
/**
|
|
@@ -3489,7 +3489,7 @@ module.exports = Statement["extends"](KIND, function Static(variables, docs, loc
|
|
|
3489
3489
|
|
|
3490
3490
|
/***/ }),
|
|
3491
3491
|
|
|
3492
|
-
/***/
|
|
3492
|
+
/***/ 6670:
|
|
3493
3493
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3494
3494
|
|
|
3495
3495
|
/**
|
|
@@ -3499,7 +3499,7 @@ module.exports = Statement["extends"](KIND, function Static(variables, docs, loc
|
|
|
3499
3499
|
*/
|
|
3500
3500
|
|
|
3501
3501
|
|
|
3502
|
-
var Lookup = __webpack_require__(
|
|
3502
|
+
var Lookup = __webpack_require__(7128);
|
|
3503
3503
|
var KIND = "staticlookup";
|
|
3504
3504
|
|
|
3505
3505
|
/**
|
|
@@ -3514,7 +3514,7 @@ module.exports = Lookup["extends"](KIND, function StaticLookup(what, offset, doc
|
|
|
3514
3514
|
|
|
3515
3515
|
/***/ }),
|
|
3516
3516
|
|
|
3517
|
-
/***/
|
|
3517
|
+
/***/ 8895:
|
|
3518
3518
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3519
3519
|
|
|
3520
3520
|
/**
|
|
@@ -3524,7 +3524,7 @@ module.exports = Lookup["extends"](KIND, function StaticLookup(what, offset, doc
|
|
|
3524
3524
|
*/
|
|
3525
3525
|
|
|
3526
3526
|
|
|
3527
|
-
var Reference = __webpack_require__(
|
|
3527
|
+
var Reference = __webpack_require__(7261);
|
|
3528
3528
|
var KIND = "staticreference";
|
|
3529
3529
|
|
|
3530
3530
|
/**
|
|
@@ -3541,7 +3541,7 @@ module.exports = StaticReference;
|
|
|
3541
3541
|
|
|
3542
3542
|
/***/ }),
|
|
3543
3543
|
|
|
3544
|
-
/***/
|
|
3544
|
+
/***/ 8372:
|
|
3545
3545
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3546
3546
|
|
|
3547
3547
|
/**
|
|
@@ -3551,7 +3551,7 @@ module.exports = StaticReference;
|
|
|
3551
3551
|
*/
|
|
3552
3552
|
|
|
3553
3553
|
|
|
3554
|
-
var Node = __webpack_require__(
|
|
3554
|
+
var Node = __webpack_require__(4230);
|
|
3555
3555
|
var KIND = "staticvariable";
|
|
3556
3556
|
|
|
3557
3557
|
/**
|
|
@@ -3570,7 +3570,7 @@ module.exports = Node["extends"](KIND, function StaticVariable(variable, default
|
|
|
3570
3570
|
|
|
3571
3571
|
/***/ }),
|
|
3572
3572
|
|
|
3573
|
-
/***/
|
|
3573
|
+
/***/ 9783:
|
|
3574
3574
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3575
3575
|
|
|
3576
3576
|
/**
|
|
@@ -3580,7 +3580,7 @@ module.exports = Node["extends"](KIND, function StaticVariable(variable, default
|
|
|
3580
3580
|
*/
|
|
3581
3581
|
|
|
3582
3582
|
|
|
3583
|
-
var Literal = __webpack_require__(
|
|
3583
|
+
var Literal = __webpack_require__(6747);
|
|
3584
3584
|
var KIND = "string";
|
|
3585
3585
|
|
|
3586
3586
|
/**
|
|
@@ -3601,7 +3601,7 @@ module.exports = Literal["extends"](KIND, function String(isDoubleQuote, value,
|
|
|
3601
3601
|
|
|
3602
3602
|
/***/ }),
|
|
3603
3603
|
|
|
3604
|
-
/***/
|
|
3604
|
+
/***/ 7778:
|
|
3605
3605
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3606
3606
|
|
|
3607
3607
|
/**
|
|
@@ -3611,7 +3611,7 @@ module.exports = Literal["extends"](KIND, function String(isDoubleQuote, value,
|
|
|
3611
3611
|
*/
|
|
3612
3612
|
|
|
3613
3613
|
|
|
3614
|
-
var Statement = __webpack_require__(
|
|
3614
|
+
var Statement = __webpack_require__(6457);
|
|
3615
3615
|
var KIND = "switch";
|
|
3616
3616
|
|
|
3617
3617
|
/**
|
|
@@ -3632,7 +3632,7 @@ module.exports = Statement["extends"](KIND, function Switch(test, body, shortFor
|
|
|
3632
3632
|
|
|
3633
3633
|
/***/ }),
|
|
3634
3634
|
|
|
3635
|
-
/***/
|
|
3635
|
+
/***/ 7284:
|
|
3636
3636
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3637
3637
|
|
|
3638
3638
|
/**
|
|
@@ -3642,7 +3642,7 @@ module.exports = Statement["extends"](KIND, function Switch(test, body, shortFor
|
|
|
3642
3642
|
*/
|
|
3643
3643
|
|
|
3644
3644
|
|
|
3645
|
-
var Statement = __webpack_require__(
|
|
3645
|
+
var Statement = __webpack_require__(6457);
|
|
3646
3646
|
var KIND = "throw";
|
|
3647
3647
|
|
|
3648
3648
|
/**
|
|
@@ -3659,7 +3659,7 @@ module.exports = Statement["extends"](KIND, function Throw(what, docs, location)
|
|
|
3659
3659
|
|
|
3660
3660
|
/***/ }),
|
|
3661
3661
|
|
|
3662
|
-
/***/
|
|
3662
|
+
/***/ 1008:
|
|
3663
3663
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3664
3664
|
|
|
3665
3665
|
/**
|
|
@@ -3669,7 +3669,7 @@ module.exports = Statement["extends"](KIND, function Throw(what, docs, location)
|
|
|
3669
3669
|
*/
|
|
3670
3670
|
|
|
3671
3671
|
|
|
3672
|
-
var Declaration = __webpack_require__(
|
|
3672
|
+
var Declaration = __webpack_require__(2600);
|
|
3673
3673
|
var KIND = "trait";
|
|
3674
3674
|
|
|
3675
3675
|
/**
|
|
@@ -3686,7 +3686,7 @@ module.exports = Declaration["extends"](KIND, function Trait(name, body, docs, l
|
|
|
3686
3686
|
|
|
3687
3687
|
/***/ }),
|
|
3688
3688
|
|
|
3689
|
-
/***/
|
|
3689
|
+
/***/ 7110:
|
|
3690
3690
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3691
3691
|
|
|
3692
3692
|
/**
|
|
@@ -3696,7 +3696,7 @@ module.exports = Declaration["extends"](KIND, function Trait(name, body, docs, l
|
|
|
3696
3696
|
*/
|
|
3697
3697
|
|
|
3698
3698
|
|
|
3699
|
-
var Node = __webpack_require__(
|
|
3699
|
+
var Node = __webpack_require__(4230);
|
|
3700
3700
|
var KIND = "traitalias";
|
|
3701
3701
|
var IS_UNDEFINED = "";
|
|
3702
3702
|
var IS_PUBLIC = "public";
|
|
@@ -3732,7 +3732,7 @@ module.exports = Node["extends"](KIND, function TraitAlias(trait, method, as, fl
|
|
|
3732
3732
|
|
|
3733
3733
|
/***/ }),
|
|
3734
3734
|
|
|
3735
|
-
/***/
|
|
3735
|
+
/***/ 936:
|
|
3736
3736
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3737
3737
|
|
|
3738
3738
|
/**
|
|
@@ -3742,7 +3742,7 @@ module.exports = Node["extends"](KIND, function TraitAlias(trait, method, as, fl
|
|
|
3742
3742
|
*/
|
|
3743
3743
|
|
|
3744
3744
|
|
|
3745
|
-
var Node = __webpack_require__(
|
|
3745
|
+
var Node = __webpack_require__(4230);
|
|
3746
3746
|
var KIND = "traitprecedence";
|
|
3747
3747
|
|
|
3748
3748
|
/**
|
|
@@ -3763,7 +3763,7 @@ module.exports = Node["extends"](KIND, function TraitPrecedence(trait, method, i
|
|
|
3763
3763
|
|
|
3764
3764
|
/***/ }),
|
|
3765
3765
|
|
|
3766
|
-
/***/
|
|
3766
|
+
/***/ 4133:
|
|
3767
3767
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3768
3768
|
|
|
3769
3769
|
/**
|
|
@@ -3773,7 +3773,7 @@ module.exports = Node["extends"](KIND, function TraitPrecedence(trait, method, i
|
|
|
3773
3773
|
*/
|
|
3774
3774
|
|
|
3775
3775
|
|
|
3776
|
-
var Node = __webpack_require__(
|
|
3776
|
+
var Node = __webpack_require__(4230);
|
|
3777
3777
|
var KIND = "traituse";
|
|
3778
3778
|
|
|
3779
3779
|
/**
|
|
@@ -3792,7 +3792,7 @@ module.exports = Node["extends"](KIND, function TraitUse(traits, adaptations, do
|
|
|
3792
3792
|
|
|
3793
3793
|
/***/ }),
|
|
3794
3794
|
|
|
3795
|
-
/***/
|
|
3795
|
+
/***/ 3473:
|
|
3796
3796
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3797
3797
|
|
|
3798
3798
|
/**
|
|
@@ -3802,7 +3802,7 @@ module.exports = Node["extends"](KIND, function TraitUse(traits, adaptations, do
|
|
|
3802
3802
|
*/
|
|
3803
3803
|
|
|
3804
3804
|
|
|
3805
|
-
var Statement = __webpack_require__(
|
|
3805
|
+
var Statement = __webpack_require__(6457);
|
|
3806
3806
|
var KIND = "try";
|
|
3807
3807
|
|
|
3808
3808
|
/**
|
|
@@ -3823,7 +3823,7 @@ module.exports = Statement["extends"](KIND, function Try(body, catches, always,
|
|
|
3823
3823
|
|
|
3824
3824
|
/***/ }),
|
|
3825
3825
|
|
|
3826
|
-
/***/
|
|
3826
|
+
/***/ 8325:
|
|
3827
3827
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3828
3828
|
|
|
3829
3829
|
/**
|
|
@@ -3833,7 +3833,7 @@ module.exports = Statement["extends"](KIND, function Try(body, catches, always,
|
|
|
3833
3833
|
*/
|
|
3834
3834
|
|
|
3835
3835
|
|
|
3836
|
-
var Reference = __webpack_require__(
|
|
3836
|
+
var Reference = __webpack_require__(7261);
|
|
3837
3837
|
var KIND = "typereference";
|
|
3838
3838
|
|
|
3839
3839
|
/**
|
|
@@ -3853,7 +3853,7 @@ module.exports = TypeReference;
|
|
|
3853
3853
|
|
|
3854
3854
|
/***/ }),
|
|
3855
3855
|
|
|
3856
|
-
/***/
|
|
3856
|
+
/***/ 9967:
|
|
3857
3857
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3858
3858
|
|
|
3859
3859
|
/**
|
|
@@ -3863,7 +3863,7 @@ module.exports = TypeReference;
|
|
|
3863
3863
|
*/
|
|
3864
3864
|
|
|
3865
3865
|
|
|
3866
|
-
var Operation = __webpack_require__(
|
|
3866
|
+
var Operation = __webpack_require__(905);
|
|
3867
3867
|
var KIND = "unary";
|
|
3868
3868
|
|
|
3869
3869
|
/**
|
|
@@ -3882,7 +3882,7 @@ module.exports = Operation["extends"](KIND, function Unary(type, what, docs, loc
|
|
|
3882
3882
|
|
|
3883
3883
|
/***/ }),
|
|
3884
3884
|
|
|
3885
|
-
/***/
|
|
3885
|
+
/***/ 8723:
|
|
3886
3886
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3887
3887
|
|
|
3888
3888
|
/**
|
|
@@ -3892,7 +3892,7 @@ module.exports = Operation["extends"](KIND, function Unary(type, what, docs, loc
|
|
|
3892
3892
|
*/
|
|
3893
3893
|
|
|
3894
3894
|
|
|
3895
|
-
var Declaration = __webpack_require__(
|
|
3895
|
+
var Declaration = __webpack_require__(2600);
|
|
3896
3896
|
var KIND = "uniontype";
|
|
3897
3897
|
|
|
3898
3898
|
/**
|
|
@@ -3909,7 +3909,7 @@ module.exports = Declaration["extends"](KIND, function UnionType(types, docs, lo
|
|
|
3909
3909
|
|
|
3910
3910
|
/***/ }),
|
|
3911
3911
|
|
|
3912
|
-
/***/
|
|
3912
|
+
/***/ 1133:
|
|
3913
3913
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3914
3914
|
|
|
3915
3915
|
/**
|
|
@@ -3919,7 +3919,7 @@ module.exports = Declaration["extends"](KIND, function UnionType(types, docs, lo
|
|
|
3919
3919
|
*/
|
|
3920
3920
|
|
|
3921
3921
|
|
|
3922
|
-
var Statement = __webpack_require__(
|
|
3922
|
+
var Statement = __webpack_require__(6457);
|
|
3923
3923
|
var KIND = "unset";
|
|
3924
3924
|
|
|
3925
3925
|
/**
|
|
@@ -3935,7 +3935,7 @@ module.exports = Statement["extends"](KIND, function Unset(variables, docs, loca
|
|
|
3935
3935
|
|
|
3936
3936
|
/***/ }),
|
|
3937
3937
|
|
|
3938
|
-
/***/
|
|
3938
|
+
/***/ 2996:
|
|
3939
3939
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3940
3940
|
|
|
3941
3941
|
/**
|
|
@@ -3945,7 +3945,7 @@ module.exports = Statement["extends"](KIND, function Unset(variables, docs, loca
|
|
|
3945
3945
|
*/
|
|
3946
3946
|
|
|
3947
3947
|
|
|
3948
|
-
var Statement = __webpack_require__(
|
|
3948
|
+
var Statement = __webpack_require__(6457);
|
|
3949
3949
|
var KIND = "usegroup";
|
|
3950
3950
|
|
|
3951
3951
|
/**
|
|
@@ -3968,7 +3968,7 @@ module.exports = Statement["extends"](KIND, function UseGroup(name, type, items,
|
|
|
3968
3968
|
|
|
3969
3969
|
/***/ }),
|
|
3970
3970
|
|
|
3971
|
-
/***/
|
|
3971
|
+
/***/ 6584:
|
|
3972
3972
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3973
3973
|
|
|
3974
3974
|
/**
|
|
@@ -3978,7 +3978,7 @@ module.exports = Statement["extends"](KIND, function UseGroup(name, type, items,
|
|
|
3978
3978
|
*/
|
|
3979
3979
|
|
|
3980
3980
|
|
|
3981
|
-
var Statement = __webpack_require__(
|
|
3981
|
+
var Statement = __webpack_require__(6457);
|
|
3982
3982
|
var KIND = "useitem";
|
|
3983
3983
|
|
|
3984
3984
|
/**
|
|
@@ -4015,7 +4015,7 @@ module.exports = UseItem;
|
|
|
4015
4015
|
|
|
4016
4016
|
/***/ }),
|
|
4017
4017
|
|
|
4018
|
-
/***/
|
|
4018
|
+
/***/ 4374:
|
|
4019
4019
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4020
4020
|
|
|
4021
4021
|
/**
|
|
@@ -4025,7 +4025,7 @@ module.exports = UseItem;
|
|
|
4025
4025
|
*/
|
|
4026
4026
|
|
|
4027
4027
|
|
|
4028
|
-
var Expression = __webpack_require__(
|
|
4028
|
+
var Expression = __webpack_require__(8808);
|
|
4029
4029
|
var KIND = "variable";
|
|
4030
4030
|
|
|
4031
4031
|
/**
|
|
@@ -4054,7 +4054,7 @@ module.exports = Expression["extends"](KIND, function Variable(name, curly, docs
|
|
|
4054
4054
|
|
|
4055
4055
|
/***/ }),
|
|
4056
4056
|
|
|
4057
|
-
/***/
|
|
4057
|
+
/***/ 4567:
|
|
4058
4058
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4059
4059
|
|
|
4060
4060
|
/**
|
|
@@ -4064,7 +4064,7 @@ module.exports = Expression["extends"](KIND, function Variable(name, curly, docs
|
|
|
4064
4064
|
*/
|
|
4065
4065
|
|
|
4066
4066
|
|
|
4067
|
-
var Expression = __webpack_require__(
|
|
4067
|
+
var Expression = __webpack_require__(8808);
|
|
4068
4068
|
var KIND = "variadic";
|
|
4069
4069
|
|
|
4070
4070
|
/**
|
|
@@ -4082,7 +4082,7 @@ module.exports = Expression["extends"](KIND, function variadic(what, docs, locat
|
|
|
4082
4082
|
|
|
4083
4083
|
/***/ }),
|
|
4084
4084
|
|
|
4085
|
-
/***/
|
|
4085
|
+
/***/ 8502:
|
|
4086
4086
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4087
4087
|
|
|
4088
4088
|
/**
|
|
@@ -4092,7 +4092,7 @@ module.exports = Expression["extends"](KIND, function variadic(what, docs, locat
|
|
|
4092
4092
|
*/
|
|
4093
4093
|
|
|
4094
4094
|
|
|
4095
|
-
var Node = __webpack_require__(
|
|
4095
|
+
var Node = __webpack_require__(4230);
|
|
4096
4096
|
var KIND = "variadicplaceholder";
|
|
4097
4097
|
|
|
4098
4098
|
/**
|
|
@@ -4109,7 +4109,7 @@ module.exports = Node["extends"](KIND, function VariadicPlaceholder(docs, locati
|
|
|
4109
4109
|
|
|
4110
4110
|
/***/ }),
|
|
4111
4111
|
|
|
4112
|
-
/***/
|
|
4112
|
+
/***/ 977:
|
|
4113
4113
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4114
4114
|
|
|
4115
4115
|
/**
|
|
@@ -4119,7 +4119,7 @@ module.exports = Node["extends"](KIND, function VariadicPlaceholder(docs, locati
|
|
|
4119
4119
|
*/
|
|
4120
4120
|
|
|
4121
4121
|
|
|
4122
|
-
var Statement = __webpack_require__(
|
|
4122
|
+
var Statement = __webpack_require__(6457);
|
|
4123
4123
|
var KIND = "while";
|
|
4124
4124
|
|
|
4125
4125
|
/**
|
|
@@ -4140,7 +4140,7 @@ module.exports = Statement["extends"](KIND, function While(test, body, shortForm
|
|
|
4140
4140
|
|
|
4141
4141
|
/***/ }),
|
|
4142
4142
|
|
|
4143
|
-
/***/
|
|
4143
|
+
/***/ 785:
|
|
4144
4144
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4145
4145
|
|
|
4146
4146
|
/**
|
|
@@ -4150,7 +4150,7 @@ module.exports = Statement["extends"](KIND, function While(test, body, shortForm
|
|
|
4150
4150
|
*/
|
|
4151
4151
|
|
|
4152
4152
|
|
|
4153
|
-
var Expression = __webpack_require__(
|
|
4153
|
+
var Expression = __webpack_require__(8808);
|
|
4154
4154
|
var KIND = "yield";
|
|
4155
4155
|
|
|
4156
4156
|
/**
|
|
@@ -4170,7 +4170,7 @@ module.exports = Expression["extends"](KIND, function Yield(value, key, docs, lo
|
|
|
4170
4170
|
|
|
4171
4171
|
/***/ }),
|
|
4172
4172
|
|
|
4173
|
-
/***/
|
|
4173
|
+
/***/ 2717:
|
|
4174
4174
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4175
4175
|
|
|
4176
4176
|
/**
|
|
@@ -4180,7 +4180,7 @@ module.exports = Expression["extends"](KIND, function Yield(value, key, docs, lo
|
|
|
4180
4180
|
*/
|
|
4181
4181
|
|
|
4182
4182
|
|
|
4183
|
-
var Expression = __webpack_require__(
|
|
4183
|
+
var Expression = __webpack_require__(8808);
|
|
4184
4184
|
var KIND = "yieldfrom";
|
|
4185
4185
|
|
|
4186
4186
|
/**
|
|
@@ -4198,7 +4198,7 @@ module.exports = Expression["extends"](KIND, function YieldFrom(value, docs, loc
|
|
|
4198
4198
|
|
|
4199
4199
|
/***/ }),
|
|
4200
4200
|
|
|
4201
|
-
/***/
|
|
4201
|
+
/***/ 3023:
|
|
4202
4202
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4203
4203
|
|
|
4204
4204
|
/**
|
|
@@ -4209,10 +4209,10 @@ module.exports = Expression["extends"](KIND, function YieldFrom(value, docs, loc
|
|
|
4209
4209
|
|
|
4210
4210
|
|
|
4211
4211
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
4212
|
-
var lexer = __webpack_require__(
|
|
4213
|
-
var parser = __webpack_require__(
|
|
4214
|
-
var tokens = __webpack_require__(
|
|
4215
|
-
var AST = __webpack_require__(
|
|
4212
|
+
var lexer = __webpack_require__(8329);
|
|
4213
|
+
var parser = __webpack_require__(6400);
|
|
4214
|
+
var tokens = __webpack_require__(6241);
|
|
4215
|
+
var AST = __webpack_require__(575);
|
|
4216
4216
|
|
|
4217
4217
|
/**
|
|
4218
4218
|
* @private
|
|
@@ -4444,7 +4444,7 @@ module.exports["default"] = Engine;
|
|
|
4444
4444
|
|
|
4445
4445
|
/***/ }),
|
|
4446
4446
|
|
|
4447
|
-
/***/
|
|
4447
|
+
/***/ 8329:
|
|
4448
4448
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4449
4449
|
|
|
4450
4450
|
/**
|
|
@@ -4969,7 +4969,7 @@ Lexer.prototype.next = function () {
|
|
|
4969
4969
|
};
|
|
4970
4970
|
|
|
4971
4971
|
// extends the lexer with states
|
|
4972
|
-
[__webpack_require__(
|
|
4972
|
+
[__webpack_require__(4594), __webpack_require__(9318), __webpack_require__(1466), __webpack_require__(6032), __webpack_require__(9349), __webpack_require__(1275), __webpack_require__(2636), __webpack_require__(2066), __webpack_require__(3843)].forEach(function (ext) {
|
|
4973
4973
|
for (var k in ext) {
|
|
4974
4974
|
Lexer.prototype[k] = ext[k];
|
|
4975
4975
|
}
|
|
@@ -4978,7 +4978,7 @@ module.exports = Lexer;
|
|
|
4978
4978
|
|
|
4979
4979
|
/***/ }),
|
|
4980
4980
|
|
|
4981
|
-
/***/
|
|
4981
|
+
/***/ 4594:
|
|
4982
4982
|
/***/ ((module) => {
|
|
4983
4983
|
|
|
4984
4984
|
/**
|
|
@@ -5067,7 +5067,7 @@ module.exports = {
|
|
|
5067
5067
|
|
|
5068
5068
|
/***/ }),
|
|
5069
5069
|
|
|
5070
|
-
/***/
|
|
5070
|
+
/***/ 9318:
|
|
5071
5071
|
/***/ ((module) => {
|
|
5072
5072
|
|
|
5073
5073
|
/**
|
|
@@ -5128,7 +5128,7 @@ module.exports = {
|
|
|
5128
5128
|
|
|
5129
5129
|
/***/ }),
|
|
5130
5130
|
|
|
5131
|
-
/***/
|
|
5131
|
+
/***/ 1466:
|
|
5132
5132
|
/***/ ((module) => {
|
|
5133
5133
|
|
|
5134
5134
|
/**
|
|
@@ -5191,7 +5191,7 @@ module.exports = {
|
|
|
5191
5191
|
|
|
5192
5192
|
/***/ }),
|
|
5193
5193
|
|
|
5194
|
-
/***/
|
|
5194
|
+
/***/ 6032:
|
|
5195
5195
|
/***/ ((module) => {
|
|
5196
5196
|
|
|
5197
5197
|
/**
|
|
@@ -5359,7 +5359,7 @@ module.exports = {
|
|
|
5359
5359
|
|
|
5360
5360
|
/***/ }),
|
|
5361
5361
|
|
|
5362
|
-
/***/
|
|
5362
|
+
/***/ 9349:
|
|
5363
5363
|
/***/ ((module) => {
|
|
5364
5364
|
|
|
5365
5365
|
/**
|
|
@@ -5448,7 +5448,7 @@ module.exports = {
|
|
|
5448
5448
|
|
|
5449
5449
|
/***/ }),
|
|
5450
5450
|
|
|
5451
|
-
/***/
|
|
5451
|
+
/***/ 1275:
|
|
5452
5452
|
/***/ ((module) => {
|
|
5453
5453
|
|
|
5454
5454
|
/**
|
|
@@ -5559,7 +5559,7 @@ module.exports = {
|
|
|
5559
5559
|
|
|
5560
5560
|
/***/ }),
|
|
5561
5561
|
|
|
5562
|
-
/***/
|
|
5562
|
+
/***/ 2636:
|
|
5563
5563
|
/***/ ((module) => {
|
|
5564
5564
|
|
|
5565
5565
|
/**
|
|
@@ -6038,7 +6038,7 @@ module.exports = {
|
|
|
6038
6038
|
|
|
6039
6039
|
/***/ }),
|
|
6040
6040
|
|
|
6041
|
-
/***/
|
|
6041
|
+
/***/ 2066:
|
|
6042
6042
|
/***/ ((module) => {
|
|
6043
6043
|
|
|
6044
6044
|
/**
|
|
@@ -6385,7 +6385,7 @@ module.exports = {
|
|
|
6385
6385
|
|
|
6386
6386
|
/***/ }),
|
|
6387
6387
|
|
|
6388
|
-
/***/
|
|
6388
|
+
/***/ 3843:
|
|
6389
6389
|
/***/ ((module) => {
|
|
6390
6390
|
|
|
6391
6391
|
/**
|
|
@@ -6491,7 +6491,7 @@ module.exports = {
|
|
|
6491
6491
|
|
|
6492
6492
|
/***/ }),
|
|
6493
6493
|
|
|
6494
|
-
/***/
|
|
6494
|
+
/***/ 6400:
|
|
6495
6495
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
6496
6496
|
|
|
6497
6497
|
/**
|
|
@@ -6501,7 +6501,7 @@ module.exports = {
|
|
|
6501
6501
|
*/
|
|
6502
6502
|
|
|
6503
6503
|
|
|
6504
|
-
var Position = __webpack_require__(
|
|
6504
|
+
var Position = __webpack_require__(6085);
|
|
6505
6505
|
|
|
6506
6506
|
/**
|
|
6507
6507
|
* @private
|
|
@@ -6956,7 +6956,7 @@ Parser.prototype.is = function (type) {
|
|
|
6956
6956
|
};
|
|
6957
6957
|
|
|
6958
6958
|
// extends the parser with syntax files
|
|
6959
|
-
[__webpack_require__(
|
|
6959
|
+
[__webpack_require__(7090), __webpack_require__(6251), __webpack_require__(9418), __webpack_require__(9912), __webpack_require__(3090), __webpack_require__(1307), __webpack_require__(9432), __webpack_require__(5976), __webpack_require__(7106), __webpack_require__(608), __webpack_require__(4055), __webpack_require__(9250), __webpack_require__(3847), __webpack_require__(4982), __webpack_require__(6786), __webpack_require__(9683)].forEach(function (ext) {
|
|
6960
6960
|
for (var k in ext) {
|
|
6961
6961
|
/* istanbul ignore next */
|
|
6962
6962
|
if (Object.prototype.hasOwnProperty.call(Parser.prototype, k)) {
|
|
@@ -6970,7 +6970,7 @@ module.exports = Parser;
|
|
|
6970
6970
|
|
|
6971
6971
|
/***/ }),
|
|
6972
6972
|
|
|
6973
|
-
/***/
|
|
6973
|
+
/***/ 7090:
|
|
6974
6974
|
/***/ ((module) => {
|
|
6975
6975
|
|
|
6976
6976
|
/**
|
|
@@ -7074,7 +7074,7 @@ module.exports = {
|
|
|
7074
7074
|
|
|
7075
7075
|
/***/ }),
|
|
7076
7076
|
|
|
7077
|
-
/***/
|
|
7077
|
+
/***/ 6251:
|
|
7078
7078
|
/***/ ((module) => {
|
|
7079
7079
|
|
|
7080
7080
|
/**
|
|
@@ -7705,7 +7705,7 @@ module.exports = {
|
|
|
7705
7705
|
|
|
7706
7706
|
/***/ }),
|
|
7707
7707
|
|
|
7708
|
-
/***/
|
|
7708
|
+
/***/ 9418:
|
|
7709
7709
|
/***/ ((module) => {
|
|
7710
7710
|
|
|
7711
7711
|
/**
|
|
@@ -7751,7 +7751,7 @@ module.exports = {
|
|
|
7751
7751
|
|
|
7752
7752
|
/***/ }),
|
|
7753
7753
|
|
|
7754
|
-
/***/
|
|
7754
|
+
/***/ 3090:
|
|
7755
7755
|
/***/ ((module) => {
|
|
7756
7756
|
|
|
7757
7757
|
/**
|
|
@@ -7808,7 +7808,7 @@ module.exports = {
|
|
|
7808
7808
|
|
|
7809
7809
|
/***/ }),
|
|
7810
7810
|
|
|
7811
|
-
/***/
|
|
7811
|
+
/***/ 9912:
|
|
7812
7812
|
/***/ ((module) => {
|
|
7813
7813
|
|
|
7814
7814
|
/**
|
|
@@ -8560,7 +8560,7 @@ module.exports = {
|
|
|
8560
8560
|
|
|
8561
8561
|
/***/ }),
|
|
8562
8562
|
|
|
8563
|
-
/***/
|
|
8563
|
+
/***/ 1307:
|
|
8564
8564
|
/***/ ((module) => {
|
|
8565
8565
|
|
|
8566
8566
|
/**
|
|
@@ -8983,7 +8983,7 @@ module.exports = {
|
|
|
8983
8983
|
|
|
8984
8984
|
/***/ }),
|
|
8985
8985
|
|
|
8986
|
-
/***/
|
|
8986
|
+
/***/ 9432:
|
|
8987
8987
|
/***/ ((module) => {
|
|
8988
8988
|
|
|
8989
8989
|
/**
|
|
@@ -9082,7 +9082,7 @@ module.exports = {
|
|
|
9082
9082
|
|
|
9083
9083
|
/***/ }),
|
|
9084
9084
|
|
|
9085
|
-
/***/
|
|
9085
|
+
/***/ 5976:
|
|
9086
9086
|
/***/ ((module) => {
|
|
9087
9087
|
|
|
9088
9088
|
/**
|
|
@@ -9254,7 +9254,7 @@ module.exports = {
|
|
|
9254
9254
|
|
|
9255
9255
|
/***/ }),
|
|
9256
9256
|
|
|
9257
|
-
/***/
|
|
9257
|
+
/***/ 7106:
|
|
9258
9258
|
/***/ ((module) => {
|
|
9259
9259
|
|
|
9260
9260
|
/**
|
|
@@ -9281,7 +9281,7 @@ module.exports = {
|
|
|
9281
9281
|
|
|
9282
9282
|
/***/ }),
|
|
9283
9283
|
|
|
9284
|
-
/***/
|
|
9284
|
+
/***/ 608:
|
|
9285
9285
|
/***/ ((module) => {
|
|
9286
9286
|
|
|
9287
9287
|
/**
|
|
@@ -9496,7 +9496,7 @@ module.exports = {
|
|
|
9496
9496
|
|
|
9497
9497
|
/***/ }),
|
|
9498
9498
|
|
|
9499
|
-
/***/
|
|
9499
|
+
/***/ 4055:
|
|
9500
9500
|
/***/ ((module) => {
|
|
9501
9501
|
|
|
9502
9502
|
/**
|
|
@@ -9914,7 +9914,7 @@ module.exports = {
|
|
|
9914
9914
|
|
|
9915
9915
|
/***/ }),
|
|
9916
9916
|
|
|
9917
|
-
/***/
|
|
9917
|
+
/***/ 9250:
|
|
9918
9918
|
/***/ ((module) => {
|
|
9919
9919
|
|
|
9920
9920
|
/**
|
|
@@ -10329,7 +10329,7 @@ module.exports = {
|
|
|
10329
10329
|
|
|
10330
10330
|
/***/ }),
|
|
10331
10331
|
|
|
10332
|
-
/***/
|
|
10332
|
+
/***/ 3847:
|
|
10333
10333
|
/***/ ((module) => {
|
|
10334
10334
|
|
|
10335
10335
|
/**
|
|
@@ -10425,7 +10425,7 @@ module.exports = {
|
|
|
10425
10425
|
|
|
10426
10426
|
/***/ }),
|
|
10427
10427
|
|
|
10428
|
-
/***/
|
|
10428
|
+
/***/ 4982:
|
|
10429
10429
|
/***/ ((module) => {
|
|
10430
10430
|
|
|
10431
10431
|
/**
|
|
@@ -10474,7 +10474,7 @@ module.exports = {
|
|
|
10474
10474
|
|
|
10475
10475
|
/***/ }),
|
|
10476
10476
|
|
|
10477
|
-
/***/
|
|
10477
|
+
/***/ 6786:
|
|
10478
10478
|
/***/ ((module) => {
|
|
10479
10479
|
|
|
10480
10480
|
/**
|
|
@@ -10666,7 +10666,7 @@ module.exports = {
|
|
|
10666
10666
|
|
|
10667
10667
|
/***/ }),
|
|
10668
10668
|
|
|
10669
|
-
/***/
|
|
10669
|
+
/***/ 9683:
|
|
10670
10670
|
/***/ ((module) => {
|
|
10671
10671
|
|
|
10672
10672
|
/**
|
|
@@ -10755,6 +10755,7 @@ module.exports = {
|
|
|
10755
10755
|
name = this.next().read_expr();
|
|
10756
10756
|
this.expect("}") && this.next();
|
|
10757
10757
|
offset = offset("literal", name, null);
|
|
10758
|
+
this.expect("(");
|
|
10758
10759
|
} else {
|
|
10759
10760
|
this.error([this.tok.T_VARIABLE, this.tok.T_STRING]);
|
|
10760
10761
|
// graceful mode : set getter as error node and continue
|
|
@@ -11003,7 +11004,7 @@ module.exports = {
|
|
|
11003
11004
|
|
|
11004
11005
|
/***/ }),
|
|
11005
11006
|
|
|
11006
|
-
/***/
|
|
11007
|
+
/***/ 6241:
|
|
11007
11008
|
/***/ ((module) => {
|
|
11008
11009
|
|
|
11009
11010
|
/**
|
|
@@ -11230,7 +11231,7 @@ module.exports = Object.freeze(tokens);
|
|
|
11230
11231
|
/******/ // startup
|
|
11231
11232
|
/******/ // Load entry module and return exports
|
|
11232
11233
|
/******/ // This entry module is referenced by other modules so it can't be inlined
|
|
11233
|
-
/******/ var __webpack_exports__ = __webpack_require__(
|
|
11234
|
+
/******/ var __webpack_exports__ = __webpack_require__(3023);
|
|
11234
11235
|
/******/ __webpack_exports__ = __webpack_exports__["default"];
|
|
11235
11236
|
/******/
|
|
11236
11237
|
/******/ return __webpack_exports__;
|