@dbml/core 2.4.4 → 2.5.1
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/lib/model_structure/database.js +5 -2
- package/lib/model_structure/enum.js +2 -1
- package/lib/model_structure/enumValue.js +2 -1
- package/lib/model_structure/field.js +4 -3
- package/lib/model_structure/indexes.js +2 -1
- package/lib/model_structure/schema.js +9 -4
- package/lib/model_structure/table.js +2 -1
- package/lib/parse/dbml/parser.pegjs +12 -2
- package/lib/parse/dbmlParser.js +434 -428
- package/lib/parse/mssql/statements/actions.js +10 -6
- package/lib/parse/mssql/statements/statement_types/comments/actions.js +23 -23
- package/lib/parse/mysql/parser.pegjs +5 -5
- package/lib/parse/mysqlParser.js +6 -2
- package/lib/parse/postgresParser.js +1 -1
- package/lib/parse/postgresql/parser.pegjs +2 -2
- package/package.json +2 -2
- package/types/.DS_Store +0 -0
- package/types/model_structure/database.d.ts +3 -2
- package/types/model_structure/element.d.ts +6 -0
- package/types/model_structure/enum.d.ts +3 -2
- package/types/model_structure/enumValue.d.ts +3 -2
- package/types/model_structure/field.d.ts +6 -2
- package/types/model_structure/indexes.d.ts +3 -2
- package/types/model_structure/schema.d.ts +3 -2
- package/types/model_structure/table.d.ts +3 -2
package/lib/parse/dbmlParser.js
CHANGED
|
@@ -711,13 +711,19 @@ function peg$parse(input, options) {
|
|
|
711
711
|
},
|
|
712
712
|
peg$c92 = "note",
|
|
713
713
|
peg$c93 = peg$literalExpectation("note", true),
|
|
714
|
-
peg$c94 =
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
peg$
|
|
714
|
+
peg$c94 = function peg$c94(val) {
|
|
715
|
+
return {
|
|
716
|
+
value: val.value,
|
|
717
|
+
token: location()
|
|
718
|
+
};
|
|
719
|
+
},
|
|
720
|
+
peg$c95 = "note:",
|
|
721
|
+
peg$c96 = peg$literalExpectation("note:", true),
|
|
722
|
+
peg$c97 = "type:",
|
|
723
|
+
peg$c98 = peg$literalExpectation("type:", true),
|
|
724
|
+
peg$c99 = "ref:",
|
|
725
|
+
peg$c100 = peg$literalExpectation("ref:", false),
|
|
726
|
+
peg$c101 = function peg$c101(relation, field) {
|
|
721
727
|
return {
|
|
722
728
|
schemaName: field.schemaName,
|
|
723
729
|
tableName: field.tableName,
|
|
@@ -726,124 +732,124 @@ function peg$parse(input, options) {
|
|
|
726
732
|
token: location()
|
|
727
733
|
};
|
|
728
734
|
},
|
|
729
|
-
peg$
|
|
730
|
-
peg$
|
|
731
|
-
peg$
|
|
735
|
+
peg$c102 = "default:",
|
|
736
|
+
peg$c103 = peg$literalExpectation("default:", true),
|
|
737
|
+
peg$c104 = function peg$c104(val) {
|
|
732
738
|
return val;
|
|
733
739
|
},
|
|
734
|
-
peg$
|
|
735
|
-
peg$
|
|
736
|
-
peg$
|
|
740
|
+
peg$c105 = "as",
|
|
741
|
+
peg$c106 = peg$literalExpectation("as", false),
|
|
742
|
+
peg$c107 = function peg$c107(alias) {
|
|
737
743
|
return alias;
|
|
738
744
|
},
|
|
739
|
-
peg$
|
|
745
|
+
peg$c108 = function peg$c108(s, color) {
|
|
740
746
|
return s + color.join('');
|
|
741
747
|
},
|
|
742
|
-
peg$
|
|
743
|
-
peg$
|
|
744
|
-
peg$
|
|
745
|
-
peg$
|
|
746
|
-
peg$
|
|
747
|
-
peg$
|
|
748
|
-
peg$
|
|
749
|
-
peg$
|
|
750
|
-
peg$
|
|
751
|
-
peg$
|
|
752
|
-
peg$
|
|
753
|
-
peg$
|
|
748
|
+
peg$c109 = peg$otherExpectation("project"),
|
|
749
|
+
peg$c110 = "project",
|
|
750
|
+
peg$c111 = peg$literalExpectation("project", true),
|
|
751
|
+
peg$c112 = peg$otherExpectation("table"),
|
|
752
|
+
peg$c113 = "table",
|
|
753
|
+
peg$c114 = peg$literalExpectation("table", true),
|
|
754
|
+
peg$c115 = peg$literalExpectation("as", true),
|
|
755
|
+
peg$c116 = peg$otherExpectation("references"),
|
|
756
|
+
peg$c117 = "ref",
|
|
757
|
+
peg$c118 = peg$literalExpectation("ref", true),
|
|
758
|
+
peg$c119 = peg$otherExpectation("unique"),
|
|
759
|
+
peg$c120 = function peg$c120() {
|
|
754
760
|
return {
|
|
755
761
|
unique: true
|
|
756
762
|
};
|
|
757
763
|
},
|
|
758
|
-
peg$
|
|
759
|
-
peg$
|
|
764
|
+
peg$c121 = peg$otherExpectation("PK"),
|
|
765
|
+
peg$c122 = function peg$c122() {
|
|
760
766
|
return {
|
|
761
767
|
pk: true
|
|
762
768
|
};
|
|
763
769
|
},
|
|
764
|
-
peg$
|
|
765
|
-
peg$
|
|
766
|
-
peg$
|
|
767
|
-
peg$
|
|
768
|
-
peg$
|
|
769
|
-
peg$
|
|
770
|
-
peg$
|
|
771
|
-
peg$
|
|
772
|
-
peg$
|
|
773
|
-
peg$
|
|
774
|
-
peg$
|
|
775
|
-
peg$
|
|
776
|
-
peg$
|
|
777
|
-
peg$
|
|
778
|
-
peg$
|
|
779
|
-
peg$
|
|
780
|
-
peg$
|
|
781
|
-
peg$
|
|
782
|
-
peg$
|
|
783
|
-
peg$
|
|
784
|
-
peg$
|
|
785
|
-
peg$
|
|
786
|
-
peg$
|
|
787
|
-
peg$
|
|
788
|
-
peg$
|
|
789
|
-
peg$
|
|
790
|
-
peg$
|
|
791
|
-
peg$
|
|
792
|
-
peg$
|
|
793
|
-
peg$
|
|
794
|
-
peg$
|
|
795
|
-
peg$
|
|
796
|
-
peg$
|
|
797
|
-
peg$
|
|
798
|
-
peg$
|
|
799
|
-
peg$
|
|
800
|
-
peg$
|
|
801
|
-
peg$
|
|
802
|
-
peg$
|
|
803
|
-
peg$
|
|
804
|
-
peg$
|
|
805
|
-
peg$
|
|
806
|
-
peg$
|
|
770
|
+
peg$c123 = peg$otherExpectation("indexes"),
|
|
771
|
+
peg$c124 = "indexes",
|
|
772
|
+
peg$c125 = peg$literalExpectation("indexes", true),
|
|
773
|
+
peg$c126 = peg$otherExpectation("btree"),
|
|
774
|
+
peg$c127 = "btree",
|
|
775
|
+
peg$c128 = peg$literalExpectation("btree", true),
|
|
776
|
+
peg$c129 = peg$otherExpectation("hash"),
|
|
777
|
+
peg$c130 = "hash",
|
|
778
|
+
peg$c131 = peg$literalExpectation("hash", true),
|
|
779
|
+
peg$c132 = peg$otherExpectation("enum"),
|
|
780
|
+
peg$c133 = "enum",
|
|
781
|
+
peg$c134 = peg$literalExpectation("enum", true),
|
|
782
|
+
peg$c135 = "headercolor",
|
|
783
|
+
peg$c136 = peg$literalExpectation("headercolor", true),
|
|
784
|
+
peg$c137 = peg$otherExpectation("Table Group"),
|
|
785
|
+
peg$c138 = "tablegroup",
|
|
786
|
+
peg$c139 = peg$literalExpectation("TableGroup", true),
|
|
787
|
+
peg$c140 = peg$otherExpectation("no action"),
|
|
788
|
+
peg$c141 = "no action",
|
|
789
|
+
peg$c142 = peg$literalExpectation("no action", true),
|
|
790
|
+
peg$c143 = peg$otherExpectation("restrict"),
|
|
791
|
+
peg$c144 = "restrict",
|
|
792
|
+
peg$c145 = peg$literalExpectation("restrict", true),
|
|
793
|
+
peg$c146 = peg$otherExpectation("cascade"),
|
|
794
|
+
peg$c147 = "cascade",
|
|
795
|
+
peg$c148 = peg$literalExpectation("cascade", true),
|
|
796
|
+
peg$c149 = peg$otherExpectation("set null"),
|
|
797
|
+
peg$c150 = "set null",
|
|
798
|
+
peg$c151 = peg$literalExpectation("set null", true),
|
|
799
|
+
peg$c152 = peg$otherExpectation("set default"),
|
|
800
|
+
peg$c153 = "set default",
|
|
801
|
+
peg$c154 = peg$literalExpectation("set default", true),
|
|
802
|
+
peg$c155 = peg$otherExpectation("<>, >, - or <"),
|
|
803
|
+
peg$c156 = "<>",
|
|
804
|
+
peg$c157 = peg$literalExpectation("<>", false),
|
|
805
|
+
peg$c158 = ">",
|
|
806
|
+
peg$c159 = peg$literalExpectation(">", false),
|
|
807
|
+
peg$c160 = "<",
|
|
808
|
+
peg$c161 = peg$literalExpectation("<", false),
|
|
809
|
+
peg$c162 = "-",
|
|
810
|
+
peg$c163 = peg$literalExpectation("-", false),
|
|
811
|
+
peg$c164 = peg$otherExpectation("valid name"),
|
|
812
|
+
peg$c165 = function peg$c165(c) {
|
|
807
813
|
return c.join("");
|
|
808
814
|
},
|
|
809
|
-
peg$
|
|
810
|
-
peg$
|
|
811
|
-
peg$
|
|
812
|
-
peg$
|
|
813
|
-
peg$
|
|
814
|
-
peg$
|
|
815
|
+
peg$c166 = /^[^"\n]/,
|
|
816
|
+
peg$c167 = peg$classExpectation(["\"", "\n"], true, false),
|
|
817
|
+
peg$c168 = peg$otherExpectation("schema name"),
|
|
818
|
+
peg$c169 = ".",
|
|
819
|
+
peg$c170 = peg$literalExpectation(".", false),
|
|
820
|
+
peg$c171 = function peg$c171(name) {
|
|
815
821
|
return name;
|
|
816
822
|
},
|
|
817
|
-
peg$
|
|
823
|
+
peg$c172 = function peg$c172(schemaName, tableName, fieldNames) {
|
|
818
824
|
return {
|
|
819
825
|
schemaName: schemaName,
|
|
820
826
|
tableName: tableName,
|
|
821
827
|
fieldNames: fieldNames
|
|
822
828
|
};
|
|
823
829
|
},
|
|
824
|
-
peg$
|
|
830
|
+
peg$c173 = function peg$c173(tableName, fieldNames) {
|
|
825
831
|
return {
|
|
826
832
|
schemaName: null,
|
|
827
833
|
tableName: tableName,
|
|
828
834
|
fieldNames: fieldNames
|
|
829
835
|
};
|
|
830
836
|
},
|
|
831
|
-
peg$
|
|
837
|
+
peg$c174 = function peg$c174(schemaName, tableName, fieldName) {
|
|
832
838
|
return {
|
|
833
839
|
schemaName: schemaName,
|
|
834
840
|
tableName: tableName,
|
|
835
841
|
fieldName: fieldName
|
|
836
842
|
};
|
|
837
843
|
},
|
|
838
|
-
peg$
|
|
844
|
+
peg$c175 = function peg$c175(tableName, fieldName) {
|
|
839
845
|
return {
|
|
840
846
|
schemaName: null,
|
|
841
847
|
tableName: tableName,
|
|
842
848
|
fieldName: fieldName
|
|
843
849
|
};
|
|
844
850
|
},
|
|
845
|
-
peg$
|
|
846
|
-
peg$
|
|
851
|
+
peg$c176 = peg$otherExpectation("type"),
|
|
852
|
+
peg$c177 = function peg$c177(type_name, args) {
|
|
847
853
|
args = args ? args[3] : null;
|
|
848
854
|
|
|
849
855
|
if (type_name.toLowerCase() !== 'enum') {
|
|
@@ -855,76 +861,76 @@ function peg$parse(input, options) {
|
|
|
855
861
|
args: args
|
|
856
862
|
};
|
|
857
863
|
},
|
|
858
|
-
peg$
|
|
859
|
-
peg$
|
|
864
|
+
peg$c178 = peg$otherExpectation("expression"),
|
|
865
|
+
peg$c179 = function peg$c179(factors) {
|
|
860
866
|
return _.flattenDeep(factors).join("");
|
|
861
867
|
},
|
|
862
|
-
peg$
|
|
863
|
-
peg$
|
|
864
|
-
peg$
|
|
865
|
-
peg$
|
|
866
|
-
peg$
|
|
867
|
-
peg$
|
|
868
|
+
peg$c180 = ",",
|
|
869
|
+
peg$c181 = peg$literalExpectation(",", false),
|
|
870
|
+
peg$c182 = ");",
|
|
871
|
+
peg$c183 = peg$literalExpectation(");", false),
|
|
872
|
+
peg$c184 = peg$anyExpectation(),
|
|
873
|
+
peg$c185 = function peg$c185(factors) {
|
|
868
874
|
return _.flattenDeep(factors).join("");
|
|
869
875
|
},
|
|
870
|
-
peg$
|
|
871
|
-
peg$
|
|
872
|
-
peg$
|
|
873
|
-
peg$
|
|
874
|
-
peg$
|
|
876
|
+
peg$c186 = /^[',.a-z0-9_+-`]/i,
|
|
877
|
+
peg$c187 = peg$classExpectation(["'", ",", ".", ["a", "z"], ["0", "9"], "_", ["+", "`"]], false, true),
|
|
878
|
+
peg$c188 = /^['.a-z0-9_+\-]/i,
|
|
879
|
+
peg$c189 = peg$classExpectation(["'", ".", ["a", "z"], ["0", "9"], "_", "+", "-"], false, true),
|
|
880
|
+
peg$c190 = function peg$c190() {
|
|
875
881
|
return text();
|
|
876
882
|
},
|
|
877
|
-
peg$
|
|
878
|
-
peg$
|
|
879
|
-
peg$
|
|
880
|
-
peg$
|
|
881
|
-
peg$
|
|
882
|
-
peg$
|
|
883
|
-
peg$
|
|
884
|
-
peg$
|
|
883
|
+
peg$c191 = /^[[\]]/,
|
|
884
|
+
peg$c192 = peg$classExpectation(["[", "]"], false, false),
|
|
885
|
+
peg$c193 = peg$otherExpectation("letter, number or underscore"),
|
|
886
|
+
peg$c194 = /^[a-z0-9_]/i,
|
|
887
|
+
peg$c195 = peg$classExpectation([["a", "z"], ["0", "9"], "_"], false, true),
|
|
888
|
+
peg$c196 = /^[0-9a-fA-F]/,
|
|
889
|
+
peg$c197 = peg$classExpectation([["0", "9"], ["a", "f"], ["A", "F"]], false, false),
|
|
890
|
+
peg$c198 = function peg$c198(c) {
|
|
885
891
|
return c.toLowerCase();
|
|
886
892
|
},
|
|
887
|
-
peg$
|
|
888
|
-
peg$
|
|
889
|
-
peg$
|
|
890
|
-
peg$
|
|
891
|
-
peg$
|
|
892
|
-
peg$
|
|
893
|
-
peg$
|
|
894
|
-
peg$
|
|
895
|
-
peg$
|
|
896
|
-
peg$
|
|
897
|
-
peg$
|
|
898
|
-
peg$
|
|
899
|
-
peg$
|
|
900
|
-
peg$
|
|
901
|
-
peg$
|
|
902
|
-
peg$
|
|
903
|
-
peg$
|
|
904
|
-
peg$
|
|
905
|
-
peg$
|
|
906
|
-
peg$
|
|
907
|
-
peg$
|
|
908
|
-
peg$
|
|
909
|
-
peg$
|
|
910
|
-
peg$
|
|
911
|
-
peg$
|
|
912
|
-
peg$
|
|
913
|
-
peg$
|
|
914
|
-
peg$
|
|
915
|
-
peg$
|
|
893
|
+
peg$c199 = "\"",
|
|
894
|
+
peg$c200 = peg$literalExpectation("\"", false),
|
|
895
|
+
peg$c201 = peg$otherExpectation("endline"),
|
|
896
|
+
peg$c202 = "\t",
|
|
897
|
+
peg$c203 = peg$literalExpectation("\t", false),
|
|
898
|
+
peg$c204 = "//",
|
|
899
|
+
peg$c205 = peg$literalExpectation("//", false),
|
|
900
|
+
peg$c206 = /^[^\n]/,
|
|
901
|
+
peg$c207 = peg$classExpectation(["\n"], true, false),
|
|
902
|
+
peg$c208 = "/*",
|
|
903
|
+
peg$c209 = peg$literalExpectation("/*", false),
|
|
904
|
+
peg$c210 = "*/",
|
|
905
|
+
peg$c211 = peg$literalExpectation("*/", false),
|
|
906
|
+
peg$c212 = peg$otherExpectation("comment"),
|
|
907
|
+
peg$c213 = peg$otherExpectation("newline"),
|
|
908
|
+
peg$c214 = "\r\n",
|
|
909
|
+
peg$c215 = peg$literalExpectation("\r\n", false),
|
|
910
|
+
peg$c216 = "\n",
|
|
911
|
+
peg$c217 = peg$literalExpectation("\n", false),
|
|
912
|
+
peg$c218 = peg$otherExpectation("whitespace"),
|
|
913
|
+
peg$c219 = /^[ \t\r\n\r]/,
|
|
914
|
+
peg$c220 = peg$classExpectation([" ", "\t", "\r", "\n", "\r"], false, false),
|
|
915
|
+
peg$c221 = /^[ \t\r\n\r"]/,
|
|
916
|
+
peg$c222 = peg$classExpectation([" ", "\t", "\r", "\n", "\r", "\""], false, false),
|
|
917
|
+
peg$c223 = " ",
|
|
918
|
+
peg$c224 = peg$literalExpectation(" ", false),
|
|
919
|
+
peg$c225 = "#",
|
|
920
|
+
peg$c226 = peg$literalExpectation("#", false),
|
|
921
|
+
peg$c227 = function peg$c227() {
|
|
916
922
|
return "#";
|
|
917
923
|
},
|
|
918
|
-
peg$
|
|
919
|
-
peg$
|
|
924
|
+
peg$c228 = peg$otherExpectation("string"),
|
|
925
|
+
peg$c229 = function peg$c229(chars) {
|
|
920
926
|
return {
|
|
921
927
|
value: chars.join(''),
|
|
922
928
|
type: 'string'
|
|
923
929
|
};
|
|
924
930
|
},
|
|
925
|
-
peg$
|
|
926
|
-
peg$
|
|
927
|
-
peg$
|
|
931
|
+
peg$c230 = "'''",
|
|
932
|
+
peg$c231 = peg$literalExpectation("'''", false),
|
|
933
|
+
peg$c232 = function peg$c232(chars) {
|
|
928
934
|
var str = chars.join(''); // // replace line continuation using look around, but this is not compatible with firefox, safari.
|
|
929
935
|
// str = str.replace(/(?<!\\)\\(?!\\)(?:\n|\r\n)?/g, '');
|
|
930
936
|
// str = str.replace(/\\\\/, '\\');
|
|
@@ -968,53 +974,53 @@ function peg$parse(input, options) {
|
|
|
968
974
|
type: 'string'
|
|
969
975
|
};
|
|
970
976
|
},
|
|
971
|
-
peg$
|
|
972
|
-
peg$
|
|
973
|
-
peg$
|
|
974
|
-
peg$
|
|
975
|
-
peg$
|
|
977
|
+
peg$c233 = "'",
|
|
978
|
+
peg$c234 = peg$literalExpectation("'", false),
|
|
979
|
+
peg$c235 = "\\",
|
|
980
|
+
peg$c236 = peg$literalExpectation("\\", false),
|
|
981
|
+
peg$c237 = function peg$c237() {
|
|
976
982
|
return '"';
|
|
977
983
|
},
|
|
978
|
-
peg$
|
|
984
|
+
peg$c238 = function peg$c238() {
|
|
979
985
|
return text();
|
|
980
986
|
},
|
|
981
|
-
peg$
|
|
982
|
-
peg$
|
|
983
|
-
peg$
|
|
987
|
+
peg$c239 = "\\'",
|
|
988
|
+
peg$c240 = peg$literalExpectation("\\'", false),
|
|
989
|
+
peg$c241 = function peg$c241() {
|
|
984
990
|
return "'";
|
|
985
991
|
},
|
|
986
|
-
peg$
|
|
992
|
+
peg$c242 = function peg$c242(bl) {
|
|
987
993
|
// escape character \. \\n => \n. Remove one backslash in the result string.
|
|
988
994
|
return bl.join('');
|
|
989
995
|
},
|
|
990
|
-
peg$
|
|
996
|
+
peg$c243 = function peg$c243() {
|
|
991
997
|
// replace line continuation
|
|
992
998
|
return '';
|
|
993
999
|
},
|
|
994
|
-
peg$
|
|
995
|
-
peg$
|
|
996
|
-
peg$
|
|
997
|
-
peg$
|
|
998
|
-
peg$
|
|
999
|
-
peg$
|
|
1000
|
-
peg$
|
|
1001
|
-
peg$
|
|
1002
|
-
peg$
|
|
1000
|
+
peg$c244 = /^[0-9]/,
|
|
1001
|
+
peg$c245 = peg$classExpectation([["0", "9"]], false, false),
|
|
1002
|
+
peg$c246 = "=",
|
|
1003
|
+
peg$c247 = peg$literalExpectation("=", false),
|
|
1004
|
+
peg$c248 = "true",
|
|
1005
|
+
peg$c249 = peg$literalExpectation("true", true),
|
|
1006
|
+
peg$c250 = "false",
|
|
1007
|
+
peg$c251 = peg$literalExpectation("false", true),
|
|
1008
|
+
peg$c252 = function peg$c252(_boolean) {
|
|
1003
1009
|
return {
|
|
1004
1010
|
type: 'boolean',
|
|
1005
1011
|
value: _boolean
|
|
1006
1012
|
};
|
|
1007
1013
|
},
|
|
1008
|
-
peg$
|
|
1014
|
+
peg$c253 = function peg$c253(minus, number) {
|
|
1009
1015
|
return {
|
|
1010
1016
|
type: 'number',
|
|
1011
1017
|
value: minus ? -number : number
|
|
1012
1018
|
};
|
|
1013
1019
|
},
|
|
1014
|
-
peg$
|
|
1020
|
+
peg$c254 = function peg$c254(left, right) {
|
|
1015
1021
|
return parseFloat(left.join("") + "." + right.join(""));
|
|
1016
1022
|
},
|
|
1017
|
-
peg$
|
|
1023
|
+
peg$c255 = function peg$c255(digits) {
|
|
1018
1024
|
return parseInt(digits.join(""), 10);
|
|
1019
1025
|
},
|
|
1020
1026
|
peg$currPos = 0,
|
|
@@ -4750,7 +4756,7 @@ function peg$parse(input, options) {
|
|
|
4750
4756
|
|
|
4751
4757
|
if (s7 !== peg$FAILED) {
|
|
4752
4758
|
peg$savedPos = s0;
|
|
4753
|
-
s1 = peg$
|
|
4759
|
+
s1 = peg$c94(s5);
|
|
4754
4760
|
s0 = s1;
|
|
4755
4761
|
} else {
|
|
4756
4762
|
peg$currPos = s0;
|
|
@@ -4789,14 +4795,14 @@ function peg$parse(input, options) {
|
|
|
4789
4795
|
var s0, s1, s2, s3;
|
|
4790
4796
|
s0 = peg$currPos;
|
|
4791
4797
|
|
|
4792
|
-
if (input.substr(peg$currPos, 5).toLowerCase() === peg$
|
|
4798
|
+
if (input.substr(peg$currPos, 5).toLowerCase() === peg$c95) {
|
|
4793
4799
|
s1 = input.substr(peg$currPos, 5);
|
|
4794
4800
|
peg$currPos += 5;
|
|
4795
4801
|
} else {
|
|
4796
4802
|
s1 = peg$FAILED;
|
|
4797
4803
|
|
|
4798
4804
|
if (peg$silentFails === 0) {
|
|
4799
|
-
peg$fail(peg$
|
|
4805
|
+
peg$fail(peg$c96);
|
|
4800
4806
|
}
|
|
4801
4807
|
}
|
|
4802
4808
|
|
|
@@ -4808,7 +4814,7 @@ function peg$parse(input, options) {
|
|
|
4808
4814
|
|
|
4809
4815
|
if (s3 !== peg$FAILED) {
|
|
4810
4816
|
peg$savedPos = s0;
|
|
4811
|
-
s1 = peg$
|
|
4817
|
+
s1 = peg$c94(s3);
|
|
4812
4818
|
s0 = s1;
|
|
4813
4819
|
} else {
|
|
4814
4820
|
peg$currPos = s0;
|
|
@@ -4830,14 +4836,14 @@ function peg$parse(input, options) {
|
|
|
4830
4836
|
var s0, s1, s2, s3;
|
|
4831
4837
|
s0 = peg$currPos;
|
|
4832
4838
|
|
|
4833
|
-
if (input.substr(peg$currPos, 5).toLowerCase() === peg$
|
|
4839
|
+
if (input.substr(peg$currPos, 5).toLowerCase() === peg$c97) {
|
|
4834
4840
|
s1 = input.substr(peg$currPos, 5);
|
|
4835
4841
|
peg$currPos += 5;
|
|
4836
4842
|
} else {
|
|
4837
4843
|
s1 = peg$FAILED;
|
|
4838
4844
|
|
|
4839
4845
|
if (peg$silentFails === 0) {
|
|
4840
|
-
peg$fail(peg$
|
|
4846
|
+
peg$fail(peg$c98);
|
|
4841
4847
|
}
|
|
4842
4848
|
}
|
|
4843
4849
|
|
|
@@ -4875,14 +4881,14 @@ function peg$parse(input, options) {
|
|
|
4875
4881
|
var s0, s1, s2, s3, s4, s5;
|
|
4876
4882
|
s0 = peg$currPos;
|
|
4877
4883
|
|
|
4878
|
-
if (input.substr(peg$currPos, 4) === peg$
|
|
4879
|
-
s1 = peg$
|
|
4884
|
+
if (input.substr(peg$currPos, 4) === peg$c99) {
|
|
4885
|
+
s1 = peg$c99;
|
|
4880
4886
|
peg$currPos += 4;
|
|
4881
4887
|
} else {
|
|
4882
4888
|
s1 = peg$FAILED;
|
|
4883
4889
|
|
|
4884
4890
|
if (peg$silentFails === 0) {
|
|
4885
|
-
peg$fail(peg$
|
|
4891
|
+
peg$fail(peg$c100);
|
|
4886
4892
|
}
|
|
4887
4893
|
}
|
|
4888
4894
|
|
|
@@ -4916,7 +4922,7 @@ function peg$parse(input, options) {
|
|
|
4916
4922
|
|
|
4917
4923
|
if (s5 !== peg$FAILED) {
|
|
4918
4924
|
peg$savedPos = s0;
|
|
4919
|
-
s1 = peg$
|
|
4925
|
+
s1 = peg$c101(s3, s5);
|
|
4920
4926
|
s0 = s1;
|
|
4921
4927
|
} else {
|
|
4922
4928
|
peg$currPos = s0;
|
|
@@ -4946,14 +4952,14 @@ function peg$parse(input, options) {
|
|
|
4946
4952
|
var s0, s1, s2, s3;
|
|
4947
4953
|
s0 = peg$currPos;
|
|
4948
4954
|
|
|
4949
|
-
if (input.substr(peg$currPos, 8).toLowerCase() === peg$
|
|
4955
|
+
if (input.substr(peg$currPos, 8).toLowerCase() === peg$c102) {
|
|
4950
4956
|
s1 = input.substr(peg$currPos, 8);
|
|
4951
4957
|
peg$currPos += 8;
|
|
4952
4958
|
} else {
|
|
4953
4959
|
s1 = peg$FAILED;
|
|
4954
4960
|
|
|
4955
4961
|
if (peg$silentFails === 0) {
|
|
4956
|
-
peg$fail(peg$
|
|
4962
|
+
peg$fail(peg$c103);
|
|
4957
4963
|
}
|
|
4958
4964
|
}
|
|
4959
4965
|
|
|
@@ -4965,7 +4971,7 @@ function peg$parse(input, options) {
|
|
|
4965
4971
|
|
|
4966
4972
|
if (s3 !== peg$FAILED) {
|
|
4967
4973
|
peg$savedPos = s0;
|
|
4968
|
-
s1 = peg$
|
|
4974
|
+
s1 = peg$c104(s3);
|
|
4969
4975
|
s0 = s1;
|
|
4970
4976
|
} else {
|
|
4971
4977
|
peg$currPos = s0;
|
|
@@ -5018,14 +5024,14 @@ function peg$parse(input, options) {
|
|
|
5018
5024
|
}
|
|
5019
5025
|
|
|
5020
5026
|
if (s1 !== peg$FAILED) {
|
|
5021
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
5022
|
-
s2 = peg$
|
|
5027
|
+
if (input.substr(peg$currPos, 2) === peg$c105) {
|
|
5028
|
+
s2 = peg$c105;
|
|
5023
5029
|
peg$currPos += 2;
|
|
5024
5030
|
} else {
|
|
5025
5031
|
s2 = peg$FAILED;
|
|
5026
5032
|
|
|
5027
5033
|
if (peg$silentFails === 0) {
|
|
5028
|
-
peg$fail(peg$
|
|
5034
|
+
peg$fail(peg$c106);
|
|
5029
5035
|
}
|
|
5030
5036
|
}
|
|
5031
5037
|
|
|
@@ -5047,7 +5053,7 @@ function peg$parse(input, options) {
|
|
|
5047
5053
|
|
|
5048
5054
|
if (s4 !== peg$FAILED) {
|
|
5049
5055
|
peg$savedPos = s0;
|
|
5050
|
-
s1 = peg$
|
|
5056
|
+
s1 = peg$c107(s4);
|
|
5051
5057
|
s0 = s1;
|
|
5052
5058
|
} else {
|
|
5053
5059
|
peg$currPos = s0;
|
|
@@ -5103,7 +5109,7 @@ function peg$parse(input, options) {
|
|
|
5103
5109
|
|
|
5104
5110
|
if (s7 !== peg$FAILED) {
|
|
5105
5111
|
peg$savedPos = s0;
|
|
5106
|
-
s1 = peg$
|
|
5112
|
+
s1 = peg$c108(s5, s6);
|
|
5107
5113
|
s0 = s1;
|
|
5108
5114
|
} else {
|
|
5109
5115
|
peg$currPos = s0;
|
|
@@ -5244,14 +5250,14 @@ function peg$parse(input, options) {
|
|
|
5244
5250
|
var s0, s1;
|
|
5245
5251
|
peg$silentFails++;
|
|
5246
5252
|
|
|
5247
|
-
if (input.substr(peg$currPos, 7).toLowerCase() === peg$
|
|
5253
|
+
if (input.substr(peg$currPos, 7).toLowerCase() === peg$c110) {
|
|
5248
5254
|
s0 = input.substr(peg$currPos, 7);
|
|
5249
5255
|
peg$currPos += 7;
|
|
5250
5256
|
} else {
|
|
5251
5257
|
s0 = peg$FAILED;
|
|
5252
5258
|
|
|
5253
5259
|
if (peg$silentFails === 0) {
|
|
5254
|
-
peg$fail(peg$
|
|
5260
|
+
peg$fail(peg$c111);
|
|
5255
5261
|
}
|
|
5256
5262
|
}
|
|
5257
5263
|
|
|
@@ -5261,7 +5267,7 @@ function peg$parse(input, options) {
|
|
|
5261
5267
|
s1 = peg$FAILED;
|
|
5262
5268
|
|
|
5263
5269
|
if (peg$silentFails === 0) {
|
|
5264
|
-
peg$fail(peg$
|
|
5270
|
+
peg$fail(peg$c109);
|
|
5265
5271
|
}
|
|
5266
5272
|
}
|
|
5267
5273
|
|
|
@@ -5272,14 +5278,14 @@ function peg$parse(input, options) {
|
|
|
5272
5278
|
var s0, s1;
|
|
5273
5279
|
peg$silentFails++;
|
|
5274
5280
|
|
|
5275
|
-
if (input.substr(peg$currPos, 5).toLowerCase() === peg$
|
|
5281
|
+
if (input.substr(peg$currPos, 5).toLowerCase() === peg$c113) {
|
|
5276
5282
|
s0 = input.substr(peg$currPos, 5);
|
|
5277
5283
|
peg$currPos += 5;
|
|
5278
5284
|
} else {
|
|
5279
5285
|
s0 = peg$FAILED;
|
|
5280
5286
|
|
|
5281
5287
|
if (peg$silentFails === 0) {
|
|
5282
|
-
peg$fail(peg$
|
|
5288
|
+
peg$fail(peg$c114);
|
|
5283
5289
|
}
|
|
5284
5290
|
}
|
|
5285
5291
|
|
|
@@ -5289,7 +5295,7 @@ function peg$parse(input, options) {
|
|
|
5289
5295
|
s1 = peg$FAILED;
|
|
5290
5296
|
|
|
5291
5297
|
if (peg$silentFails === 0) {
|
|
5292
|
-
peg$fail(peg$
|
|
5298
|
+
peg$fail(peg$c112);
|
|
5293
5299
|
}
|
|
5294
5300
|
}
|
|
5295
5301
|
|
|
@@ -5299,14 +5305,14 @@ function peg$parse(input, options) {
|
|
|
5299
5305
|
function peg$parseas() {
|
|
5300
5306
|
var s0;
|
|
5301
5307
|
|
|
5302
|
-
if (input.substr(peg$currPos, 2).toLowerCase() === peg$
|
|
5308
|
+
if (input.substr(peg$currPos, 2).toLowerCase() === peg$c105) {
|
|
5303
5309
|
s0 = input.substr(peg$currPos, 2);
|
|
5304
5310
|
peg$currPos += 2;
|
|
5305
5311
|
} else {
|
|
5306
5312
|
s0 = peg$FAILED;
|
|
5307
5313
|
|
|
5308
5314
|
if (peg$silentFails === 0) {
|
|
5309
|
-
peg$fail(peg$
|
|
5315
|
+
peg$fail(peg$c115);
|
|
5310
5316
|
}
|
|
5311
5317
|
}
|
|
5312
5318
|
|
|
@@ -5317,14 +5323,14 @@ function peg$parse(input, options) {
|
|
|
5317
5323
|
var s0, s1;
|
|
5318
5324
|
peg$silentFails++;
|
|
5319
5325
|
|
|
5320
|
-
if (input.substr(peg$currPos, 3).toLowerCase() === peg$
|
|
5326
|
+
if (input.substr(peg$currPos, 3).toLowerCase() === peg$c117) {
|
|
5321
5327
|
s0 = input.substr(peg$currPos, 3);
|
|
5322
5328
|
peg$currPos += 3;
|
|
5323
5329
|
} else {
|
|
5324
5330
|
s0 = peg$FAILED;
|
|
5325
5331
|
|
|
5326
5332
|
if (peg$silentFails === 0) {
|
|
5327
|
-
peg$fail(peg$
|
|
5333
|
+
peg$fail(peg$c118);
|
|
5328
5334
|
}
|
|
5329
5335
|
}
|
|
5330
5336
|
|
|
@@ -5334,7 +5340,7 @@ function peg$parse(input, options) {
|
|
|
5334
5340
|
s1 = peg$FAILED;
|
|
5335
5341
|
|
|
5336
5342
|
if (peg$silentFails === 0) {
|
|
5337
|
-
peg$fail(peg$
|
|
5343
|
+
peg$fail(peg$c116);
|
|
5338
5344
|
}
|
|
5339
5345
|
}
|
|
5340
5346
|
|
|
@@ -5359,7 +5365,7 @@ function peg$parse(input, options) {
|
|
|
5359
5365
|
|
|
5360
5366
|
if (s1 !== peg$FAILED) {
|
|
5361
5367
|
peg$savedPos = s0;
|
|
5362
|
-
s1 = peg$
|
|
5368
|
+
s1 = peg$c120();
|
|
5363
5369
|
}
|
|
5364
5370
|
|
|
5365
5371
|
s0 = s1;
|
|
@@ -5369,7 +5375,7 @@ function peg$parse(input, options) {
|
|
|
5369
5375
|
s1 = peg$FAILED;
|
|
5370
5376
|
|
|
5371
5377
|
if (peg$silentFails === 0) {
|
|
5372
|
-
peg$fail(peg$
|
|
5378
|
+
peg$fail(peg$c119);
|
|
5373
5379
|
}
|
|
5374
5380
|
}
|
|
5375
5381
|
|
|
@@ -5394,7 +5400,7 @@ function peg$parse(input, options) {
|
|
|
5394
5400
|
|
|
5395
5401
|
if (s1 !== peg$FAILED) {
|
|
5396
5402
|
peg$savedPos = s0;
|
|
5397
|
-
s1 = peg$
|
|
5403
|
+
s1 = peg$c122();
|
|
5398
5404
|
}
|
|
5399
5405
|
|
|
5400
5406
|
s0 = s1;
|
|
@@ -5404,7 +5410,7 @@ function peg$parse(input, options) {
|
|
|
5404
5410
|
s1 = peg$FAILED;
|
|
5405
5411
|
|
|
5406
5412
|
if (peg$silentFails === 0) {
|
|
5407
|
-
peg$fail(peg$
|
|
5413
|
+
peg$fail(peg$c121);
|
|
5408
5414
|
}
|
|
5409
5415
|
}
|
|
5410
5416
|
|
|
@@ -5415,14 +5421,14 @@ function peg$parse(input, options) {
|
|
|
5415
5421
|
var s0, s1;
|
|
5416
5422
|
peg$silentFails++;
|
|
5417
5423
|
|
|
5418
|
-
if (input.substr(peg$currPos, 7).toLowerCase() === peg$
|
|
5424
|
+
if (input.substr(peg$currPos, 7).toLowerCase() === peg$c124) {
|
|
5419
5425
|
s0 = input.substr(peg$currPos, 7);
|
|
5420
5426
|
peg$currPos += 7;
|
|
5421
5427
|
} else {
|
|
5422
5428
|
s0 = peg$FAILED;
|
|
5423
5429
|
|
|
5424
5430
|
if (peg$silentFails === 0) {
|
|
5425
|
-
peg$fail(peg$
|
|
5431
|
+
peg$fail(peg$c125);
|
|
5426
5432
|
}
|
|
5427
5433
|
}
|
|
5428
5434
|
|
|
@@ -5432,7 +5438,7 @@ function peg$parse(input, options) {
|
|
|
5432
5438
|
s1 = peg$FAILED;
|
|
5433
5439
|
|
|
5434
5440
|
if (peg$silentFails === 0) {
|
|
5435
|
-
peg$fail(peg$
|
|
5441
|
+
peg$fail(peg$c123);
|
|
5436
5442
|
}
|
|
5437
5443
|
}
|
|
5438
5444
|
|
|
@@ -5443,14 +5449,14 @@ function peg$parse(input, options) {
|
|
|
5443
5449
|
var s0, s1;
|
|
5444
5450
|
peg$silentFails++;
|
|
5445
5451
|
|
|
5446
|
-
if (input.substr(peg$currPos, 5).toLowerCase() === peg$
|
|
5452
|
+
if (input.substr(peg$currPos, 5).toLowerCase() === peg$c127) {
|
|
5447
5453
|
s0 = input.substr(peg$currPos, 5);
|
|
5448
5454
|
peg$currPos += 5;
|
|
5449
5455
|
} else {
|
|
5450
5456
|
s0 = peg$FAILED;
|
|
5451
5457
|
|
|
5452
5458
|
if (peg$silentFails === 0) {
|
|
5453
|
-
peg$fail(peg$
|
|
5459
|
+
peg$fail(peg$c128);
|
|
5454
5460
|
}
|
|
5455
5461
|
}
|
|
5456
5462
|
|
|
@@ -5460,7 +5466,7 @@ function peg$parse(input, options) {
|
|
|
5460
5466
|
s1 = peg$FAILED;
|
|
5461
5467
|
|
|
5462
5468
|
if (peg$silentFails === 0) {
|
|
5463
|
-
peg$fail(peg$
|
|
5469
|
+
peg$fail(peg$c126);
|
|
5464
5470
|
}
|
|
5465
5471
|
}
|
|
5466
5472
|
|
|
@@ -5471,14 +5477,14 @@ function peg$parse(input, options) {
|
|
|
5471
5477
|
var s0, s1;
|
|
5472
5478
|
peg$silentFails++;
|
|
5473
5479
|
|
|
5474
|
-
if (input.substr(peg$currPos, 4).toLowerCase() === peg$
|
|
5480
|
+
if (input.substr(peg$currPos, 4).toLowerCase() === peg$c130) {
|
|
5475
5481
|
s0 = input.substr(peg$currPos, 4);
|
|
5476
5482
|
peg$currPos += 4;
|
|
5477
5483
|
} else {
|
|
5478
5484
|
s0 = peg$FAILED;
|
|
5479
5485
|
|
|
5480
5486
|
if (peg$silentFails === 0) {
|
|
5481
|
-
peg$fail(peg$
|
|
5487
|
+
peg$fail(peg$c131);
|
|
5482
5488
|
}
|
|
5483
5489
|
}
|
|
5484
5490
|
|
|
@@ -5488,7 +5494,7 @@ function peg$parse(input, options) {
|
|
|
5488
5494
|
s1 = peg$FAILED;
|
|
5489
5495
|
|
|
5490
5496
|
if (peg$silentFails === 0) {
|
|
5491
|
-
peg$fail(peg$
|
|
5497
|
+
peg$fail(peg$c129);
|
|
5492
5498
|
}
|
|
5493
5499
|
}
|
|
5494
5500
|
|
|
@@ -5499,14 +5505,14 @@ function peg$parse(input, options) {
|
|
|
5499
5505
|
var s0, s1;
|
|
5500
5506
|
peg$silentFails++;
|
|
5501
5507
|
|
|
5502
|
-
if (input.substr(peg$currPos, 4).toLowerCase() === peg$
|
|
5508
|
+
if (input.substr(peg$currPos, 4).toLowerCase() === peg$c133) {
|
|
5503
5509
|
s0 = input.substr(peg$currPos, 4);
|
|
5504
5510
|
peg$currPos += 4;
|
|
5505
5511
|
} else {
|
|
5506
5512
|
s0 = peg$FAILED;
|
|
5507
5513
|
|
|
5508
5514
|
if (peg$silentFails === 0) {
|
|
5509
|
-
peg$fail(peg$
|
|
5515
|
+
peg$fail(peg$c134);
|
|
5510
5516
|
}
|
|
5511
5517
|
}
|
|
5512
5518
|
|
|
@@ -5516,7 +5522,7 @@ function peg$parse(input, options) {
|
|
|
5516
5522
|
s1 = peg$FAILED;
|
|
5517
5523
|
|
|
5518
5524
|
if (peg$silentFails === 0) {
|
|
5519
|
-
peg$fail(peg$
|
|
5525
|
+
peg$fail(peg$c132);
|
|
5520
5526
|
}
|
|
5521
5527
|
}
|
|
5522
5528
|
|
|
@@ -5526,14 +5532,14 @@ function peg$parse(input, options) {
|
|
|
5526
5532
|
function peg$parseheader_color() {
|
|
5527
5533
|
var s0;
|
|
5528
5534
|
|
|
5529
|
-
if (input.substr(peg$currPos, 11).toLowerCase() === peg$
|
|
5535
|
+
if (input.substr(peg$currPos, 11).toLowerCase() === peg$c135) {
|
|
5530
5536
|
s0 = input.substr(peg$currPos, 11);
|
|
5531
5537
|
peg$currPos += 11;
|
|
5532
5538
|
} else {
|
|
5533
5539
|
s0 = peg$FAILED;
|
|
5534
5540
|
|
|
5535
5541
|
if (peg$silentFails === 0) {
|
|
5536
|
-
peg$fail(peg$
|
|
5542
|
+
peg$fail(peg$c136);
|
|
5537
5543
|
}
|
|
5538
5544
|
}
|
|
5539
5545
|
|
|
@@ -5544,14 +5550,14 @@ function peg$parse(input, options) {
|
|
|
5544
5550
|
var s0, s1;
|
|
5545
5551
|
peg$silentFails++;
|
|
5546
5552
|
|
|
5547
|
-
if (input.substr(peg$currPos, 10).toLowerCase() === peg$
|
|
5553
|
+
if (input.substr(peg$currPos, 10).toLowerCase() === peg$c138) {
|
|
5548
5554
|
s0 = input.substr(peg$currPos, 10);
|
|
5549
5555
|
peg$currPos += 10;
|
|
5550
5556
|
} else {
|
|
5551
5557
|
s0 = peg$FAILED;
|
|
5552
5558
|
|
|
5553
5559
|
if (peg$silentFails === 0) {
|
|
5554
|
-
peg$fail(peg$
|
|
5560
|
+
peg$fail(peg$c139);
|
|
5555
5561
|
}
|
|
5556
5562
|
}
|
|
5557
5563
|
|
|
@@ -5561,7 +5567,7 @@ function peg$parse(input, options) {
|
|
|
5561
5567
|
s1 = peg$FAILED;
|
|
5562
5568
|
|
|
5563
5569
|
if (peg$silentFails === 0) {
|
|
5564
|
-
peg$fail(peg$
|
|
5570
|
+
peg$fail(peg$c137);
|
|
5565
5571
|
}
|
|
5566
5572
|
}
|
|
5567
5573
|
|
|
@@ -5572,14 +5578,14 @@ function peg$parse(input, options) {
|
|
|
5572
5578
|
var s0, s1;
|
|
5573
5579
|
peg$silentFails++;
|
|
5574
5580
|
|
|
5575
|
-
if (input.substr(peg$currPos, 9).toLowerCase() === peg$
|
|
5581
|
+
if (input.substr(peg$currPos, 9).toLowerCase() === peg$c141) {
|
|
5576
5582
|
s0 = input.substr(peg$currPos, 9);
|
|
5577
5583
|
peg$currPos += 9;
|
|
5578
5584
|
} else {
|
|
5579
5585
|
s0 = peg$FAILED;
|
|
5580
5586
|
|
|
5581
5587
|
if (peg$silentFails === 0) {
|
|
5582
|
-
peg$fail(peg$
|
|
5588
|
+
peg$fail(peg$c142);
|
|
5583
5589
|
}
|
|
5584
5590
|
}
|
|
5585
5591
|
|
|
@@ -5589,7 +5595,7 @@ function peg$parse(input, options) {
|
|
|
5589
5595
|
s1 = peg$FAILED;
|
|
5590
5596
|
|
|
5591
5597
|
if (peg$silentFails === 0) {
|
|
5592
|
-
peg$fail(peg$
|
|
5598
|
+
peg$fail(peg$c140);
|
|
5593
5599
|
}
|
|
5594
5600
|
}
|
|
5595
5601
|
|
|
@@ -5600,14 +5606,14 @@ function peg$parse(input, options) {
|
|
|
5600
5606
|
var s0, s1;
|
|
5601
5607
|
peg$silentFails++;
|
|
5602
5608
|
|
|
5603
|
-
if (input.substr(peg$currPos, 8).toLowerCase() === peg$
|
|
5609
|
+
if (input.substr(peg$currPos, 8).toLowerCase() === peg$c144) {
|
|
5604
5610
|
s0 = input.substr(peg$currPos, 8);
|
|
5605
5611
|
peg$currPos += 8;
|
|
5606
5612
|
} else {
|
|
5607
5613
|
s0 = peg$FAILED;
|
|
5608
5614
|
|
|
5609
5615
|
if (peg$silentFails === 0) {
|
|
5610
|
-
peg$fail(peg$
|
|
5616
|
+
peg$fail(peg$c145);
|
|
5611
5617
|
}
|
|
5612
5618
|
}
|
|
5613
5619
|
|
|
@@ -5617,7 +5623,7 @@ function peg$parse(input, options) {
|
|
|
5617
5623
|
s1 = peg$FAILED;
|
|
5618
5624
|
|
|
5619
5625
|
if (peg$silentFails === 0) {
|
|
5620
|
-
peg$fail(peg$
|
|
5626
|
+
peg$fail(peg$c143);
|
|
5621
5627
|
}
|
|
5622
5628
|
}
|
|
5623
5629
|
|
|
@@ -5628,14 +5634,14 @@ function peg$parse(input, options) {
|
|
|
5628
5634
|
var s0, s1;
|
|
5629
5635
|
peg$silentFails++;
|
|
5630
5636
|
|
|
5631
|
-
if (input.substr(peg$currPos, 7).toLowerCase() === peg$
|
|
5637
|
+
if (input.substr(peg$currPos, 7).toLowerCase() === peg$c147) {
|
|
5632
5638
|
s0 = input.substr(peg$currPos, 7);
|
|
5633
5639
|
peg$currPos += 7;
|
|
5634
5640
|
} else {
|
|
5635
5641
|
s0 = peg$FAILED;
|
|
5636
5642
|
|
|
5637
5643
|
if (peg$silentFails === 0) {
|
|
5638
|
-
peg$fail(peg$
|
|
5644
|
+
peg$fail(peg$c148);
|
|
5639
5645
|
}
|
|
5640
5646
|
}
|
|
5641
5647
|
|
|
@@ -5645,7 +5651,7 @@ function peg$parse(input, options) {
|
|
|
5645
5651
|
s1 = peg$FAILED;
|
|
5646
5652
|
|
|
5647
5653
|
if (peg$silentFails === 0) {
|
|
5648
|
-
peg$fail(peg$
|
|
5654
|
+
peg$fail(peg$c146);
|
|
5649
5655
|
}
|
|
5650
5656
|
}
|
|
5651
5657
|
|
|
@@ -5656,14 +5662,14 @@ function peg$parse(input, options) {
|
|
|
5656
5662
|
var s0, s1;
|
|
5657
5663
|
peg$silentFails++;
|
|
5658
5664
|
|
|
5659
|
-
if (input.substr(peg$currPos, 8).toLowerCase() === peg$
|
|
5665
|
+
if (input.substr(peg$currPos, 8).toLowerCase() === peg$c150) {
|
|
5660
5666
|
s0 = input.substr(peg$currPos, 8);
|
|
5661
5667
|
peg$currPos += 8;
|
|
5662
5668
|
} else {
|
|
5663
5669
|
s0 = peg$FAILED;
|
|
5664
5670
|
|
|
5665
5671
|
if (peg$silentFails === 0) {
|
|
5666
|
-
peg$fail(peg$
|
|
5672
|
+
peg$fail(peg$c151);
|
|
5667
5673
|
}
|
|
5668
5674
|
}
|
|
5669
5675
|
|
|
@@ -5673,7 +5679,7 @@ function peg$parse(input, options) {
|
|
|
5673
5679
|
s1 = peg$FAILED;
|
|
5674
5680
|
|
|
5675
5681
|
if (peg$silentFails === 0) {
|
|
5676
|
-
peg$fail(peg$
|
|
5682
|
+
peg$fail(peg$c149);
|
|
5677
5683
|
}
|
|
5678
5684
|
}
|
|
5679
5685
|
|
|
@@ -5684,14 +5690,14 @@ function peg$parse(input, options) {
|
|
|
5684
5690
|
var s0, s1;
|
|
5685
5691
|
peg$silentFails++;
|
|
5686
5692
|
|
|
5687
|
-
if (input.substr(peg$currPos, 11).toLowerCase() === peg$
|
|
5693
|
+
if (input.substr(peg$currPos, 11).toLowerCase() === peg$c153) {
|
|
5688
5694
|
s0 = input.substr(peg$currPos, 11);
|
|
5689
5695
|
peg$currPos += 11;
|
|
5690
5696
|
} else {
|
|
5691
5697
|
s0 = peg$FAILED;
|
|
5692
5698
|
|
|
5693
5699
|
if (peg$silentFails === 0) {
|
|
5694
|
-
peg$fail(peg$
|
|
5700
|
+
peg$fail(peg$c154);
|
|
5695
5701
|
}
|
|
5696
5702
|
}
|
|
5697
5703
|
|
|
@@ -5701,7 +5707,7 @@ function peg$parse(input, options) {
|
|
|
5701
5707
|
s1 = peg$FAILED;
|
|
5702
5708
|
|
|
5703
5709
|
if (peg$silentFails === 0) {
|
|
5704
|
-
peg$fail(peg$
|
|
5710
|
+
peg$fail(peg$c152);
|
|
5705
5711
|
}
|
|
5706
5712
|
}
|
|
5707
5713
|
|
|
@@ -5712,50 +5718,50 @@ function peg$parse(input, options) {
|
|
|
5712
5718
|
var s0, s1;
|
|
5713
5719
|
peg$silentFails++;
|
|
5714
5720
|
|
|
5715
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
5716
|
-
s0 = peg$
|
|
5721
|
+
if (input.substr(peg$currPos, 2) === peg$c156) {
|
|
5722
|
+
s0 = peg$c156;
|
|
5717
5723
|
peg$currPos += 2;
|
|
5718
5724
|
} else {
|
|
5719
5725
|
s0 = peg$FAILED;
|
|
5720
5726
|
|
|
5721
5727
|
if (peg$silentFails === 0) {
|
|
5722
|
-
peg$fail(peg$
|
|
5728
|
+
peg$fail(peg$c157);
|
|
5723
5729
|
}
|
|
5724
5730
|
}
|
|
5725
5731
|
|
|
5726
5732
|
if (s0 === peg$FAILED) {
|
|
5727
5733
|
if (input.charCodeAt(peg$currPos) === 62) {
|
|
5728
|
-
s0 = peg$
|
|
5734
|
+
s0 = peg$c158;
|
|
5729
5735
|
peg$currPos++;
|
|
5730
5736
|
} else {
|
|
5731
5737
|
s0 = peg$FAILED;
|
|
5732
5738
|
|
|
5733
5739
|
if (peg$silentFails === 0) {
|
|
5734
|
-
peg$fail(peg$
|
|
5740
|
+
peg$fail(peg$c159);
|
|
5735
5741
|
}
|
|
5736
5742
|
}
|
|
5737
5743
|
|
|
5738
5744
|
if (s0 === peg$FAILED) {
|
|
5739
5745
|
if (input.charCodeAt(peg$currPos) === 60) {
|
|
5740
|
-
s0 = peg$
|
|
5746
|
+
s0 = peg$c160;
|
|
5741
5747
|
peg$currPos++;
|
|
5742
5748
|
} else {
|
|
5743
5749
|
s0 = peg$FAILED;
|
|
5744
5750
|
|
|
5745
5751
|
if (peg$silentFails === 0) {
|
|
5746
|
-
peg$fail(peg$
|
|
5752
|
+
peg$fail(peg$c161);
|
|
5747
5753
|
}
|
|
5748
5754
|
}
|
|
5749
5755
|
|
|
5750
5756
|
if (s0 === peg$FAILED) {
|
|
5751
5757
|
if (input.charCodeAt(peg$currPos) === 45) {
|
|
5752
|
-
s0 = peg$
|
|
5758
|
+
s0 = peg$c162;
|
|
5753
5759
|
peg$currPos++;
|
|
5754
5760
|
} else {
|
|
5755
5761
|
s0 = peg$FAILED;
|
|
5756
5762
|
|
|
5757
5763
|
if (peg$silentFails === 0) {
|
|
5758
|
-
peg$fail(peg$
|
|
5764
|
+
peg$fail(peg$c163);
|
|
5759
5765
|
}
|
|
5760
5766
|
}
|
|
5761
5767
|
}
|
|
@@ -5768,7 +5774,7 @@ function peg$parse(input, options) {
|
|
|
5768
5774
|
s1 = peg$FAILED;
|
|
5769
5775
|
|
|
5770
5776
|
if (peg$silentFails === 0) {
|
|
5771
|
-
peg$fail(peg$
|
|
5777
|
+
peg$fail(peg$c155);
|
|
5772
5778
|
}
|
|
5773
5779
|
}
|
|
5774
5780
|
|
|
@@ -5793,7 +5799,7 @@ function peg$parse(input, options) {
|
|
|
5793
5799
|
|
|
5794
5800
|
if (s1 !== peg$FAILED) {
|
|
5795
5801
|
peg$savedPos = s0;
|
|
5796
|
-
s1 = peg$
|
|
5802
|
+
s1 = peg$c165(s1);
|
|
5797
5803
|
}
|
|
5798
5804
|
|
|
5799
5805
|
s0 = s1;
|
|
@@ -5805,14 +5811,14 @@ function peg$parse(input, options) {
|
|
|
5805
5811
|
if (s1 !== peg$FAILED) {
|
|
5806
5812
|
s2 = [];
|
|
5807
5813
|
|
|
5808
|
-
if (peg$
|
|
5814
|
+
if (peg$c166.test(input.charAt(peg$currPos))) {
|
|
5809
5815
|
s3 = input.charAt(peg$currPos);
|
|
5810
5816
|
peg$currPos++;
|
|
5811
5817
|
} else {
|
|
5812
5818
|
s3 = peg$FAILED;
|
|
5813
5819
|
|
|
5814
5820
|
if (peg$silentFails === 0) {
|
|
5815
|
-
peg$fail(peg$
|
|
5821
|
+
peg$fail(peg$c167);
|
|
5816
5822
|
}
|
|
5817
5823
|
}
|
|
5818
5824
|
|
|
@@ -5820,14 +5826,14 @@ function peg$parse(input, options) {
|
|
|
5820
5826
|
while (s3 !== peg$FAILED) {
|
|
5821
5827
|
s2.push(s3);
|
|
5822
5828
|
|
|
5823
|
-
if (peg$
|
|
5829
|
+
if (peg$c166.test(input.charAt(peg$currPos))) {
|
|
5824
5830
|
s3 = input.charAt(peg$currPos);
|
|
5825
5831
|
peg$currPos++;
|
|
5826
5832
|
} else {
|
|
5827
5833
|
s3 = peg$FAILED;
|
|
5828
5834
|
|
|
5829
5835
|
if (peg$silentFails === 0) {
|
|
5830
|
-
peg$fail(peg$
|
|
5836
|
+
peg$fail(peg$c167);
|
|
5831
5837
|
}
|
|
5832
5838
|
}
|
|
5833
5839
|
}
|
|
@@ -5840,7 +5846,7 @@ function peg$parse(input, options) {
|
|
|
5840
5846
|
|
|
5841
5847
|
if (s3 !== peg$FAILED) {
|
|
5842
5848
|
peg$savedPos = s0;
|
|
5843
|
-
s1 = peg$
|
|
5849
|
+
s1 = peg$c165(s2);
|
|
5844
5850
|
s0 = s1;
|
|
5845
5851
|
} else {
|
|
5846
5852
|
peg$currPos = s0;
|
|
@@ -5862,7 +5868,7 @@ function peg$parse(input, options) {
|
|
|
5862
5868
|
s1 = peg$FAILED;
|
|
5863
5869
|
|
|
5864
5870
|
if (peg$silentFails === 0) {
|
|
5865
|
-
peg$fail(peg$
|
|
5871
|
+
peg$fail(peg$c164);
|
|
5866
5872
|
}
|
|
5867
5873
|
}
|
|
5868
5874
|
|
|
@@ -5877,19 +5883,19 @@ function peg$parse(input, options) {
|
|
|
5877
5883
|
|
|
5878
5884
|
if (s1 !== peg$FAILED) {
|
|
5879
5885
|
if (input.charCodeAt(peg$currPos) === 46) {
|
|
5880
|
-
s2 = peg$
|
|
5886
|
+
s2 = peg$c169;
|
|
5881
5887
|
peg$currPos++;
|
|
5882
5888
|
} else {
|
|
5883
5889
|
s2 = peg$FAILED;
|
|
5884
5890
|
|
|
5885
5891
|
if (peg$silentFails === 0) {
|
|
5886
|
-
peg$fail(peg$
|
|
5892
|
+
peg$fail(peg$c170);
|
|
5887
5893
|
}
|
|
5888
5894
|
}
|
|
5889
5895
|
|
|
5890
5896
|
if (s2 !== peg$FAILED) {
|
|
5891
5897
|
peg$savedPos = s0;
|
|
5892
|
-
s1 = peg$
|
|
5898
|
+
s1 = peg$c171(s1);
|
|
5893
5899
|
s0 = s1;
|
|
5894
5900
|
} else {
|
|
5895
5901
|
peg$currPos = s0;
|
|
@@ -5906,7 +5912,7 @@ function peg$parse(input, options) {
|
|
|
5906
5912
|
s1 = peg$FAILED;
|
|
5907
5913
|
|
|
5908
5914
|
if (peg$silentFails === 0) {
|
|
5909
|
-
peg$fail(peg$
|
|
5915
|
+
peg$fail(peg$c168);
|
|
5910
5916
|
}
|
|
5911
5917
|
}
|
|
5912
5918
|
|
|
@@ -5920,13 +5926,13 @@ function peg$parse(input, options) {
|
|
|
5920
5926
|
|
|
5921
5927
|
if (s1 !== peg$FAILED) {
|
|
5922
5928
|
if (input.charCodeAt(peg$currPos) === 46) {
|
|
5923
|
-
s2 = peg$
|
|
5929
|
+
s2 = peg$c169;
|
|
5924
5930
|
peg$currPos++;
|
|
5925
5931
|
} else {
|
|
5926
5932
|
s2 = peg$FAILED;
|
|
5927
5933
|
|
|
5928
5934
|
if (peg$silentFails === 0) {
|
|
5929
|
-
peg$fail(peg$
|
|
5935
|
+
peg$fail(peg$c170);
|
|
5930
5936
|
}
|
|
5931
5937
|
}
|
|
5932
5938
|
|
|
@@ -5935,13 +5941,13 @@ function peg$parse(input, options) {
|
|
|
5935
5941
|
|
|
5936
5942
|
if (s3 !== peg$FAILED) {
|
|
5937
5943
|
if (input.charCodeAt(peg$currPos) === 46) {
|
|
5938
|
-
s4 = peg$
|
|
5944
|
+
s4 = peg$c169;
|
|
5939
5945
|
peg$currPos++;
|
|
5940
5946
|
} else {
|
|
5941
5947
|
s4 = peg$FAILED;
|
|
5942
5948
|
|
|
5943
5949
|
if (peg$silentFails === 0) {
|
|
5944
|
-
peg$fail(peg$
|
|
5950
|
+
peg$fail(peg$c170);
|
|
5945
5951
|
}
|
|
5946
5952
|
}
|
|
5947
5953
|
|
|
@@ -5950,7 +5956,7 @@ function peg$parse(input, options) {
|
|
|
5950
5956
|
|
|
5951
5957
|
if (s5 !== peg$FAILED) {
|
|
5952
5958
|
peg$savedPos = s0;
|
|
5953
|
-
s1 = peg$
|
|
5959
|
+
s1 = peg$c172(s1, s3, s5);
|
|
5954
5960
|
s0 = s1;
|
|
5955
5961
|
} else {
|
|
5956
5962
|
peg$currPos = s0;
|
|
@@ -5979,13 +5985,13 @@ function peg$parse(input, options) {
|
|
|
5979
5985
|
|
|
5980
5986
|
if (s1 !== peg$FAILED) {
|
|
5981
5987
|
if (input.charCodeAt(peg$currPos) === 46) {
|
|
5982
|
-
s2 = peg$
|
|
5988
|
+
s2 = peg$c169;
|
|
5983
5989
|
peg$currPos++;
|
|
5984
5990
|
} else {
|
|
5985
5991
|
s2 = peg$FAILED;
|
|
5986
5992
|
|
|
5987
5993
|
if (peg$silentFails === 0) {
|
|
5988
|
-
peg$fail(peg$
|
|
5994
|
+
peg$fail(peg$c170);
|
|
5989
5995
|
}
|
|
5990
5996
|
}
|
|
5991
5997
|
|
|
@@ -5994,7 +6000,7 @@ function peg$parse(input, options) {
|
|
|
5994
6000
|
|
|
5995
6001
|
if (s3 !== peg$FAILED) {
|
|
5996
6002
|
peg$savedPos = s0;
|
|
5997
|
-
s1 = peg$
|
|
6003
|
+
s1 = peg$c173(s1, s3);
|
|
5998
6004
|
s0 = s1;
|
|
5999
6005
|
} else {
|
|
6000
6006
|
peg$currPos = s0;
|
|
@@ -6020,13 +6026,13 @@ function peg$parse(input, options) {
|
|
|
6020
6026
|
|
|
6021
6027
|
if (s1 !== peg$FAILED) {
|
|
6022
6028
|
if (input.charCodeAt(peg$currPos) === 46) {
|
|
6023
|
-
s2 = peg$
|
|
6029
|
+
s2 = peg$c169;
|
|
6024
6030
|
peg$currPos++;
|
|
6025
6031
|
} else {
|
|
6026
6032
|
s2 = peg$FAILED;
|
|
6027
6033
|
|
|
6028
6034
|
if (peg$silentFails === 0) {
|
|
6029
|
-
peg$fail(peg$
|
|
6035
|
+
peg$fail(peg$c170);
|
|
6030
6036
|
}
|
|
6031
6037
|
}
|
|
6032
6038
|
|
|
@@ -6035,13 +6041,13 @@ function peg$parse(input, options) {
|
|
|
6035
6041
|
|
|
6036
6042
|
if (s3 !== peg$FAILED) {
|
|
6037
6043
|
if (input.charCodeAt(peg$currPos) === 46) {
|
|
6038
|
-
s4 = peg$
|
|
6044
|
+
s4 = peg$c169;
|
|
6039
6045
|
peg$currPos++;
|
|
6040
6046
|
} else {
|
|
6041
6047
|
s4 = peg$FAILED;
|
|
6042
6048
|
|
|
6043
6049
|
if (peg$silentFails === 0) {
|
|
6044
|
-
peg$fail(peg$
|
|
6050
|
+
peg$fail(peg$c170);
|
|
6045
6051
|
}
|
|
6046
6052
|
}
|
|
6047
6053
|
|
|
@@ -6050,7 +6056,7 @@ function peg$parse(input, options) {
|
|
|
6050
6056
|
|
|
6051
6057
|
if (s5 !== peg$FAILED) {
|
|
6052
6058
|
peg$savedPos = s0;
|
|
6053
|
-
s1 = peg$
|
|
6059
|
+
s1 = peg$c174(s1, s3, s5);
|
|
6054
6060
|
s0 = s1;
|
|
6055
6061
|
} else {
|
|
6056
6062
|
peg$currPos = s0;
|
|
@@ -6079,13 +6085,13 @@ function peg$parse(input, options) {
|
|
|
6079
6085
|
|
|
6080
6086
|
if (s1 !== peg$FAILED) {
|
|
6081
6087
|
if (input.charCodeAt(peg$currPos) === 46) {
|
|
6082
|
-
s2 = peg$
|
|
6088
|
+
s2 = peg$c169;
|
|
6083
6089
|
peg$currPos++;
|
|
6084
6090
|
} else {
|
|
6085
6091
|
s2 = peg$FAILED;
|
|
6086
6092
|
|
|
6087
6093
|
if (peg$silentFails === 0) {
|
|
6088
|
-
peg$fail(peg$
|
|
6094
|
+
peg$fail(peg$c170);
|
|
6089
6095
|
}
|
|
6090
6096
|
}
|
|
6091
6097
|
|
|
@@ -6094,7 +6100,7 @@ function peg$parse(input, options) {
|
|
|
6094
6100
|
|
|
6095
6101
|
if (s3 !== peg$FAILED) {
|
|
6096
6102
|
peg$savedPos = s0;
|
|
6097
|
-
s1 = peg$
|
|
6103
|
+
s1 = peg$c175(s1, s3);
|
|
6098
6104
|
s0 = s1;
|
|
6099
6105
|
} else {
|
|
6100
6106
|
peg$currPos = s0;
|
|
@@ -6131,7 +6137,7 @@ function peg$parse(input, options) {
|
|
|
6131
6137
|
|
|
6132
6138
|
if (s1 !== peg$FAILED) {
|
|
6133
6139
|
peg$savedPos = s0;
|
|
6134
|
-
s1 = peg$
|
|
6140
|
+
s1 = peg$c165(s1);
|
|
6135
6141
|
}
|
|
6136
6142
|
|
|
6137
6143
|
s0 = s1;
|
|
@@ -6143,14 +6149,14 @@ function peg$parse(input, options) {
|
|
|
6143
6149
|
if (s1 !== peg$FAILED) {
|
|
6144
6150
|
s2 = [];
|
|
6145
6151
|
|
|
6146
|
-
if (peg$
|
|
6152
|
+
if (peg$c166.test(input.charAt(peg$currPos))) {
|
|
6147
6153
|
s3 = input.charAt(peg$currPos);
|
|
6148
6154
|
peg$currPos++;
|
|
6149
6155
|
} else {
|
|
6150
6156
|
s3 = peg$FAILED;
|
|
6151
6157
|
|
|
6152
6158
|
if (peg$silentFails === 0) {
|
|
6153
|
-
peg$fail(peg$
|
|
6159
|
+
peg$fail(peg$c167);
|
|
6154
6160
|
}
|
|
6155
6161
|
}
|
|
6156
6162
|
|
|
@@ -6158,14 +6164,14 @@ function peg$parse(input, options) {
|
|
|
6158
6164
|
while (s3 !== peg$FAILED) {
|
|
6159
6165
|
s2.push(s3);
|
|
6160
6166
|
|
|
6161
|
-
if (peg$
|
|
6167
|
+
if (peg$c166.test(input.charAt(peg$currPos))) {
|
|
6162
6168
|
s3 = input.charAt(peg$currPos);
|
|
6163
6169
|
peg$currPos++;
|
|
6164
6170
|
} else {
|
|
6165
6171
|
s3 = peg$FAILED;
|
|
6166
6172
|
|
|
6167
6173
|
if (peg$silentFails === 0) {
|
|
6168
|
-
peg$fail(peg$
|
|
6174
|
+
peg$fail(peg$c167);
|
|
6169
6175
|
}
|
|
6170
6176
|
}
|
|
6171
6177
|
}
|
|
@@ -6178,7 +6184,7 @@ function peg$parse(input, options) {
|
|
|
6178
6184
|
|
|
6179
6185
|
if (s3 !== peg$FAILED) {
|
|
6180
6186
|
peg$savedPos = s0;
|
|
6181
|
-
s1 = peg$
|
|
6187
|
+
s1 = peg$c165(s2);
|
|
6182
6188
|
s0 = s1;
|
|
6183
6189
|
} else {
|
|
6184
6190
|
peg$currPos = s0;
|
|
@@ -6200,7 +6206,7 @@ function peg$parse(input, options) {
|
|
|
6200
6206
|
s1 = peg$FAILED;
|
|
6201
6207
|
|
|
6202
6208
|
if (peg$silentFails === 0) {
|
|
6203
|
-
peg$fail(peg$
|
|
6209
|
+
peg$fail(peg$c164);
|
|
6204
6210
|
}
|
|
6205
6211
|
}
|
|
6206
6212
|
|
|
@@ -6302,7 +6308,7 @@ function peg$parse(input, options) {
|
|
|
6302
6308
|
|
|
6303
6309
|
if (s2 !== peg$FAILED) {
|
|
6304
6310
|
peg$savedPos = s0;
|
|
6305
|
-
s1 = peg$
|
|
6311
|
+
s1 = peg$c177(s1, s2);
|
|
6306
6312
|
s0 = s1;
|
|
6307
6313
|
} else {
|
|
6308
6314
|
peg$currPos = s0;
|
|
@@ -6319,7 +6325,7 @@ function peg$parse(input, options) {
|
|
|
6319
6325
|
s1 = peg$FAILED;
|
|
6320
6326
|
|
|
6321
6327
|
if (peg$silentFails === 0) {
|
|
6322
|
-
peg$fail(peg$
|
|
6328
|
+
peg$fail(peg$c176);
|
|
6323
6329
|
}
|
|
6324
6330
|
}
|
|
6325
6331
|
|
|
@@ -6340,7 +6346,7 @@ function peg$parse(input, options) {
|
|
|
6340
6346
|
|
|
6341
6347
|
if (s1 !== peg$FAILED) {
|
|
6342
6348
|
peg$savedPos = s0;
|
|
6343
|
-
s1 = peg$
|
|
6349
|
+
s1 = peg$c179(s1);
|
|
6344
6350
|
}
|
|
6345
6351
|
|
|
6346
6352
|
s0 = s1;
|
|
@@ -6350,7 +6356,7 @@ function peg$parse(input, options) {
|
|
|
6350
6356
|
s1 = peg$FAILED;
|
|
6351
6357
|
|
|
6352
6358
|
if (peg$silentFails === 0) {
|
|
6353
|
-
peg$fail(peg$
|
|
6359
|
+
peg$fail(peg$c178);
|
|
6354
6360
|
}
|
|
6355
6361
|
}
|
|
6356
6362
|
|
|
@@ -6505,25 +6511,25 @@ function peg$parse(input, options) {
|
|
|
6505
6511
|
|
|
6506
6512
|
if (s4 === peg$FAILED) {
|
|
6507
6513
|
if (input.charCodeAt(peg$currPos) === 44) {
|
|
6508
|
-
s4 = peg$
|
|
6514
|
+
s4 = peg$c180;
|
|
6509
6515
|
peg$currPos++;
|
|
6510
6516
|
} else {
|
|
6511
6517
|
s4 = peg$FAILED;
|
|
6512
6518
|
|
|
6513
6519
|
if (peg$silentFails === 0) {
|
|
6514
|
-
peg$fail(peg$
|
|
6520
|
+
peg$fail(peg$c181);
|
|
6515
6521
|
}
|
|
6516
6522
|
}
|
|
6517
6523
|
|
|
6518
6524
|
if (s4 === peg$FAILED) {
|
|
6519
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
6520
|
-
s4 = peg$
|
|
6525
|
+
if (input.substr(peg$currPos, 2) === peg$c182) {
|
|
6526
|
+
s4 = peg$c182;
|
|
6521
6527
|
peg$currPos += 2;
|
|
6522
6528
|
} else {
|
|
6523
6529
|
s4 = peg$FAILED;
|
|
6524
6530
|
|
|
6525
6531
|
if (peg$silentFails === 0) {
|
|
6526
|
-
peg$fail(peg$
|
|
6532
|
+
peg$fail(peg$c183);
|
|
6527
6533
|
}
|
|
6528
6534
|
}
|
|
6529
6535
|
|
|
@@ -6532,14 +6538,14 @@ function peg$parse(input, options) {
|
|
|
6532
6538
|
s5 = peg$parseendline();
|
|
6533
6539
|
|
|
6534
6540
|
if (s5 !== peg$FAILED) {
|
|
6535
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
6536
|
-
s6 = peg$
|
|
6541
|
+
if (input.substr(peg$currPos, 2) === peg$c182) {
|
|
6542
|
+
s6 = peg$c182;
|
|
6537
6543
|
peg$currPos += 2;
|
|
6538
6544
|
} else {
|
|
6539
6545
|
s6 = peg$FAILED;
|
|
6540
6546
|
|
|
6541
6547
|
if (peg$silentFails === 0) {
|
|
6542
|
-
peg$fail(peg$
|
|
6548
|
+
peg$fail(peg$c183);
|
|
6543
6549
|
}
|
|
6544
6550
|
}
|
|
6545
6551
|
|
|
@@ -6604,7 +6610,7 @@ function peg$parse(input, options) {
|
|
|
6604
6610
|
s4 = peg$FAILED;
|
|
6605
6611
|
|
|
6606
6612
|
if (peg$silentFails === 0) {
|
|
6607
|
-
peg$fail(peg$
|
|
6613
|
+
peg$fail(peg$c184);
|
|
6608
6614
|
}
|
|
6609
6615
|
}
|
|
6610
6616
|
|
|
@@ -6634,7 +6640,7 @@ function peg$parse(input, options) {
|
|
|
6634
6640
|
|
|
6635
6641
|
if (s1 !== peg$FAILED) {
|
|
6636
6642
|
peg$savedPos = s0;
|
|
6637
|
-
s1 = peg$
|
|
6643
|
+
s1 = peg$c185(s1);
|
|
6638
6644
|
}
|
|
6639
6645
|
|
|
6640
6646
|
s0 = s1;
|
|
@@ -6644,14 +6650,14 @@ function peg$parse(input, options) {
|
|
|
6644
6650
|
function peg$parseexprChar() {
|
|
6645
6651
|
var s0;
|
|
6646
6652
|
|
|
6647
|
-
if (peg$
|
|
6653
|
+
if (peg$c186.test(input.charAt(peg$currPos))) {
|
|
6648
6654
|
s0 = input.charAt(peg$currPos);
|
|
6649
6655
|
peg$currPos++;
|
|
6650
6656
|
} else {
|
|
6651
6657
|
s0 = peg$FAILED;
|
|
6652
6658
|
|
|
6653
6659
|
if (peg$silentFails === 0) {
|
|
6654
|
-
peg$fail(peg$
|
|
6660
|
+
peg$fail(peg$c187);
|
|
6655
6661
|
}
|
|
6656
6662
|
}
|
|
6657
6663
|
|
|
@@ -6673,14 +6679,14 @@ function peg$parse(input, options) {
|
|
|
6673
6679
|
function peg$parseexprCharNoCommaSpace() {
|
|
6674
6680
|
var s0;
|
|
6675
6681
|
|
|
6676
|
-
if (peg$
|
|
6682
|
+
if (peg$c188.test(input.charAt(peg$currPos))) {
|
|
6677
6683
|
s0 = input.charAt(peg$currPos);
|
|
6678
6684
|
peg$currPos++;
|
|
6679
6685
|
} else {
|
|
6680
6686
|
s0 = peg$FAILED;
|
|
6681
6687
|
|
|
6682
6688
|
if (peg$silentFails === 0) {
|
|
6683
|
-
peg$fail(peg$
|
|
6689
|
+
peg$fail(peg$c189);
|
|
6684
6690
|
}
|
|
6685
6691
|
}
|
|
6686
6692
|
|
|
@@ -6738,13 +6744,13 @@ function peg$parse(input, options) {
|
|
|
6738
6744
|
s2 = peg$FAILED;
|
|
6739
6745
|
|
|
6740
6746
|
if (peg$silentFails === 0) {
|
|
6741
|
-
peg$fail(peg$
|
|
6747
|
+
peg$fail(peg$c184);
|
|
6742
6748
|
}
|
|
6743
6749
|
}
|
|
6744
6750
|
|
|
6745
6751
|
if (s2 !== peg$FAILED) {
|
|
6746
6752
|
peg$savedPos = s0;
|
|
6747
|
-
s1 = peg$
|
|
6753
|
+
s1 = peg$c190();
|
|
6748
6754
|
s0 = s1;
|
|
6749
6755
|
} else {
|
|
6750
6756
|
peg$currPos = s0;
|
|
@@ -6763,14 +6769,14 @@ function peg$parse(input, options) {
|
|
|
6763
6769
|
s0 = peg$parsecharacter();
|
|
6764
6770
|
|
|
6765
6771
|
if (s0 === peg$FAILED) {
|
|
6766
|
-
if (peg$
|
|
6772
|
+
if (peg$c191.test(input.charAt(peg$currPos))) {
|
|
6767
6773
|
s0 = input.charAt(peg$currPos);
|
|
6768
6774
|
peg$currPos++;
|
|
6769
6775
|
} else {
|
|
6770
6776
|
s0 = peg$FAILED;
|
|
6771
6777
|
|
|
6772
6778
|
if (peg$silentFails === 0) {
|
|
6773
|
-
peg$fail(peg$
|
|
6779
|
+
peg$fail(peg$c192);
|
|
6774
6780
|
}
|
|
6775
6781
|
}
|
|
6776
6782
|
}
|
|
@@ -6782,14 +6788,14 @@ function peg$parse(input, options) {
|
|
|
6782
6788
|
var s0, s1;
|
|
6783
6789
|
peg$silentFails++;
|
|
6784
6790
|
|
|
6785
|
-
if (peg$
|
|
6791
|
+
if (peg$c194.test(input.charAt(peg$currPos))) {
|
|
6786
6792
|
s0 = input.charAt(peg$currPos);
|
|
6787
6793
|
peg$currPos++;
|
|
6788
6794
|
} else {
|
|
6789
6795
|
s0 = peg$FAILED;
|
|
6790
6796
|
|
|
6791
6797
|
if (peg$silentFails === 0) {
|
|
6792
|
-
peg$fail(peg$
|
|
6798
|
+
peg$fail(peg$c195);
|
|
6793
6799
|
}
|
|
6794
6800
|
}
|
|
6795
6801
|
|
|
@@ -6799,7 +6805,7 @@ function peg$parse(input, options) {
|
|
|
6799
6805
|
s1 = peg$FAILED;
|
|
6800
6806
|
|
|
6801
6807
|
if (peg$silentFails === 0) {
|
|
6802
|
-
peg$fail(peg$
|
|
6808
|
+
peg$fail(peg$c193);
|
|
6803
6809
|
}
|
|
6804
6810
|
}
|
|
6805
6811
|
|
|
@@ -6810,20 +6816,20 @@ function peg$parse(input, options) {
|
|
|
6810
6816
|
var s0, s1;
|
|
6811
6817
|
s0 = peg$currPos;
|
|
6812
6818
|
|
|
6813
|
-
if (peg$
|
|
6819
|
+
if (peg$c196.test(input.charAt(peg$currPos))) {
|
|
6814
6820
|
s1 = input.charAt(peg$currPos);
|
|
6815
6821
|
peg$currPos++;
|
|
6816
6822
|
} else {
|
|
6817
6823
|
s1 = peg$FAILED;
|
|
6818
6824
|
|
|
6819
6825
|
if (peg$silentFails === 0) {
|
|
6820
|
-
peg$fail(peg$
|
|
6826
|
+
peg$fail(peg$c197);
|
|
6821
6827
|
}
|
|
6822
6828
|
}
|
|
6823
6829
|
|
|
6824
6830
|
if (s1 !== peg$FAILED) {
|
|
6825
6831
|
peg$savedPos = s0;
|
|
6826
|
-
s1 = peg$
|
|
6832
|
+
s1 = peg$c198(s1);
|
|
6827
6833
|
}
|
|
6828
6834
|
|
|
6829
6835
|
s0 = s1;
|
|
@@ -6834,13 +6840,13 @@ function peg$parse(input, options) {
|
|
|
6834
6840
|
var s0;
|
|
6835
6841
|
|
|
6836
6842
|
if (input.charCodeAt(peg$currPos) === 34) {
|
|
6837
|
-
s0 = peg$
|
|
6843
|
+
s0 = peg$c199;
|
|
6838
6844
|
peg$currPos++;
|
|
6839
6845
|
} else {
|
|
6840
6846
|
s0 = peg$FAILED;
|
|
6841
6847
|
|
|
6842
6848
|
if (peg$silentFails === 0) {
|
|
6843
|
-
peg$fail(peg$
|
|
6849
|
+
peg$fail(peg$c200);
|
|
6844
6850
|
}
|
|
6845
6851
|
}
|
|
6846
6852
|
|
|
@@ -6926,7 +6932,7 @@ function peg$parse(input, options) {
|
|
|
6926
6932
|
s1 = peg$FAILED;
|
|
6927
6933
|
|
|
6928
6934
|
if (peg$silentFails === 0) {
|
|
6929
|
-
peg$fail(peg$
|
|
6935
|
+
peg$fail(peg$c201);
|
|
6930
6936
|
}
|
|
6931
6937
|
}
|
|
6932
6938
|
|
|
@@ -6937,13 +6943,13 @@ function peg$parse(input, options) {
|
|
|
6937
6943
|
var s0;
|
|
6938
6944
|
|
|
6939
6945
|
if (input.charCodeAt(peg$currPos) === 9) {
|
|
6940
|
-
s0 = peg$
|
|
6946
|
+
s0 = peg$c202;
|
|
6941
6947
|
peg$currPos++;
|
|
6942
6948
|
} else {
|
|
6943
6949
|
s0 = peg$FAILED;
|
|
6944
6950
|
|
|
6945
6951
|
if (peg$silentFails === 0) {
|
|
6946
|
-
peg$fail(peg$
|
|
6952
|
+
peg$fail(peg$c203);
|
|
6947
6953
|
}
|
|
6948
6954
|
}
|
|
6949
6955
|
|
|
@@ -6954,42 +6960,42 @@ function peg$parse(input, options) {
|
|
|
6954
6960
|
var s0, s1, s2, s3;
|
|
6955
6961
|
s0 = peg$currPos;
|
|
6956
6962
|
|
|
6957
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
6958
|
-
s1 = peg$
|
|
6963
|
+
if (input.substr(peg$currPos, 2) === peg$c204) {
|
|
6964
|
+
s1 = peg$c204;
|
|
6959
6965
|
peg$currPos += 2;
|
|
6960
6966
|
} else {
|
|
6961
6967
|
s1 = peg$FAILED;
|
|
6962
6968
|
|
|
6963
6969
|
if (peg$silentFails === 0) {
|
|
6964
|
-
peg$fail(peg$
|
|
6970
|
+
peg$fail(peg$c205);
|
|
6965
6971
|
}
|
|
6966
6972
|
}
|
|
6967
6973
|
|
|
6968
6974
|
if (s1 !== peg$FAILED) {
|
|
6969
6975
|
s2 = [];
|
|
6970
6976
|
|
|
6971
|
-
if (peg$
|
|
6977
|
+
if (peg$c206.test(input.charAt(peg$currPos))) {
|
|
6972
6978
|
s3 = input.charAt(peg$currPos);
|
|
6973
6979
|
peg$currPos++;
|
|
6974
6980
|
} else {
|
|
6975
6981
|
s3 = peg$FAILED;
|
|
6976
6982
|
|
|
6977
6983
|
if (peg$silentFails === 0) {
|
|
6978
|
-
peg$fail(peg$
|
|
6984
|
+
peg$fail(peg$c207);
|
|
6979
6985
|
}
|
|
6980
6986
|
}
|
|
6981
6987
|
|
|
6982
6988
|
while (s3 !== peg$FAILED) {
|
|
6983
6989
|
s2.push(s3);
|
|
6984
6990
|
|
|
6985
|
-
if (peg$
|
|
6991
|
+
if (peg$c206.test(input.charAt(peg$currPos))) {
|
|
6986
6992
|
s3 = input.charAt(peg$currPos);
|
|
6987
6993
|
peg$currPos++;
|
|
6988
6994
|
} else {
|
|
6989
6995
|
s3 = peg$FAILED;
|
|
6990
6996
|
|
|
6991
6997
|
if (peg$silentFails === 0) {
|
|
6992
|
-
peg$fail(peg$
|
|
6998
|
+
peg$fail(peg$c207);
|
|
6993
6999
|
}
|
|
6994
7000
|
}
|
|
6995
7001
|
}
|
|
@@ -7013,14 +7019,14 @@ function peg$parse(input, options) {
|
|
|
7013
7019
|
var s0, s1, s2, s3, s4, s5;
|
|
7014
7020
|
s0 = peg$currPos;
|
|
7015
7021
|
|
|
7016
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
7017
|
-
s1 = peg$
|
|
7022
|
+
if (input.substr(peg$currPos, 2) === peg$c208) {
|
|
7023
|
+
s1 = peg$c208;
|
|
7018
7024
|
peg$currPos += 2;
|
|
7019
7025
|
} else {
|
|
7020
7026
|
s1 = peg$FAILED;
|
|
7021
7027
|
|
|
7022
7028
|
if (peg$silentFails === 0) {
|
|
7023
|
-
peg$fail(peg$
|
|
7029
|
+
peg$fail(peg$c209);
|
|
7024
7030
|
}
|
|
7025
7031
|
}
|
|
7026
7032
|
|
|
@@ -7030,14 +7036,14 @@ function peg$parse(input, options) {
|
|
|
7030
7036
|
s4 = peg$currPos;
|
|
7031
7037
|
peg$silentFails++;
|
|
7032
7038
|
|
|
7033
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
7034
|
-
s5 = peg$
|
|
7039
|
+
if (input.substr(peg$currPos, 2) === peg$c210) {
|
|
7040
|
+
s5 = peg$c210;
|
|
7035
7041
|
peg$currPos += 2;
|
|
7036
7042
|
} else {
|
|
7037
7043
|
s5 = peg$FAILED;
|
|
7038
7044
|
|
|
7039
7045
|
if (peg$silentFails === 0) {
|
|
7040
|
-
peg$fail(peg$
|
|
7046
|
+
peg$fail(peg$c211);
|
|
7041
7047
|
}
|
|
7042
7048
|
}
|
|
7043
7049
|
|
|
@@ -7058,7 +7064,7 @@ function peg$parse(input, options) {
|
|
|
7058
7064
|
s5 = peg$FAILED;
|
|
7059
7065
|
|
|
7060
7066
|
if (peg$silentFails === 0) {
|
|
7061
|
-
peg$fail(peg$
|
|
7067
|
+
peg$fail(peg$c184);
|
|
7062
7068
|
}
|
|
7063
7069
|
}
|
|
7064
7070
|
|
|
@@ -7080,14 +7086,14 @@ function peg$parse(input, options) {
|
|
|
7080
7086
|
s4 = peg$currPos;
|
|
7081
7087
|
peg$silentFails++;
|
|
7082
7088
|
|
|
7083
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
7084
|
-
s5 = peg$
|
|
7089
|
+
if (input.substr(peg$currPos, 2) === peg$c210) {
|
|
7090
|
+
s5 = peg$c210;
|
|
7085
7091
|
peg$currPos += 2;
|
|
7086
7092
|
} else {
|
|
7087
7093
|
s5 = peg$FAILED;
|
|
7088
7094
|
|
|
7089
7095
|
if (peg$silentFails === 0) {
|
|
7090
|
-
peg$fail(peg$
|
|
7096
|
+
peg$fail(peg$c211);
|
|
7091
7097
|
}
|
|
7092
7098
|
}
|
|
7093
7099
|
|
|
@@ -7108,7 +7114,7 @@ function peg$parse(input, options) {
|
|
|
7108
7114
|
s5 = peg$FAILED;
|
|
7109
7115
|
|
|
7110
7116
|
if (peg$silentFails === 0) {
|
|
7111
|
-
peg$fail(peg$
|
|
7117
|
+
peg$fail(peg$c184);
|
|
7112
7118
|
}
|
|
7113
7119
|
}
|
|
7114
7120
|
|
|
@@ -7126,14 +7132,14 @@ function peg$parse(input, options) {
|
|
|
7126
7132
|
}
|
|
7127
7133
|
|
|
7128
7134
|
if (s2 !== peg$FAILED) {
|
|
7129
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
7130
|
-
s3 = peg$
|
|
7135
|
+
if (input.substr(peg$currPos, 2) === peg$c210) {
|
|
7136
|
+
s3 = peg$c210;
|
|
7131
7137
|
peg$currPos += 2;
|
|
7132
7138
|
} else {
|
|
7133
7139
|
s3 = peg$FAILED;
|
|
7134
7140
|
|
|
7135
7141
|
if (peg$silentFails === 0) {
|
|
7136
|
-
peg$fail(peg$
|
|
7142
|
+
peg$fail(peg$c211);
|
|
7137
7143
|
}
|
|
7138
7144
|
}
|
|
7139
7145
|
|
|
@@ -7171,7 +7177,7 @@ function peg$parse(input, options) {
|
|
|
7171
7177
|
s1 = peg$FAILED;
|
|
7172
7178
|
|
|
7173
7179
|
if (peg$silentFails === 0) {
|
|
7174
|
-
peg$fail(peg$
|
|
7180
|
+
peg$fail(peg$c212);
|
|
7175
7181
|
}
|
|
7176
7182
|
}
|
|
7177
7183
|
|
|
@@ -7182,26 +7188,26 @@ function peg$parse(input, options) {
|
|
|
7182
7188
|
var s0, s1;
|
|
7183
7189
|
peg$silentFails++;
|
|
7184
7190
|
|
|
7185
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
7186
|
-
s0 = peg$
|
|
7191
|
+
if (input.substr(peg$currPos, 2) === peg$c214) {
|
|
7192
|
+
s0 = peg$c214;
|
|
7187
7193
|
peg$currPos += 2;
|
|
7188
7194
|
} else {
|
|
7189
7195
|
s0 = peg$FAILED;
|
|
7190
7196
|
|
|
7191
7197
|
if (peg$silentFails === 0) {
|
|
7192
|
-
peg$fail(peg$
|
|
7198
|
+
peg$fail(peg$c215);
|
|
7193
7199
|
}
|
|
7194
7200
|
}
|
|
7195
7201
|
|
|
7196
7202
|
if (s0 === peg$FAILED) {
|
|
7197
7203
|
if (input.charCodeAt(peg$currPos) === 10) {
|
|
7198
|
-
s0 = peg$
|
|
7204
|
+
s0 = peg$c216;
|
|
7199
7205
|
peg$currPos++;
|
|
7200
7206
|
} else {
|
|
7201
7207
|
s0 = peg$FAILED;
|
|
7202
7208
|
|
|
7203
7209
|
if (peg$silentFails === 0) {
|
|
7204
|
-
peg$fail(peg$
|
|
7210
|
+
peg$fail(peg$c217);
|
|
7205
7211
|
}
|
|
7206
7212
|
}
|
|
7207
7213
|
}
|
|
@@ -7212,7 +7218,7 @@ function peg$parse(input, options) {
|
|
|
7212
7218
|
s1 = peg$FAILED;
|
|
7213
7219
|
|
|
7214
7220
|
if (peg$silentFails === 0) {
|
|
7215
|
-
peg$fail(peg$
|
|
7221
|
+
peg$fail(peg$c213);
|
|
7216
7222
|
}
|
|
7217
7223
|
}
|
|
7218
7224
|
|
|
@@ -7223,14 +7229,14 @@ function peg$parse(input, options) {
|
|
|
7223
7229
|
var s0, s1;
|
|
7224
7230
|
peg$silentFails++;
|
|
7225
7231
|
|
|
7226
|
-
if (peg$
|
|
7232
|
+
if (peg$c219.test(input.charAt(peg$currPos))) {
|
|
7227
7233
|
s0 = input.charAt(peg$currPos);
|
|
7228
7234
|
peg$currPos++;
|
|
7229
7235
|
} else {
|
|
7230
7236
|
s0 = peg$FAILED;
|
|
7231
7237
|
|
|
7232
7238
|
if (peg$silentFails === 0) {
|
|
7233
|
-
peg$fail(peg$
|
|
7239
|
+
peg$fail(peg$c220);
|
|
7234
7240
|
}
|
|
7235
7241
|
}
|
|
7236
7242
|
|
|
@@ -7240,7 +7246,7 @@ function peg$parse(input, options) {
|
|
|
7240
7246
|
s1 = peg$FAILED;
|
|
7241
7247
|
|
|
7242
7248
|
if (peg$silentFails === 0) {
|
|
7243
|
-
peg$fail(peg$
|
|
7249
|
+
peg$fail(peg$c218);
|
|
7244
7250
|
}
|
|
7245
7251
|
}
|
|
7246
7252
|
|
|
@@ -7251,14 +7257,14 @@ function peg$parse(input, options) {
|
|
|
7251
7257
|
var s0, s1;
|
|
7252
7258
|
peg$silentFails++;
|
|
7253
7259
|
|
|
7254
|
-
if (peg$
|
|
7260
|
+
if (peg$c221.test(input.charAt(peg$currPos))) {
|
|
7255
7261
|
s0 = input.charAt(peg$currPos);
|
|
7256
7262
|
peg$currPos++;
|
|
7257
7263
|
} else {
|
|
7258
7264
|
s0 = peg$FAILED;
|
|
7259
7265
|
|
|
7260
7266
|
if (peg$silentFails === 0) {
|
|
7261
|
-
peg$fail(peg$
|
|
7267
|
+
peg$fail(peg$c222);
|
|
7262
7268
|
}
|
|
7263
7269
|
}
|
|
7264
7270
|
|
|
@@ -7268,7 +7274,7 @@ function peg$parse(input, options) {
|
|
|
7268
7274
|
s1 = peg$FAILED;
|
|
7269
7275
|
|
|
7270
7276
|
if (peg$silentFails === 0) {
|
|
7271
|
-
peg$fail(peg$
|
|
7277
|
+
peg$fail(peg$c218);
|
|
7272
7278
|
}
|
|
7273
7279
|
}
|
|
7274
7280
|
|
|
@@ -7279,13 +7285,13 @@ function peg$parse(input, options) {
|
|
|
7279
7285
|
var s0;
|
|
7280
7286
|
|
|
7281
7287
|
if (input.charCodeAt(peg$currPos) === 32) {
|
|
7282
|
-
s0 = peg$
|
|
7288
|
+
s0 = peg$c223;
|
|
7283
7289
|
peg$currPos++;
|
|
7284
7290
|
} else {
|
|
7285
7291
|
s0 = peg$FAILED;
|
|
7286
7292
|
|
|
7287
7293
|
if (peg$silentFails === 0) {
|
|
7288
|
-
peg$fail(peg$
|
|
7294
|
+
peg$fail(peg$c224);
|
|
7289
7295
|
}
|
|
7290
7296
|
}
|
|
7291
7297
|
|
|
@@ -7296,13 +7302,13 @@ function peg$parse(input, options) {
|
|
|
7296
7302
|
var s0;
|
|
7297
7303
|
|
|
7298
7304
|
if (input.charCodeAt(peg$currPos) === 44) {
|
|
7299
|
-
s0 = peg$
|
|
7305
|
+
s0 = peg$c180;
|
|
7300
7306
|
peg$currPos++;
|
|
7301
7307
|
} else {
|
|
7302
7308
|
s0 = peg$FAILED;
|
|
7303
7309
|
|
|
7304
7310
|
if (peg$silentFails === 0) {
|
|
7305
|
-
peg$fail(peg$
|
|
7311
|
+
peg$fail(peg$c181);
|
|
7306
7312
|
}
|
|
7307
7313
|
}
|
|
7308
7314
|
|
|
@@ -7314,19 +7320,19 @@ function peg$parse(input, options) {
|
|
|
7314
7320
|
s0 = peg$currPos;
|
|
7315
7321
|
|
|
7316
7322
|
if (input.charCodeAt(peg$currPos) === 35) {
|
|
7317
|
-
s1 = peg$
|
|
7323
|
+
s1 = peg$c225;
|
|
7318
7324
|
peg$currPos++;
|
|
7319
7325
|
} else {
|
|
7320
7326
|
s1 = peg$FAILED;
|
|
7321
7327
|
|
|
7322
7328
|
if (peg$silentFails === 0) {
|
|
7323
|
-
peg$fail(peg$
|
|
7329
|
+
peg$fail(peg$c226);
|
|
7324
7330
|
}
|
|
7325
7331
|
}
|
|
7326
7332
|
|
|
7327
7333
|
if (s1 !== peg$FAILED) {
|
|
7328
7334
|
peg$savedPos = s0;
|
|
7329
|
-
s1 = peg$
|
|
7335
|
+
s1 = peg$c227();
|
|
7330
7336
|
}
|
|
7331
7337
|
|
|
7332
7338
|
s0 = s1;
|
|
@@ -7339,13 +7345,13 @@ function peg$parse(input, options) {
|
|
|
7339
7345
|
s0 = peg$currPos;
|
|
7340
7346
|
|
|
7341
7347
|
if (input.charCodeAt(peg$currPos) === 34) {
|
|
7342
|
-
s1 = peg$
|
|
7348
|
+
s1 = peg$c199;
|
|
7343
7349
|
peg$currPos++;
|
|
7344
7350
|
} else {
|
|
7345
7351
|
s1 = peg$FAILED;
|
|
7346
7352
|
|
|
7347
7353
|
if (peg$silentFails === 0) {
|
|
7348
|
-
peg$fail(peg$
|
|
7354
|
+
peg$fail(peg$c200);
|
|
7349
7355
|
}
|
|
7350
7356
|
}
|
|
7351
7357
|
|
|
@@ -7360,19 +7366,19 @@ function peg$parse(input, options) {
|
|
|
7360
7366
|
|
|
7361
7367
|
if (s2 !== peg$FAILED) {
|
|
7362
7368
|
if (input.charCodeAt(peg$currPos) === 34) {
|
|
7363
|
-
s3 = peg$
|
|
7369
|
+
s3 = peg$c199;
|
|
7364
7370
|
peg$currPos++;
|
|
7365
7371
|
} else {
|
|
7366
7372
|
s3 = peg$FAILED;
|
|
7367
7373
|
|
|
7368
7374
|
if (peg$silentFails === 0) {
|
|
7369
|
-
peg$fail(peg$
|
|
7375
|
+
peg$fail(peg$c200);
|
|
7370
7376
|
}
|
|
7371
7377
|
}
|
|
7372
7378
|
|
|
7373
7379
|
if (s3 !== peg$FAILED) {
|
|
7374
7380
|
peg$savedPos = s0;
|
|
7375
|
-
s1 = peg$
|
|
7381
|
+
s1 = peg$c229(s2);
|
|
7376
7382
|
s0 = s1;
|
|
7377
7383
|
} else {
|
|
7378
7384
|
peg$currPos = s0;
|
|
@@ -7390,14 +7396,14 @@ function peg$parse(input, options) {
|
|
|
7390
7396
|
if (s0 === peg$FAILED) {
|
|
7391
7397
|
s0 = peg$currPos;
|
|
7392
7398
|
|
|
7393
|
-
if (input.substr(peg$currPos, 3) === peg$
|
|
7394
|
-
s1 = peg$
|
|
7399
|
+
if (input.substr(peg$currPos, 3) === peg$c230) {
|
|
7400
|
+
s1 = peg$c230;
|
|
7395
7401
|
peg$currPos += 3;
|
|
7396
7402
|
} else {
|
|
7397
7403
|
s1 = peg$FAILED;
|
|
7398
7404
|
|
|
7399
7405
|
if (peg$silentFails === 0) {
|
|
7400
|
-
peg$fail(peg$
|
|
7406
|
+
peg$fail(peg$c231);
|
|
7401
7407
|
}
|
|
7402
7408
|
}
|
|
7403
7409
|
|
|
@@ -7411,20 +7417,20 @@ function peg$parse(input, options) {
|
|
|
7411
7417
|
}
|
|
7412
7418
|
|
|
7413
7419
|
if (s2 !== peg$FAILED) {
|
|
7414
|
-
if (input.substr(peg$currPos, 3) === peg$
|
|
7415
|
-
s3 = peg$
|
|
7420
|
+
if (input.substr(peg$currPos, 3) === peg$c230) {
|
|
7421
|
+
s3 = peg$c230;
|
|
7416
7422
|
peg$currPos += 3;
|
|
7417
7423
|
} else {
|
|
7418
7424
|
s3 = peg$FAILED;
|
|
7419
7425
|
|
|
7420
7426
|
if (peg$silentFails === 0) {
|
|
7421
|
-
peg$fail(peg$
|
|
7427
|
+
peg$fail(peg$c231);
|
|
7422
7428
|
}
|
|
7423
7429
|
}
|
|
7424
7430
|
|
|
7425
7431
|
if (s3 !== peg$FAILED) {
|
|
7426
7432
|
peg$savedPos = s0;
|
|
7427
|
-
s1 = peg$
|
|
7433
|
+
s1 = peg$c232(s2);
|
|
7428
7434
|
s0 = s1;
|
|
7429
7435
|
} else {
|
|
7430
7436
|
peg$currPos = s0;
|
|
@@ -7443,13 +7449,13 @@ function peg$parse(input, options) {
|
|
|
7443
7449
|
s0 = peg$currPos;
|
|
7444
7450
|
|
|
7445
7451
|
if (input.charCodeAt(peg$currPos) === 39) {
|
|
7446
|
-
s1 = peg$
|
|
7452
|
+
s1 = peg$c233;
|
|
7447
7453
|
peg$currPos++;
|
|
7448
7454
|
} else {
|
|
7449
7455
|
s1 = peg$FAILED;
|
|
7450
7456
|
|
|
7451
7457
|
if (peg$silentFails === 0) {
|
|
7452
|
-
peg$fail(peg$
|
|
7458
|
+
peg$fail(peg$c234);
|
|
7453
7459
|
}
|
|
7454
7460
|
}
|
|
7455
7461
|
|
|
@@ -7464,19 +7470,19 @@ function peg$parse(input, options) {
|
|
|
7464
7470
|
|
|
7465
7471
|
if (s2 !== peg$FAILED) {
|
|
7466
7472
|
if (input.charCodeAt(peg$currPos) === 39) {
|
|
7467
|
-
s3 = peg$
|
|
7473
|
+
s3 = peg$c233;
|
|
7468
7474
|
peg$currPos++;
|
|
7469
7475
|
} else {
|
|
7470
7476
|
s3 = peg$FAILED;
|
|
7471
7477
|
|
|
7472
7478
|
if (peg$silentFails === 0) {
|
|
7473
|
-
peg$fail(peg$
|
|
7479
|
+
peg$fail(peg$c234);
|
|
7474
7480
|
}
|
|
7475
7481
|
}
|
|
7476
7482
|
|
|
7477
7483
|
if (s3 !== peg$FAILED) {
|
|
7478
7484
|
peg$savedPos = s0;
|
|
7479
|
-
s1 = peg$
|
|
7485
|
+
s1 = peg$c229(s2);
|
|
7480
7486
|
s0 = s1;
|
|
7481
7487
|
} else {
|
|
7482
7488
|
peg$currPos = s0;
|
|
@@ -7499,7 +7505,7 @@ function peg$parse(input, options) {
|
|
|
7499
7505
|
s1 = peg$FAILED;
|
|
7500
7506
|
|
|
7501
7507
|
if (peg$silentFails === 0) {
|
|
7502
|
-
peg$fail(peg$
|
|
7508
|
+
peg$fail(peg$c228);
|
|
7503
7509
|
}
|
|
7504
7510
|
}
|
|
7505
7511
|
|
|
@@ -7511,31 +7517,31 @@ function peg$parse(input, options) {
|
|
|
7511
7517
|
s0 = peg$currPos;
|
|
7512
7518
|
|
|
7513
7519
|
if (input.charCodeAt(peg$currPos) === 92) {
|
|
7514
|
-
s1 = peg$
|
|
7520
|
+
s1 = peg$c235;
|
|
7515
7521
|
peg$currPos++;
|
|
7516
7522
|
} else {
|
|
7517
7523
|
s1 = peg$FAILED;
|
|
7518
7524
|
|
|
7519
7525
|
if (peg$silentFails === 0) {
|
|
7520
|
-
peg$fail(peg$
|
|
7526
|
+
peg$fail(peg$c236);
|
|
7521
7527
|
}
|
|
7522
7528
|
}
|
|
7523
7529
|
|
|
7524
7530
|
if (s1 !== peg$FAILED) {
|
|
7525
7531
|
if (input.charCodeAt(peg$currPos) === 34) {
|
|
7526
|
-
s2 = peg$
|
|
7532
|
+
s2 = peg$c199;
|
|
7527
7533
|
peg$currPos++;
|
|
7528
7534
|
} else {
|
|
7529
7535
|
s2 = peg$FAILED;
|
|
7530
7536
|
|
|
7531
7537
|
if (peg$silentFails === 0) {
|
|
7532
|
-
peg$fail(peg$
|
|
7538
|
+
peg$fail(peg$c200);
|
|
7533
7539
|
}
|
|
7534
7540
|
}
|
|
7535
7541
|
|
|
7536
7542
|
if (s2 !== peg$FAILED) {
|
|
7537
7543
|
peg$savedPos = s0;
|
|
7538
|
-
s1 = peg$
|
|
7544
|
+
s1 = peg$c237();
|
|
7539
7545
|
s0 = s1;
|
|
7540
7546
|
} else {
|
|
7541
7547
|
peg$currPos = s0;
|
|
@@ -7552,13 +7558,13 @@ function peg$parse(input, options) {
|
|
|
7552
7558
|
peg$silentFails++;
|
|
7553
7559
|
|
|
7554
7560
|
if (input.charCodeAt(peg$currPos) === 34) {
|
|
7555
|
-
s2 = peg$
|
|
7561
|
+
s2 = peg$c199;
|
|
7556
7562
|
peg$currPos++;
|
|
7557
7563
|
} else {
|
|
7558
7564
|
s2 = peg$FAILED;
|
|
7559
7565
|
|
|
7560
7566
|
if (peg$silentFails === 0) {
|
|
7561
|
-
peg$fail(peg$
|
|
7567
|
+
peg$fail(peg$c200);
|
|
7562
7568
|
}
|
|
7563
7569
|
}
|
|
7564
7570
|
|
|
@@ -7576,7 +7582,7 @@ function peg$parse(input, options) {
|
|
|
7576
7582
|
|
|
7577
7583
|
if (s2 !== peg$FAILED) {
|
|
7578
7584
|
peg$savedPos = s0;
|
|
7579
|
-
s1 = peg$
|
|
7585
|
+
s1 = peg$c238();
|
|
7580
7586
|
s0 = s1;
|
|
7581
7587
|
} else {
|
|
7582
7588
|
peg$currPos = s0;
|
|
@@ -7595,20 +7601,20 @@ function peg$parse(input, options) {
|
|
|
7595
7601
|
var s0, s1, s2;
|
|
7596
7602
|
s0 = peg$currPos;
|
|
7597
7603
|
|
|
7598
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
7599
|
-
s1 = peg$
|
|
7604
|
+
if (input.substr(peg$currPos, 2) === peg$c239) {
|
|
7605
|
+
s1 = peg$c239;
|
|
7600
7606
|
peg$currPos += 2;
|
|
7601
7607
|
} else {
|
|
7602
7608
|
s1 = peg$FAILED;
|
|
7603
7609
|
|
|
7604
7610
|
if (peg$silentFails === 0) {
|
|
7605
|
-
peg$fail(peg$
|
|
7611
|
+
peg$fail(peg$c240);
|
|
7606
7612
|
}
|
|
7607
7613
|
}
|
|
7608
7614
|
|
|
7609
7615
|
if (s1 !== peg$FAILED) {
|
|
7610
7616
|
peg$savedPos = s0;
|
|
7611
|
-
s1 = peg$
|
|
7617
|
+
s1 = peg$c241();
|
|
7612
7618
|
}
|
|
7613
7619
|
|
|
7614
7620
|
s0 = s1;
|
|
@@ -7619,13 +7625,13 @@ function peg$parse(input, options) {
|
|
|
7619
7625
|
peg$silentFails++;
|
|
7620
7626
|
|
|
7621
7627
|
if (input.charCodeAt(peg$currPos) === 39) {
|
|
7622
|
-
s2 = peg$
|
|
7628
|
+
s2 = peg$c233;
|
|
7623
7629
|
peg$currPos++;
|
|
7624
7630
|
} else {
|
|
7625
7631
|
s2 = peg$FAILED;
|
|
7626
7632
|
|
|
7627
7633
|
if (peg$silentFails === 0) {
|
|
7628
|
-
peg$fail(peg$
|
|
7634
|
+
peg$fail(peg$c234);
|
|
7629
7635
|
}
|
|
7630
7636
|
}
|
|
7631
7637
|
|
|
@@ -7643,7 +7649,7 @@ function peg$parse(input, options) {
|
|
|
7643
7649
|
|
|
7644
7650
|
if (s2 !== peg$FAILED) {
|
|
7645
7651
|
peg$savedPos = s0;
|
|
7646
|
-
s1 = peg$
|
|
7652
|
+
s1 = peg$c238();
|
|
7647
7653
|
s0 = s1;
|
|
7648
7654
|
} else {
|
|
7649
7655
|
peg$currPos = s0;
|
|
@@ -7662,20 +7668,20 @@ function peg$parse(input, options) {
|
|
|
7662
7668
|
var s0, s1, s2, s3;
|
|
7663
7669
|
s0 = peg$currPos;
|
|
7664
7670
|
|
|
7665
|
-
if (input.substr(peg$currPos, 2) === peg$
|
|
7666
|
-
s1 = peg$
|
|
7671
|
+
if (input.substr(peg$currPos, 2) === peg$c239) {
|
|
7672
|
+
s1 = peg$c239;
|
|
7667
7673
|
peg$currPos += 2;
|
|
7668
7674
|
} else {
|
|
7669
7675
|
s1 = peg$FAILED;
|
|
7670
7676
|
|
|
7671
7677
|
if (peg$silentFails === 0) {
|
|
7672
|
-
peg$fail(peg$
|
|
7678
|
+
peg$fail(peg$c240);
|
|
7673
7679
|
}
|
|
7674
7680
|
}
|
|
7675
7681
|
|
|
7676
7682
|
if (s1 !== peg$FAILED) {
|
|
7677
7683
|
peg$savedPos = s0;
|
|
7678
|
-
s1 = peg$
|
|
7684
|
+
s1 = peg$c241();
|
|
7679
7685
|
}
|
|
7680
7686
|
|
|
7681
7687
|
s0 = s1;
|
|
@@ -7684,13 +7690,13 @@ function peg$parse(input, options) {
|
|
|
7684
7690
|
s0 = peg$currPos;
|
|
7685
7691
|
|
|
7686
7692
|
if (input.charCodeAt(peg$currPos) === 92) {
|
|
7687
|
-
s1 = peg$
|
|
7693
|
+
s1 = peg$c235;
|
|
7688
7694
|
peg$currPos++;
|
|
7689
7695
|
} else {
|
|
7690
7696
|
s1 = peg$FAILED;
|
|
7691
7697
|
|
|
7692
7698
|
if (peg$silentFails === 0) {
|
|
7693
|
-
peg$fail(peg$
|
|
7699
|
+
peg$fail(peg$c236);
|
|
7694
7700
|
}
|
|
7695
7701
|
}
|
|
7696
7702
|
|
|
@@ -7698,13 +7704,13 @@ function peg$parse(input, options) {
|
|
|
7698
7704
|
s2 = [];
|
|
7699
7705
|
|
|
7700
7706
|
if (input.charCodeAt(peg$currPos) === 92) {
|
|
7701
|
-
s3 = peg$
|
|
7707
|
+
s3 = peg$c235;
|
|
7702
7708
|
peg$currPos++;
|
|
7703
7709
|
} else {
|
|
7704
7710
|
s3 = peg$FAILED;
|
|
7705
7711
|
|
|
7706
7712
|
if (peg$silentFails === 0) {
|
|
7707
|
-
peg$fail(peg$
|
|
7713
|
+
peg$fail(peg$c236);
|
|
7708
7714
|
}
|
|
7709
7715
|
}
|
|
7710
7716
|
|
|
@@ -7713,13 +7719,13 @@ function peg$parse(input, options) {
|
|
|
7713
7719
|
s2.push(s3);
|
|
7714
7720
|
|
|
7715
7721
|
if (input.charCodeAt(peg$currPos) === 92) {
|
|
7716
|
-
s3 = peg$
|
|
7722
|
+
s3 = peg$c235;
|
|
7717
7723
|
peg$currPos++;
|
|
7718
7724
|
} else {
|
|
7719
7725
|
s3 = peg$FAILED;
|
|
7720
7726
|
|
|
7721
7727
|
if (peg$silentFails === 0) {
|
|
7722
|
-
peg$fail(peg$
|
|
7728
|
+
peg$fail(peg$c236);
|
|
7723
7729
|
}
|
|
7724
7730
|
}
|
|
7725
7731
|
}
|
|
@@ -7729,7 +7735,7 @@ function peg$parse(input, options) {
|
|
|
7729
7735
|
|
|
7730
7736
|
if (s2 !== peg$FAILED) {
|
|
7731
7737
|
peg$savedPos = s0;
|
|
7732
|
-
s1 = peg$
|
|
7738
|
+
s1 = peg$c242(s2);
|
|
7733
7739
|
s0 = s1;
|
|
7734
7740
|
} else {
|
|
7735
7741
|
peg$currPos = s0;
|
|
@@ -7744,25 +7750,25 @@ function peg$parse(input, options) {
|
|
|
7744
7750
|
s0 = peg$currPos;
|
|
7745
7751
|
|
|
7746
7752
|
if (input.charCodeAt(peg$currPos) === 92) {
|
|
7747
|
-
s1 = peg$
|
|
7753
|
+
s1 = peg$c235;
|
|
7748
7754
|
peg$currPos++;
|
|
7749
7755
|
} else {
|
|
7750
7756
|
s1 = peg$FAILED;
|
|
7751
7757
|
|
|
7752
7758
|
if (peg$silentFails === 0) {
|
|
7753
|
-
peg$fail(peg$
|
|
7759
|
+
peg$fail(peg$c236);
|
|
7754
7760
|
}
|
|
7755
7761
|
}
|
|
7756
7762
|
|
|
7757
7763
|
if (s1 !== peg$FAILED) {
|
|
7758
7764
|
if (input.charCodeAt(peg$currPos) === 10) {
|
|
7759
|
-
s2 = peg$
|
|
7765
|
+
s2 = peg$c216;
|
|
7760
7766
|
peg$currPos++;
|
|
7761
7767
|
} else {
|
|
7762
7768
|
s2 = peg$FAILED;
|
|
7763
7769
|
|
|
7764
7770
|
if (peg$silentFails === 0) {
|
|
7765
|
-
peg$fail(peg$
|
|
7771
|
+
peg$fail(peg$c217);
|
|
7766
7772
|
}
|
|
7767
7773
|
}
|
|
7768
7774
|
|
|
@@ -7772,7 +7778,7 @@ function peg$parse(input, options) {
|
|
|
7772
7778
|
|
|
7773
7779
|
if (s2 !== peg$FAILED) {
|
|
7774
7780
|
peg$savedPos = s0;
|
|
7775
|
-
s1 = peg$
|
|
7781
|
+
s1 = peg$c243();
|
|
7776
7782
|
s0 = s1;
|
|
7777
7783
|
} else {
|
|
7778
7784
|
peg$currPos = s0;
|
|
@@ -7788,14 +7794,14 @@ function peg$parse(input, options) {
|
|
|
7788
7794
|
s1 = peg$currPos;
|
|
7789
7795
|
peg$silentFails++;
|
|
7790
7796
|
|
|
7791
|
-
if (input.substr(peg$currPos, 3) === peg$
|
|
7792
|
-
s2 = peg$
|
|
7797
|
+
if (input.substr(peg$currPos, 3) === peg$c230) {
|
|
7798
|
+
s2 = peg$c230;
|
|
7793
7799
|
peg$currPos += 3;
|
|
7794
7800
|
} else {
|
|
7795
7801
|
s2 = peg$FAILED;
|
|
7796
7802
|
|
|
7797
7803
|
if (peg$silentFails === 0) {
|
|
7798
|
-
peg$fail(peg$
|
|
7804
|
+
peg$fail(peg$c231);
|
|
7799
7805
|
}
|
|
7800
7806
|
}
|
|
7801
7807
|
|
|
@@ -7813,7 +7819,7 @@ function peg$parse(input, options) {
|
|
|
7813
7819
|
|
|
7814
7820
|
if (s2 !== peg$FAILED) {
|
|
7815
7821
|
peg$savedPos = s0;
|
|
7816
|
-
s1 = peg$
|
|
7822
|
+
s1 = peg$c238();
|
|
7817
7823
|
s0 = s1;
|
|
7818
7824
|
} else {
|
|
7819
7825
|
peg$currPos = s0;
|
|
@@ -7840,7 +7846,7 @@ function peg$parse(input, options) {
|
|
|
7840
7846
|
s0 = peg$FAILED;
|
|
7841
7847
|
|
|
7842
7848
|
if (peg$silentFails === 0) {
|
|
7843
|
-
peg$fail(peg$
|
|
7849
|
+
peg$fail(peg$c184);
|
|
7844
7850
|
}
|
|
7845
7851
|
}
|
|
7846
7852
|
|
|
@@ -7850,14 +7856,14 @@ function peg$parse(input, options) {
|
|
|
7850
7856
|
function peg$parsedigit() {
|
|
7851
7857
|
var s0;
|
|
7852
7858
|
|
|
7853
|
-
if (peg$
|
|
7859
|
+
if (peg$c244.test(input.charAt(peg$currPos))) {
|
|
7854
7860
|
s0 = input.charAt(peg$currPos);
|
|
7855
7861
|
peg$currPos++;
|
|
7856
7862
|
} else {
|
|
7857
7863
|
s0 = peg$FAILED;
|
|
7858
7864
|
|
|
7859
7865
|
if (peg$silentFails === 0) {
|
|
7860
|
-
peg$fail(peg$
|
|
7866
|
+
peg$fail(peg$c245);
|
|
7861
7867
|
}
|
|
7862
7868
|
}
|
|
7863
7869
|
|
|
@@ -7868,13 +7874,13 @@ function peg$parse(input, options) {
|
|
|
7868
7874
|
var s0;
|
|
7869
7875
|
|
|
7870
7876
|
if (input.charCodeAt(peg$currPos) === 61) {
|
|
7871
|
-
s0 = peg$
|
|
7877
|
+
s0 = peg$c246;
|
|
7872
7878
|
peg$currPos++;
|
|
7873
7879
|
} else {
|
|
7874
7880
|
s0 = peg$FAILED;
|
|
7875
7881
|
|
|
7876
7882
|
if (peg$silentFails === 0) {
|
|
7877
|
-
peg$fail(peg$
|
|
7883
|
+
peg$fail(peg$c247);
|
|
7878
7884
|
}
|
|
7879
7885
|
}
|
|
7880
7886
|
|
|
@@ -7885,13 +7891,13 @@ function peg$parse(input, options) {
|
|
|
7885
7891
|
var s0;
|
|
7886
7892
|
|
|
7887
7893
|
if (input.charCodeAt(peg$currPos) === 46) {
|
|
7888
|
-
s0 = peg$
|
|
7894
|
+
s0 = peg$c169;
|
|
7889
7895
|
peg$currPos++;
|
|
7890
7896
|
} else {
|
|
7891
7897
|
s0 = peg$FAILED;
|
|
7892
7898
|
|
|
7893
7899
|
if (peg$silentFails === 0) {
|
|
7894
|
-
peg$fail(peg$
|
|
7900
|
+
peg$fail(peg$c170);
|
|
7895
7901
|
}
|
|
7896
7902
|
}
|
|
7897
7903
|
|
|
@@ -7902,26 +7908,26 @@ function peg$parse(input, options) {
|
|
|
7902
7908
|
var s0, s1;
|
|
7903
7909
|
s0 = peg$currPos;
|
|
7904
7910
|
|
|
7905
|
-
if (input.substr(peg$currPos, 4).toLowerCase() === peg$
|
|
7911
|
+
if (input.substr(peg$currPos, 4).toLowerCase() === peg$c248) {
|
|
7906
7912
|
s1 = input.substr(peg$currPos, 4);
|
|
7907
7913
|
peg$currPos += 4;
|
|
7908
7914
|
} else {
|
|
7909
7915
|
s1 = peg$FAILED;
|
|
7910
7916
|
|
|
7911
7917
|
if (peg$silentFails === 0) {
|
|
7912
|
-
peg$fail(peg$
|
|
7918
|
+
peg$fail(peg$c249);
|
|
7913
7919
|
}
|
|
7914
7920
|
}
|
|
7915
7921
|
|
|
7916
7922
|
if (s1 === peg$FAILED) {
|
|
7917
|
-
if (input.substr(peg$currPos, 5).toLowerCase() === peg$
|
|
7923
|
+
if (input.substr(peg$currPos, 5).toLowerCase() === peg$c250) {
|
|
7918
7924
|
s1 = input.substr(peg$currPos, 5);
|
|
7919
7925
|
peg$currPos += 5;
|
|
7920
7926
|
} else {
|
|
7921
7927
|
s1 = peg$FAILED;
|
|
7922
7928
|
|
|
7923
7929
|
if (peg$silentFails === 0) {
|
|
7924
|
-
peg$fail(peg$
|
|
7930
|
+
peg$fail(peg$c251);
|
|
7925
7931
|
}
|
|
7926
7932
|
}
|
|
7927
7933
|
|
|
@@ -7941,7 +7947,7 @@ function peg$parse(input, options) {
|
|
|
7941
7947
|
|
|
7942
7948
|
if (s1 !== peg$FAILED) {
|
|
7943
7949
|
peg$savedPos = s0;
|
|
7944
|
-
s1 = peg$
|
|
7950
|
+
s1 = peg$c252(s1);
|
|
7945
7951
|
}
|
|
7946
7952
|
|
|
7947
7953
|
s0 = s1;
|
|
@@ -7953,13 +7959,13 @@ function peg$parse(input, options) {
|
|
|
7953
7959
|
s0 = peg$currPos;
|
|
7954
7960
|
|
|
7955
7961
|
if (input.charCodeAt(peg$currPos) === 45) {
|
|
7956
|
-
s1 = peg$
|
|
7962
|
+
s1 = peg$c162;
|
|
7957
7963
|
peg$currPos++;
|
|
7958
7964
|
} else {
|
|
7959
7965
|
s1 = peg$FAILED;
|
|
7960
7966
|
|
|
7961
7967
|
if (peg$silentFails === 0) {
|
|
7962
|
-
peg$fail(peg$
|
|
7968
|
+
peg$fail(peg$c163);
|
|
7963
7969
|
}
|
|
7964
7970
|
}
|
|
7965
7971
|
|
|
@@ -7976,7 +7982,7 @@ function peg$parse(input, options) {
|
|
|
7976
7982
|
|
|
7977
7983
|
if (s2 !== peg$FAILED) {
|
|
7978
7984
|
peg$savedPos = s0;
|
|
7979
|
-
s1 = peg$
|
|
7985
|
+
s1 = peg$c253(s1, s2);
|
|
7980
7986
|
s0 = s1;
|
|
7981
7987
|
} else {
|
|
7982
7988
|
peg$currPos = s0;
|
|
@@ -7995,14 +8001,14 @@ function peg$parse(input, options) {
|
|
|
7995
8001
|
s0 = peg$currPos;
|
|
7996
8002
|
s1 = [];
|
|
7997
8003
|
|
|
7998
|
-
if (peg$
|
|
8004
|
+
if (peg$c244.test(input.charAt(peg$currPos))) {
|
|
7999
8005
|
s2 = input.charAt(peg$currPos);
|
|
8000
8006
|
peg$currPos++;
|
|
8001
8007
|
} else {
|
|
8002
8008
|
s2 = peg$FAILED;
|
|
8003
8009
|
|
|
8004
8010
|
if (peg$silentFails === 0) {
|
|
8005
|
-
peg$fail(peg$
|
|
8011
|
+
peg$fail(peg$c245);
|
|
8006
8012
|
}
|
|
8007
8013
|
}
|
|
8008
8014
|
|
|
@@ -8010,14 +8016,14 @@ function peg$parse(input, options) {
|
|
|
8010
8016
|
while (s2 !== peg$FAILED) {
|
|
8011
8017
|
s1.push(s2);
|
|
8012
8018
|
|
|
8013
|
-
if (peg$
|
|
8019
|
+
if (peg$c244.test(input.charAt(peg$currPos))) {
|
|
8014
8020
|
s2 = input.charAt(peg$currPos);
|
|
8015
8021
|
peg$currPos++;
|
|
8016
8022
|
} else {
|
|
8017
8023
|
s2 = peg$FAILED;
|
|
8018
8024
|
|
|
8019
8025
|
if (peg$silentFails === 0) {
|
|
8020
|
-
peg$fail(peg$
|
|
8026
|
+
peg$fail(peg$c245);
|
|
8021
8027
|
}
|
|
8022
8028
|
}
|
|
8023
8029
|
}
|
|
@@ -8027,27 +8033,27 @@ function peg$parse(input, options) {
|
|
|
8027
8033
|
|
|
8028
8034
|
if (s1 !== peg$FAILED) {
|
|
8029
8035
|
if (input.charCodeAt(peg$currPos) === 46) {
|
|
8030
|
-
s2 = peg$
|
|
8036
|
+
s2 = peg$c169;
|
|
8031
8037
|
peg$currPos++;
|
|
8032
8038
|
} else {
|
|
8033
8039
|
s2 = peg$FAILED;
|
|
8034
8040
|
|
|
8035
8041
|
if (peg$silentFails === 0) {
|
|
8036
|
-
peg$fail(peg$
|
|
8042
|
+
peg$fail(peg$c170);
|
|
8037
8043
|
}
|
|
8038
8044
|
}
|
|
8039
8045
|
|
|
8040
8046
|
if (s2 !== peg$FAILED) {
|
|
8041
8047
|
s3 = [];
|
|
8042
8048
|
|
|
8043
|
-
if (peg$
|
|
8049
|
+
if (peg$c244.test(input.charAt(peg$currPos))) {
|
|
8044
8050
|
s4 = input.charAt(peg$currPos);
|
|
8045
8051
|
peg$currPos++;
|
|
8046
8052
|
} else {
|
|
8047
8053
|
s4 = peg$FAILED;
|
|
8048
8054
|
|
|
8049
8055
|
if (peg$silentFails === 0) {
|
|
8050
|
-
peg$fail(peg$
|
|
8056
|
+
peg$fail(peg$c245);
|
|
8051
8057
|
}
|
|
8052
8058
|
}
|
|
8053
8059
|
|
|
@@ -8055,14 +8061,14 @@ function peg$parse(input, options) {
|
|
|
8055
8061
|
while (s4 !== peg$FAILED) {
|
|
8056
8062
|
s3.push(s4);
|
|
8057
8063
|
|
|
8058
|
-
if (peg$
|
|
8064
|
+
if (peg$c244.test(input.charAt(peg$currPos))) {
|
|
8059
8065
|
s4 = input.charAt(peg$currPos);
|
|
8060
8066
|
peg$currPos++;
|
|
8061
8067
|
} else {
|
|
8062
8068
|
s4 = peg$FAILED;
|
|
8063
8069
|
|
|
8064
8070
|
if (peg$silentFails === 0) {
|
|
8065
|
-
peg$fail(peg$
|
|
8071
|
+
peg$fail(peg$c245);
|
|
8066
8072
|
}
|
|
8067
8073
|
}
|
|
8068
8074
|
}
|
|
@@ -8072,7 +8078,7 @@ function peg$parse(input, options) {
|
|
|
8072
8078
|
|
|
8073
8079
|
if (s3 !== peg$FAILED) {
|
|
8074
8080
|
peg$savedPos = s0;
|
|
8075
|
-
s1 = peg$
|
|
8081
|
+
s1 = peg$c254(s1, s3);
|
|
8076
8082
|
s0 = s1;
|
|
8077
8083
|
} else {
|
|
8078
8084
|
peg$currPos = s0;
|
|
@@ -8095,14 +8101,14 @@ function peg$parse(input, options) {
|
|
|
8095
8101
|
s0 = peg$currPos;
|
|
8096
8102
|
s1 = [];
|
|
8097
8103
|
|
|
8098
|
-
if (peg$
|
|
8104
|
+
if (peg$c244.test(input.charAt(peg$currPos))) {
|
|
8099
8105
|
s2 = input.charAt(peg$currPos);
|
|
8100
8106
|
peg$currPos++;
|
|
8101
8107
|
} else {
|
|
8102
8108
|
s2 = peg$FAILED;
|
|
8103
8109
|
|
|
8104
8110
|
if (peg$silentFails === 0) {
|
|
8105
|
-
peg$fail(peg$
|
|
8111
|
+
peg$fail(peg$c245);
|
|
8106
8112
|
}
|
|
8107
8113
|
}
|
|
8108
8114
|
|
|
@@ -8110,14 +8116,14 @@ function peg$parse(input, options) {
|
|
|
8110
8116
|
while (s2 !== peg$FAILED) {
|
|
8111
8117
|
s1.push(s2);
|
|
8112
8118
|
|
|
8113
|
-
if (peg$
|
|
8119
|
+
if (peg$c244.test(input.charAt(peg$currPos))) {
|
|
8114
8120
|
s2 = input.charAt(peg$currPos);
|
|
8115
8121
|
peg$currPos++;
|
|
8116
8122
|
} else {
|
|
8117
8123
|
s2 = peg$FAILED;
|
|
8118
8124
|
|
|
8119
8125
|
if (peg$silentFails === 0) {
|
|
8120
|
-
peg$fail(peg$
|
|
8126
|
+
peg$fail(peg$c245);
|
|
8121
8127
|
}
|
|
8122
8128
|
}
|
|
8123
8129
|
}
|
|
@@ -8127,7 +8133,7 @@ function peg$parse(input, options) {
|
|
|
8127
8133
|
|
|
8128
8134
|
if (s1 !== peg$FAILED) {
|
|
8129
8135
|
peg$savedPos = s0;
|
|
8130
|
-
s1 = peg$
|
|
8136
|
+
s1 = peg$c255(s1);
|
|
8131
8137
|
}
|
|
8132
8138
|
|
|
8133
8139
|
s0 = s1;
|