@andrivet/z80-assembler 1.3.2 → 1.4.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/CHANGELOG.md +8 -0
- package/index.js +7 -7
- package/index.mjs +490 -482
- package/lib/grammar/z80.d.ts +5 -4
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -32,7 +32,7 @@ function C(i, t = 0) {
|
|
|
32
32
|
return console.log(`Invalid register name: ${i}`), 0;
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
|
-
function
|
|
35
|
+
function M(i, t = 0) {
|
|
36
36
|
switch (i.toLowerCase()) {
|
|
37
37
|
case "bc":
|
|
38
38
|
return 0 << t;
|
|
@@ -157,7 +157,7 @@ function $(i, t, n) {
|
|
|
157
157
|
return;
|
|
158
158
|
}
|
|
159
159
|
if (e.known && e.value != n)
|
|
160
|
-
throw new
|
|
160
|
+
throw new a(
|
|
161
161
|
i,
|
|
162
162
|
`The value of the label '${t}' is redefined (old value: ${e.value}, new value: ${n})`
|
|
163
163
|
);
|
|
@@ -173,27 +173,27 @@ function tt(i, t, n) {
|
|
|
173
173
|
}
|
|
174
174
|
function D(i, t, n, e, s) {
|
|
175
175
|
if (E > 20)
|
|
176
|
-
throw new
|
|
176
|
+
throw new a(n, `Label '${t}' is undetermined (too many recursions)`);
|
|
177
177
|
if (t === "$")
|
|
178
178
|
return i;
|
|
179
179
|
const r = L.get(t);
|
|
180
180
|
if (!r) {
|
|
181
181
|
if (s)
|
|
182
|
-
throw new
|
|
182
|
+
throw new a(n, `Label '${t}' is undefined`);
|
|
183
183
|
return L.set(t, { expression: null, value: 0, known: !1, used: !0 }), null;
|
|
184
184
|
}
|
|
185
185
|
if (e && (r.used = !0), r.known)
|
|
186
186
|
return r.value;
|
|
187
187
|
if (r.expression == null) {
|
|
188
188
|
if (s)
|
|
189
|
-
throw new
|
|
189
|
+
throw new a(n, `Label '${t}' is undefined`);
|
|
190
190
|
return null;
|
|
191
191
|
}
|
|
192
192
|
E += 1;
|
|
193
193
|
const u = r.expression.eval(i, s);
|
|
194
194
|
if (E -= 1, u == null) {
|
|
195
195
|
if (s)
|
|
196
|
-
throw new
|
|
196
|
+
throw new a(n, `Label '${t}' is undefined`);
|
|
197
197
|
return null;
|
|
198
198
|
}
|
|
199
199
|
return r.value = u, r.known = !0, u;
|
|
@@ -218,9 +218,9 @@ class et {
|
|
|
218
218
|
get size() {
|
|
219
219
|
const t = this.length.eval(0, !0);
|
|
220
220
|
if (t == null)
|
|
221
|
-
throw new
|
|
221
|
+
throw new a(this.position0, "Unknown size for the data block");
|
|
222
222
|
if (t < 0)
|
|
223
|
-
throw new
|
|
223
|
+
throw new a(this.position0, `Invalid size size for the data block: ${t}`);
|
|
224
224
|
return t;
|
|
225
225
|
}
|
|
226
226
|
/**
|
|
@@ -232,9 +232,9 @@ class et {
|
|
|
232
232
|
return 0;
|
|
233
233
|
let n = this.value.eval(t, !0);
|
|
234
234
|
if (n == null)
|
|
235
|
-
throw new
|
|
235
|
+
throw new a(this.position1, "Not able to determine a value");
|
|
236
236
|
if (n < -256 || n > 255)
|
|
237
|
-
throw new
|
|
237
|
+
throw new a(this.position1, `Invalid 8-bits value: ${n}`);
|
|
238
238
|
return n < 0 && (n = 256 + n), n;
|
|
239
239
|
}
|
|
240
240
|
/**
|
|
@@ -266,9 +266,9 @@ class it {
|
|
|
266
266
|
generate(t) {
|
|
267
267
|
let n = this.expression.eval(t, !0);
|
|
268
268
|
if (n == null)
|
|
269
|
-
throw new
|
|
269
|
+
throw new a(this.position, "Not able to determine the 16-bits value");
|
|
270
270
|
if (n < -65536 || n > 65535)
|
|
271
|
-
throw new
|
|
271
|
+
throw new a(this.position, `Invalid 16-bits value: ${n}`);
|
|
272
272
|
return n < 0 && (n = 65536 + n), [n & 255, (n & 65280) >> 8];
|
|
273
273
|
}
|
|
274
274
|
}
|
|
@@ -288,9 +288,9 @@ class V {
|
|
|
288
288
|
generate(t) {
|
|
289
289
|
let n = this.expression.eval(t, !0);
|
|
290
290
|
if (n == null)
|
|
291
|
-
throw new
|
|
291
|
+
throw new a(this.position, "Not able to determine the 8-bits value");
|
|
292
292
|
if (n < -256 || n > 255)
|
|
293
|
-
throw new
|
|
293
|
+
throw new a(this.position, `Invalid 8-bits value: ${n}`);
|
|
294
294
|
return n < 0 && (n = 256 + n), [n];
|
|
295
295
|
}
|
|
296
296
|
}
|
|
@@ -310,9 +310,9 @@ class st {
|
|
|
310
310
|
generate(t) {
|
|
311
311
|
let n = this.expression.eval(t, !0);
|
|
312
312
|
if (n == null)
|
|
313
|
-
throw new
|
|
313
|
+
throw new a(this.position, "Not able to determine the 8-bits value");
|
|
314
314
|
if (n = -n, n < -256 || n > 255)
|
|
315
|
-
throw new
|
|
315
|
+
throw new a(this.position, `Invalid 8-bits value: ${n}`);
|
|
316
316
|
return n < 0 && (n = 256 + n), [n];
|
|
317
317
|
}
|
|
318
318
|
}
|
|
@@ -332,9 +332,9 @@ class rt {
|
|
|
332
332
|
generate(t) {
|
|
333
333
|
let n = this.expression.eval(t, !0);
|
|
334
334
|
if (n == null)
|
|
335
|
-
throw new
|
|
335
|
+
throw new a(this.position, "Not able to determine the offset value");
|
|
336
336
|
if (n < -126 || n > 129)
|
|
337
|
-
throw new
|
|
337
|
+
throw new a(this.position, `Invalid offset for JR instruction: ${n}`);
|
|
338
338
|
return n -= 2, n < 0 && (n = 256 + n), [n];
|
|
339
339
|
}
|
|
340
340
|
}
|
|
@@ -354,13 +354,13 @@ class ut {
|
|
|
354
354
|
*/
|
|
355
355
|
generate(t) {
|
|
356
356
|
if (t == null)
|
|
357
|
-
throw new
|
|
357
|
+
throw new a(this.position, "Not able to determine PC value");
|
|
358
358
|
const n = D(t, this.label, this.position, !0, !0);
|
|
359
359
|
if (n == null)
|
|
360
|
-
throw new
|
|
360
|
+
throw new a(this.position, `Not able to determine the value of label '${this.label}'`);
|
|
361
361
|
let e = n - t;
|
|
362
362
|
if (e < -126 || e > 129)
|
|
363
|
-
throw new
|
|
363
|
+
throw new a(this.position, `Label ${this.label} is to far from JR instruction: ${e} bytes`);
|
|
364
364
|
return e -= 2, e < 0 && (e = 256 + e), [e];
|
|
365
365
|
}
|
|
366
366
|
}
|
|
@@ -463,24 +463,24 @@ function U(i, t) {
|
|
|
463
463
|
let n = [], e = "", s = !1;
|
|
464
464
|
for (const r of t) {
|
|
465
465
|
let u = 1;
|
|
466
|
-
for (const
|
|
467
|
-
if (
|
|
468
|
-
e += N(r.filename, u, i,
|
|
466
|
+
for (const l of r.lines) {
|
|
467
|
+
if (l.kind !== x.LineStatement || !l.statement) {
|
|
468
|
+
e += N(r.filename, u, i, l), u += 1;
|
|
469
469
|
continue;
|
|
470
470
|
}
|
|
471
|
-
switch (
|
|
471
|
+
switch (l.statement?.kind) {
|
|
472
472
|
case x.Statement_1:
|
|
473
473
|
{
|
|
474
|
-
const m = U(i, [
|
|
474
|
+
const m = U(i, [l.statement.info]);
|
|
475
475
|
n = n.concat(m.bytes), e += m.sld, i = m.address;
|
|
476
476
|
}
|
|
477
477
|
break;
|
|
478
478
|
case x.Statement_2:
|
|
479
479
|
case x.Statement_3:
|
|
480
|
-
n = n.concat(Dt(i,
|
|
480
|
+
n = n.concat(Dt(i, l.statement.elements)), e += N(r.filename, u, i, l), i = Q(i, l.statement);
|
|
481
481
|
break;
|
|
482
482
|
}
|
|
483
|
-
if (
|
|
483
|
+
if (l.statement.kind === x.Statement_3 && l.statement.dir.kind === x.Directive_5) {
|
|
484
484
|
s = !0;
|
|
485
485
|
break;
|
|
486
486
|
}
|
|
@@ -761,7 +761,7 @@ basic_line2:
|
|
|
761
761
|
byte _RAND,_USR,_VAL,_DQT,_1,_6,_5,_1,_4,_DQT
|
|
762
762
|
byte _NL
|
|
763
763
|
basic_line2_end:
|
|
764
|
-
`,
|
|
764
|
+
`, Pt = `display:
|
|
765
765
|
byte _NL
|
|
766
766
|
block 32
|
|
767
767
|
byte _NL
|
|
@@ -811,7 +811,7 @@ basic_line2_end:
|
|
|
811
811
|
byte _NL
|
|
812
812
|
block 32
|
|
813
813
|
byte _NL
|
|
814
|
-
`,
|
|
814
|
+
`, Mt = `variables:
|
|
815
815
|
variables_end:
|
|
816
816
|
byte $80
|
|
817
817
|
edit_line:
|
|
@@ -840,7 +840,7 @@ function A(i, t) {
|
|
|
840
840
|
`);
|
|
841
841
|
const s = new Er(t).parse();
|
|
842
842
|
if (h.fileName = n, s.errs.length > 0)
|
|
843
|
-
throw
|
|
843
|
+
throw a.fromSyntaxErr(i, s.errs[0]);
|
|
844
844
|
return { lines: s.ast?.lines ?? [], filename: i };
|
|
845
845
|
}
|
|
846
846
|
function Gt(i) {
|
|
@@ -865,7 +865,7 @@ function Cr(i, t, n) {
|
|
|
865
865
|
outputName: h.outputName,
|
|
866
866
|
bytes: [],
|
|
867
867
|
sld: "",
|
|
868
|
-
errs: [
|
|
868
|
+
errs: [a.fromAny(h.fileName, e)]
|
|
869
869
|
};
|
|
870
870
|
}
|
|
871
871
|
}
|
|
@@ -876,21 +876,21 @@ function Jt(i) {
|
|
|
876
876
|
A("@internal/basic-line1.zx81", Ot),
|
|
877
877
|
i,
|
|
878
878
|
A("@internal/basic-line2.zx81", Nt),
|
|
879
|
-
A("@internal/display.zx81",
|
|
880
|
-
A("@internal/basic-end.zx81",
|
|
879
|
+
A("@internal/display.zx81", Pt),
|
|
880
|
+
A("@internal/basic-end.zx81", Mt)
|
|
881
881
|
];
|
|
882
882
|
}
|
|
883
883
|
function S(i, t, n, e) {
|
|
884
884
|
let s = parseInt(t, n);
|
|
885
885
|
if (isNaN(s))
|
|
886
|
-
throw new
|
|
886
|
+
throw new a(
|
|
887
887
|
{ filename: h.fileName, pos: i },
|
|
888
888
|
`Number '${t}' is invalid in base ${n}.`
|
|
889
889
|
);
|
|
890
890
|
switch (e) {
|
|
891
891
|
case 1:
|
|
892
892
|
if (s > 255 || s < -256)
|
|
893
|
-
throw new
|
|
893
|
+
throw new a(
|
|
894
894
|
{ filename: h.fileName, pos: i },
|
|
895
895
|
`Number '${t}' does not fit into a byte.`
|
|
896
896
|
);
|
|
@@ -898,14 +898,14 @@ function S(i, t, n, e) {
|
|
|
898
898
|
break;
|
|
899
899
|
case 2:
|
|
900
900
|
if (s > 65535 || s < -65536)
|
|
901
|
-
throw new
|
|
901
|
+
throw new a(
|
|
902
902
|
{ filename: h.fileName, pos: i },
|
|
903
903
|
`Number '${t}' does not fit into a word.`
|
|
904
904
|
);
|
|
905
905
|
s < 0 && (s = 65536 + s);
|
|
906
906
|
break;
|
|
907
907
|
default:
|
|
908
|
-
throw new
|
|
908
|
+
throw new a(
|
|
909
909
|
{ filename: h.fileName, pos: i },
|
|
910
910
|
`Invalid number of bytes (${e})`
|
|
911
911
|
);
|
|
@@ -919,7 +919,7 @@ function Xt(i, t) {
|
|
|
919
919
|
case '"':
|
|
920
920
|
return [11];
|
|
921
921
|
default:
|
|
922
|
-
throw new
|
|
922
|
+
throw new a(
|
|
923
923
|
{ filename: h.fileName, pos: i },
|
|
924
924
|
`Invalid escape: \\${t}`
|
|
925
925
|
);
|
|
@@ -928,7 +928,7 @@ function Xt(i, t) {
|
|
|
928
928
|
function jt(i, t) {
|
|
929
929
|
const n = parseInt(t, 8);
|
|
930
930
|
if (n > 255)
|
|
931
|
-
throw new
|
|
931
|
+
throw new a(
|
|
932
932
|
{ filename: h.fileName, pos: i },
|
|
933
933
|
`Number '${t}' in octal escape sequence does not fit into a byte.`
|
|
934
934
|
);
|
|
@@ -937,13 +937,13 @@ function jt(i, t) {
|
|
|
937
937
|
function Qt(i, t) {
|
|
938
938
|
const n = parseInt(t, 16);
|
|
939
939
|
if (n > 255)
|
|
940
|
-
throw new
|
|
940
|
+
throw new a(
|
|
941
941
|
{ filename: h.fileName, pos: i },
|
|
942
942
|
`Number '${t}' in hexadecimal escape sequence does not fit into a byte.`
|
|
943
943
|
);
|
|
944
944
|
return [n];
|
|
945
945
|
}
|
|
946
|
-
const
|
|
946
|
+
const P = /* @__PURE__ */ new Map([
|
|
947
947
|
[" ", 0],
|
|
948
948
|
['"', 11],
|
|
949
949
|
["£", 12],
|
|
@@ -965,18 +965,18 @@ const M = /* @__PURE__ */ new Map([
|
|
|
965
965
|
["_", 128]
|
|
966
966
|
]);
|
|
967
967
|
function Y(i, t) {
|
|
968
|
-
if (t >= "A" && t
|
|
968
|
+
if (t >= "A" && t <= "Z")
|
|
969
969
|
return [t.charCodeAt(0) - 65 + 38];
|
|
970
|
-
if (t >= "a" && t
|
|
970
|
+
if (t >= "a" && t <= "z")
|
|
971
971
|
return [t.charCodeAt(0) - 97 + 166];
|
|
972
|
-
if (t >= "0" && t
|
|
972
|
+
if (t >= "0" && t <= "9")
|
|
973
973
|
return [t.charCodeAt(0) - 48 + 28];
|
|
974
|
-
if (!
|
|
975
|
-
throw new
|
|
974
|
+
if (!P.has(t))
|
|
975
|
+
throw new a(
|
|
976
976
|
{ filename: h.fileName, pos: i },
|
|
977
977
|
`Invalid ZX81 character: ${t}`
|
|
978
978
|
);
|
|
979
|
-
return [
|
|
979
|
+
return [P.get(t)];
|
|
980
980
|
}
|
|
981
981
|
var x = /* @__PURE__ */ ((i) => (i.start = "start", i.r_1 = "r_1", i.r_2 = "r_2", i.r_3 = "r_3", i.r_4 = "r_4", i.r_5 = "r_5", i.r_6 = "r_6", i.r_7 = "r_7", i.dd_1 = "dd_1", i.dd_2 = "dd_2", i.dd_3 = "dd_3", i.dd_4 = "dd_4", i.ss = "ss", i.qq_1 = "qq_1", i.qq_2 = "qq_2", i.qq_3 = "qq_3", i.qq_4 = "qq_4", i.pp_1 = "pp_1", i.pp_2 = "pp_2", i.pp_3 = "pp_3", i.pp_4 = "pp_4", i.rr_1 = "rr_1", i.rr_2 = "rr_2", i.rr_3 = "rr_3", i.rr_4 = "rr_4", i.n_1 = "n_1", i.n_2 = "n_2", i.n_3 = "n_3", i.n_4 = "n_4", i.nn_1 = "nn_1", i.nn_2 = "nn_2", i.nn_3 = "nn_3", i.nn_4 = "nn_4", i.decimal = "decimal", i.binary_1 = "binary_1", i.binary_2 = "binary_2", i.binary_$0_1 = "binary_$0_1", i.binary_$0_2 = "binary_$0_2", i.octal_1 = "octal_1", i.octal_2 = "octal_2", i.octal_$0_1 = "octal_$0_1", i.octal_$0_2 = "octal_$0_2", i.octal_$0_3 = "octal_$0_3", i.octal_$1_1 = "octal_$1_1", i.octal_$1_2 = "octal_$1_2", i.hexadecimal_1 = "hexadecimal_1", i.hexadecimal_2 = "hexadecimal_2", i.hexadecimal_$0_1 = "hexadecimal_$0_1", i.hexadecimal_$0_2 = "hexadecimal_$0_2", i.hexadecimal_$0_3 = "hexadecimal_$0_3", i.d = "d", i.e = "e", i.p = "p", i.b = "b", i.cc_1 = "cc_1", i.cc_2 = "cc_2", i.cc_3 = "cc_3", i.cc_4 = "cc_4", i.cc_5 = "cc_5", i.cc_6 = "cc_6", i.cc_7 = "cc_7", i.cc_8 = "cc_8", i.cc_9 = "cc_9", i.jj_1 = "jj_1", i.jj_2 = "jj_2", i.jj_3 = "jj_3", i.jj_4 = "jj_4", i.__ = "__", i._ = "_", i.eos = "eos", i.eol = "eol", i.Lines = "Lines", i.Line_1 = "Line_1", i.Line_2 = "Line_2", i.LineEqual = "LineEqual", i.LineStatement = "LineStatement", i.Statement_1 = "Statement_1", i.Statement_2 = "Statement_2", i.Statement_3 = "Statement_3", i.EqualDirective = "EqualDirective", i.Directive_1 = "Directive_1", i.Directive_2 = "Directive_2", i.Directive_3 = "Directive_3", i.Directive_4 = "Directive_4", i.Directive_5 = "Directive_5", i.ForbiddenNames_1 = "ForbiddenNames_1", i.ForbiddenNames_2 = "ForbiddenNames_2", i.ForbiddenNames_3 = "ForbiddenNames_3", i.ForbiddenNames_4 = "ForbiddenNames_4", i.ForbiddenNames_5 = "ForbiddenNames_5", i.ForbiddenLabel = "ForbiddenLabel", i.Label = "Label", i.LabelDeclaration = "LabelDeclaration", i.Expression = "Expression", i.BitwiseOrExpression = "BitwiseOrExpression", i.BitwiseOrExpression_$0 = "BitwiseOrExpression_$0", i.BitwiseXOrExpression = "BitwiseXOrExpression", i.BitwiseXOrExpression_$0 = "BitwiseXOrExpression_$0", i.BitwiseAndExpression = "BitwiseAndExpression", i.BitwiseAndExpression_$0 = "BitwiseAndExpression_$0", i.ShiftExpression = "ShiftExpression", i.ShiftExpression_$0 = "ShiftExpression_$0", i.ShiftExpression_$0_$0_1 = "ShiftExpression_$0_$0_1", i.ShiftExpression_$0_$0_2 = "ShiftExpression_$0_$0_2", i.AdditiveExpression = "AdditiveExpression", i.AdditiveExpression_$0 = "AdditiveExpression_$0", i.AdditiveExpression_$0_$0_1 = "AdditiveExpression_$0_$0_1", i.AdditiveExpression_$0_$0_2 = "AdditiveExpression_$0_$0_2", i.MultiplicativeExpression = "MultiplicativeExpression", i.MultiplicativeExpression_$0 = "MultiplicativeExpression_$0", i.MultiplicativeExpression_$0_$0_1 = "MultiplicativeExpression_$0_$0_1", i.MultiplicativeExpression_$0_$0_2 = "MultiplicativeExpression_$0_$0_2", i.MultiplicativeExpression_$0_$0_3 = "MultiplicativeExpression_$0_$0_3", i.UnaryExpression_1 = "UnaryExpression_1", i.UnaryExpression_2 = "UnaryExpression_2", i.UnaryExpression_$0_1 = "UnaryExpression_$0_1", i.UnaryExpression_$0_2 = "UnaryExpression_$0_2", i.UnaryExpression_$0_3 = "UnaryExpression_$0_3", i.PrimaryExpression_1 = "PrimaryExpression_1", i.PrimaryExpression_2 = "PrimaryExpression_2", i.PrimaryExpression_3 = "PrimaryExpression_3", i.Reg8 = "Reg8", i.IX = "IX", i.IX_$0 = "IX_$0", i.IX_$0_$0_1 = "IX_$0_$0_1", i.IX_$0_$0_2 = "IX_$0_$0_2", i.IY = "IY", i.IY_$0 = "IY_$0", i.IY_$0_$0_1 = "IY_$0_$0_1", i.IY_$0_$0_2 = "IY_$0_$0_2", i.Instruction_1 = "Instruction_1", i.Instruction_2 = "Instruction_2", i.Instruction_3 = "Instruction_3", i.Instruction_4 = "Instruction_4", i.Instruction_5 = "Instruction_5", i.Instruction_6 = "Instruction_6", i.Instruction_7 = "Instruction_7", i.Instruction_8 = "Instruction_8", i.Instruction_9 = "Instruction_9", i.Instruction_10 = "Instruction_10", i.Instruction_11 = "Instruction_11", i.Instruction_12 = "Instruction_12", i.Instruction_13 = "Instruction_13", i.Instruction_14 = "Instruction_14", i.Instruction_15 = "Instruction_15", i.Instruction_16 = "Instruction_16", i.Load8Instruction_1 = "Load8Instruction_1", i.Load8Instruction_2 = "Load8Instruction_2", i.Load8Instruction_3 = "Load8Instruction_3", i.Load8Instruction_4 = "Load8Instruction_4", i.Load8Instruction_5 = "Load8Instruction_5", i.Load8Instruction_6 = "Load8Instruction_6", i.Load8Instruction_7 = "Load8Instruction_7", i.Load8Instruction_8 = "Load8Instruction_8", i.Load8Instruction_9 = "Load8Instruction_9", i.Load8Instruction_10 = "Load8Instruction_10", i.Load8Instruction_11 = "Load8Instruction_11", i.Load8Instruction_12 = "Load8Instruction_12", i.Load8Instruction_13 = "Load8Instruction_13", i.Load8Instruction_14 = "Load8Instruction_14", i.Load8Instruction_15 = "Load8Instruction_15", i.Load8Instruction_16 = "Load8Instruction_16", i.Load8Instruction_17 = "Load8Instruction_17", i.Load8Instruction_18 = "Load8Instruction_18", i.Load8Instruction_19 = "Load8Instruction_19", i.Load8Instruction_20 = "Load8Instruction_20", i.Load8Instruction_21 = "Load8Instruction_21", i.Load16Instruction_1 = "Load16Instruction_1", i.Load16Instruction_2 = "Load16Instruction_2", i.Load16Instruction_3 = "Load16Instruction_3", i.Load16Instruction_4 = "Load16Instruction_4", i.Load16Instruction_5 = "Load16Instruction_5", i.Load16Instruction_6 = "Load16Instruction_6", i.Load16Instruction_7 = "Load16Instruction_7", i.Load16Instruction_8 = "Load16Instruction_8", i.Load16Instruction_9 = "Load16Instruction_9", i.Load16Instruction_10 = "Load16Instruction_10", i.Load16Instruction_11 = "Load16Instruction_11", i.Load16Instruction_12 = "Load16Instruction_12", i.Load16Instruction_13 = "Load16Instruction_13", i.Load16Instruction_14 = "Load16Instruction_14", i.Load16Instruction_15 = "Load16Instruction_15", i.Load16Instruction_16 = "Load16Instruction_16", i.Load16Instruction_17 = "Load16Instruction_17", i.Load16Instruction_18 = "Load16Instruction_18", i.Load16Instruction_19 = "Load16Instruction_19", i.Load16Instruction_20 = "Load16Instruction_20", i.ExchangeInstruction_1 = "ExchangeInstruction_1", i.ExchangeInstruction_2 = "ExchangeInstruction_2", i.ExchangeInstruction_3 = "ExchangeInstruction_3", i.ExchangeInstruction_4 = "ExchangeInstruction_4", i.ExchangeInstruction_5 = "ExchangeInstruction_5", i.ExchangeInstruction_6 = "ExchangeInstruction_6", i.BlockInstruction_1 = "BlockInstruction_1", i.BlockInstruction_2 = "BlockInstruction_2", i.BlockInstruction_3 = "BlockInstruction_3", i.BlockInstruction_4 = "BlockInstruction_4", i.BlockInstruction_5 = "BlockInstruction_5", i.BlockInstruction_6 = "BlockInstruction_6", i.BlockInstruction_7 = "BlockInstruction_7", i.BlockInstruction_8 = "BlockInstruction_8", i.ArithmeticLogic8Instruction_1 = "ArithmeticLogic8Instruction_1", i.ArithmeticLogic8Instruction_2 = "ArithmeticLogic8Instruction_2", i.ArithmeticLogic8Instruction_3 = "ArithmeticLogic8Instruction_3", i.ArithmeticLogic8Instruction_4 = "ArithmeticLogic8Instruction_4", i.ArithmeticLogic8Instruction_5 = "ArithmeticLogic8Instruction_5", i.ArithmeticLogic8Instruction_6 = "ArithmeticLogic8Instruction_6", i.ArithmeticLogic8Instruction_7 = "ArithmeticLogic8Instruction_7", i.ArithmeticLogic8Instruction_8 = "ArithmeticLogic8Instruction_8", i.ArithmeticLogic8Instruction_9 = "ArithmeticLogic8Instruction_9", i.ArithmeticLogic8Instruction_10 = "ArithmeticLogic8Instruction_10", i.ArithmeticLogic8Instruction_11 = "ArithmeticLogic8Instruction_11", i.ArithmeticLogic8Instruction_12 = "ArithmeticLogic8Instruction_12", i.ArithmeticLogic8Instruction_13 = "ArithmeticLogic8Instruction_13", i.ArithmeticLogic8Instruction_14 = "ArithmeticLogic8Instruction_14", i.ArithmeticLogic8Instruction_15 = "ArithmeticLogic8Instruction_15", i.ArithmeticLogic8Instruction_16 = "ArithmeticLogic8Instruction_16", i.ArithmeticLogic8Instruction_17 = "ArithmeticLogic8Instruction_17", i.ArithmeticLogic8Instruction_18 = "ArithmeticLogic8Instruction_18", i.ArithmeticLogic8Instruction_19 = "ArithmeticLogic8Instruction_19", i.ArithmeticLogic8Instruction_20 = "ArithmeticLogic8Instruction_20", i.ArithmeticLogic8Instruction_21 = "ArithmeticLogic8Instruction_21", i.ArithmeticLogic8Instruction_22 = "ArithmeticLogic8Instruction_22", i.ArithmeticLogic8Instruction_23 = "ArithmeticLogic8Instruction_23", i.ArithmeticLogic8Instruction_24 = "ArithmeticLogic8Instruction_24", i.ArithmeticLogic8Instruction_25 = "ArithmeticLogic8Instruction_25", i.ArithmeticLogic8Instruction_26 = "ArithmeticLogic8Instruction_26", i.ArithmeticLogic8Instruction_27 = "ArithmeticLogic8Instruction_27", i.ArithmeticLogic8Instruction_28 = "ArithmeticLogic8Instruction_28", i.ArithmeticLogic8Instruction_29 = "ArithmeticLogic8Instruction_29", i.ArithmeticLogic8Instruction_30 = "ArithmeticLogic8Instruction_30", i.ArithmeticLogic8Instruction_31 = "ArithmeticLogic8Instruction_31", i.ArithmeticLogic8Instruction_32 = "ArithmeticLogic8Instruction_32", i.ArithmeticLogic8Instruction_33 = "ArithmeticLogic8Instruction_33", i.ArithmeticLogic8Instruction_34 = "ArithmeticLogic8Instruction_34", i.ArithmeticLogic8Instruction_35 = "ArithmeticLogic8Instruction_35", i.ArithmeticLogic8Instruction_36 = "ArithmeticLogic8Instruction_36", i.ArithmeticLogic8Instruction_37 = "ArithmeticLogic8Instruction_37", i.ArithmeticLogic8Instruction_38 = "ArithmeticLogic8Instruction_38", i.ArithmeticLogic8Instruction_39 = "ArithmeticLogic8Instruction_39", i.ArithmeticLogic8Instruction_40 = "ArithmeticLogic8Instruction_40", i.ArithmeticLogic8Instruction_$0 = "ArithmeticLogic8Instruction_$0", i.ArithmeticLogic8Instruction_$1 = "ArithmeticLogic8Instruction_$1", i.ArithmeticLogic8Instruction_$2 = "ArithmeticLogic8Instruction_$2", i.ArithmeticLogic8Instruction_$3 = "ArithmeticLogic8Instruction_$3", i.ArithmeticLogic8Instruction_$4 = "ArithmeticLogic8Instruction_$4", i.ArithmeticLogic8Instruction_$5 = "ArithmeticLogic8Instruction_$5", i.ArithmeticLogic8Instruction_$6 = "ArithmeticLogic8Instruction_$6", i.ArithmeticLogic8Instruction_$7 = "ArithmeticLogic8Instruction_$7", i.ArithmeticLogic8Instruction_$8 = "ArithmeticLogic8Instruction_$8", i.ArithmeticLogic8Instruction_$9 = "ArithmeticLogic8Instruction_$9", i.ArithmeticLogic8Instruction_$10 = "ArithmeticLogic8Instruction_$10", i.ArithmeticLogic8Instruction_$11 = "ArithmeticLogic8Instruction_$11", i.ArithmeticLogic8Instruction_$12 = "ArithmeticLogic8Instruction_$12", i.ArithmeticLogic8Instruction_$13 = "ArithmeticLogic8Instruction_$13", i.ArithmeticLogic8Instruction_$14 = "ArithmeticLogic8Instruction_$14", i.ArithmeticLogic8Instruction_$15 = "ArithmeticLogic8Instruction_$15", i.ArithmeticLogic8Instruction_$16 = "ArithmeticLogic8Instruction_$16", i.ArithmeticLogic8Instruction_$17 = "ArithmeticLogic8Instruction_$17", i.ArithmeticLogic8Instruction_$18 = "ArithmeticLogic8Instruction_$18", i.ArithmeticLogic8Instruction_$19 = "ArithmeticLogic8Instruction_$19", i.ArithmeticLogic8Instruction_$20 = "ArithmeticLogic8Instruction_$20", i.ArithmeticLogic8Instruction_$21 = "ArithmeticLogic8Instruction_$21", i.ArithmeticLogic8Instruction_$22 = "ArithmeticLogic8Instruction_$22", i.ArithmeticLogic8Instruction_$23 = "ArithmeticLogic8Instruction_$23", i.ArithmeticLogic8Instruction_$24 = "ArithmeticLogic8Instruction_$24", i.ArithmeticLogic8Instruction_$25 = "ArithmeticLogic8Instruction_$25", i.ArithmeticLogic8Instruction_$26 = "ArithmeticLogic8Instruction_$26", i.ArithmeticLogic8Instruction_$27 = "ArithmeticLogic8Instruction_$27", i.ArithmeticLogic8Instruction_$28 = "ArithmeticLogic8Instruction_$28", i.ArithmeticLogic8Instruction_$29 = "ArithmeticLogic8Instruction_$29", i.ArithmeticLogic8Instruction_$30 = "ArithmeticLogic8Instruction_$30", i.ArithmeticLogic8Instruction_$31 = "ArithmeticLogic8Instruction_$31", i.ArithmeticLogic8Instruction_$32 = "ArithmeticLogic8Instruction_$32", i.ArithmeticLogic8Instruction_$33 = "ArithmeticLogic8Instruction_$33", i.ArithmeticLogic8Instruction_$34 = "ArithmeticLogic8Instruction_$34", i.ArithmeticLogic8Instruction_$35 = "ArithmeticLogic8Instruction_$35", i.ArithmeticLogic8Instruction_$36 = "ArithmeticLogic8Instruction_$36", i.ArithmeticLogic8Instruction_$37 = "ArithmeticLogic8Instruction_$37", i.ArithmeticLogic8Instruction_$38 = "ArithmeticLogic8Instruction_$38", i.ArithmeticLogic8Instruction_$39 = "ArithmeticLogic8Instruction_$39", i.IncrementDecrement8Instruction_1 = "IncrementDecrement8Instruction_1", i.IncrementDecrement8Instruction_2 = "IncrementDecrement8Instruction_2", i.IncrementDecrement8Instruction_3 = "IncrementDecrement8Instruction_3", i.IncrementDecrement8Instruction_4 = "IncrementDecrement8Instruction_4", i.IncrementDecrement8Instruction_5 = "IncrementDecrement8Instruction_5", i.IncrementDecrement8Instruction_6 = "IncrementDecrement8Instruction_6", i.IncrementDecrement8Instruction_7 = "IncrementDecrement8Instruction_7", i.IncrementDecrement8Instruction_8 = "IncrementDecrement8Instruction_8", i.GeneralPurposeArithmeticInstruction_1 = "GeneralPurposeArithmeticInstruction_1", i.GeneralPurposeArithmeticInstruction_2 = "GeneralPurposeArithmeticInstruction_2", i.GeneralPurposeArithmeticInstruction_3 = "GeneralPurposeArithmeticInstruction_3", i.GeneralPurposeArithmeticInstruction_4 = "GeneralPurposeArithmeticInstruction_4", i.GeneralPurposeArithmeticInstruction_5 = "GeneralPurposeArithmeticInstruction_5", i.CpuControlGroupInstruction_1 = "CpuControlGroupInstruction_1", i.CpuControlGroupInstruction_2 = "CpuControlGroupInstruction_2", i.CpuControlGroupInstruction_3 = "CpuControlGroupInstruction_3", i.CpuControlGroupInstruction_4 = "CpuControlGroupInstruction_4", i.CpuControlGroupInstruction_5 = "CpuControlGroupInstruction_5", i.ArithmeticLogic16Instruction_1 = "ArithmeticLogic16Instruction_1", i.ArithmeticLogic16Instruction_2 = "ArithmeticLogic16Instruction_2", i.ArithmeticLogic16Instruction_3 = "ArithmeticLogic16Instruction_3", i.ArithmeticLogic16Instruction_4 = "ArithmeticLogic16Instruction_4", i.ArithmeticLogic16Instruction_5 = "ArithmeticLogic16Instruction_5", i.ArithmeticLogic16Instruction_6 = "ArithmeticLogic16Instruction_6", i.ArithmeticLogic16Instruction_7 = "ArithmeticLogic16Instruction_7", i.ArithmeticLogic16Instruction_8 = "ArithmeticLogic16Instruction_8", i.ArithmeticLogic16Instruction_9 = "ArithmeticLogic16Instruction_9", i.ArithmeticLogic16Instruction_10 = "ArithmeticLogic16Instruction_10", i.ArithmeticLogic16Instruction_11 = "ArithmeticLogic16Instruction_11", i.RotateShiftInstruction_1 = "RotateShiftInstruction_1", i.RotateShiftInstruction_2 = "RotateShiftInstruction_2", i.RotateShiftInstruction_3 = "RotateShiftInstruction_3", i.RotateShiftInstruction_4 = "RotateShiftInstruction_4", i.RotateShiftInstruction_5 = "RotateShiftInstruction_5", i.RotateShiftInstruction_6 = "RotateShiftInstruction_6", i.RotateShiftInstruction_7 = "RotateShiftInstruction_7", i.RotateShiftInstruction_8 = "RotateShiftInstruction_8", i.RotateShiftInstruction_9 = "RotateShiftInstruction_9", i.RotateShiftInstruction_10 = "RotateShiftInstruction_10", i.RotateShiftInstruction_11 = "RotateShiftInstruction_11", i.RotateShiftInstruction_12 = "RotateShiftInstruction_12", i.RotateShiftInstruction_13 = "RotateShiftInstruction_13", i.RotateShiftInstruction_14 = "RotateShiftInstruction_14", i.RotateShiftInstruction_15 = "RotateShiftInstruction_15", i.RotateShiftInstruction_16 = "RotateShiftInstruction_16", i.RotateShiftInstruction_17 = "RotateShiftInstruction_17", i.RotateShiftInstruction_18 = "RotateShiftInstruction_18", i.RotateShiftInstruction_19 = "RotateShiftInstruction_19", i.RotateShiftInstruction_20 = "RotateShiftInstruction_20", i.RotateShiftInstruction_21 = "RotateShiftInstruction_21", i.RotateShiftInstruction_22 = "RotateShiftInstruction_22", i.RotateShiftInstruction_23 = "RotateShiftInstruction_23", i.RotateShiftInstruction_24 = "RotateShiftInstruction_24", i.RotateShiftInstruction_25 = "RotateShiftInstruction_25", i.RotateShiftInstruction_26 = "RotateShiftInstruction_26", i.RotateShiftInstruction_27 = "RotateShiftInstruction_27", i.RotateShiftInstruction_28 = "RotateShiftInstruction_28", i.RotateShiftInstruction_29 = "RotateShiftInstruction_29", i.RotateShiftInstruction_30 = "RotateShiftInstruction_30", i.RotateShiftInstruction_31 = "RotateShiftInstruction_31", i.RotateShiftInstruction_32 = "RotateShiftInstruction_32", i.RotateShiftInstruction_33 = "RotateShiftInstruction_33", i.RotateShiftInstruction_34 = "RotateShiftInstruction_34", i.BitManipulationInstruction_1 = "BitManipulationInstruction_1", i.BitManipulationInstruction_2 = "BitManipulationInstruction_2", i.BitManipulationInstruction_3 = "BitManipulationInstruction_3", i.BitManipulationInstruction_4 = "BitManipulationInstruction_4", i.BitManipulationInstruction_5 = "BitManipulationInstruction_5", i.BitManipulationInstruction_6 = "BitManipulationInstruction_6", i.BitManipulationInstruction_7 = "BitManipulationInstruction_7", i.BitManipulationInstruction_8 = "BitManipulationInstruction_8", i.BitManipulationInstruction_9 = "BitManipulationInstruction_9", i.BitManipulationInstruction_10 = "BitManipulationInstruction_10", i.BitManipulationInstruction_11 = "BitManipulationInstruction_11", i.BitManipulationInstruction_12 = "BitManipulationInstruction_12", i.Offset_1 = "Offset_1", i.Offset_2 = "Offset_2", i.JumpInstruction_1 = "JumpInstruction_1", i.JumpInstruction_2 = "JumpInstruction_2", i.JumpInstruction_3 = "JumpInstruction_3", i.JumpInstruction_4 = "JumpInstruction_4", i.JumpInstruction_5 = "JumpInstruction_5", i.JumpInstruction_6 = "JumpInstruction_6", i.JumpInstruction_7 = "JumpInstruction_7", i.JumpInstruction_8 = "JumpInstruction_8", i.JumpInstruction_9 = "JumpInstruction_9", i.JumpInstruction_10 = "JumpInstruction_10", i.JumpInstruction_11 = "JumpInstruction_11", i.CallInstruction_1 = "CallInstruction_1", i.CallInstruction_2 = "CallInstruction_2", i.ReturnInstruction_1 = "ReturnInstruction_1", i.ReturnInstruction_2 = "ReturnInstruction_2", i.ReturnInstruction_3 = "ReturnInstruction_3", i.ReturnInstruction_4 = "ReturnInstruction_4", i.ReturnInstruction_5 = "ReturnInstruction_5", i.InputInstruction_1 = "InputInstruction_1", i.InputInstruction_2 = "InputInstruction_2", i.InputInstruction_3 = "InputInstruction_3", i.InputInstruction_4 = "InputInstruction_4", i.InputInstruction_5 = "InputInstruction_5", i.InputInstruction_6 = "InputInstruction_6", i.OutputInstruction_1 = "OutputInstruction_1", i.OutputInstruction_2 = "OutputInstruction_2", i.OutputInstruction_3 = "OutputInstruction_3", i.OutputInstruction_4 = "OutputInstruction_4", i.OutputInstruction_5 = "OutputInstruction_5", i.OutputInstruction_6 = "OutputInstruction_6", i.ByteDirective_1 = "ByteDirective_1", i.ByteDirective_2 = "ByteDirective_2", i.ByteDirective_3 = "ByteDirective_3", i.ByteDirective_4 = "ByteDirective_4", i.ByteDirective_5 = "ByteDirective_5", i.WordDirective_1 = "WordDirective_1", i.WordDirective_2 = "WordDirective_2", i.WordDirective_3 = "WordDirective_3", i.BlockDirective_1 = "BlockDirective_1", i.BlockDirective_2 = "BlockDirective_2", i.BlockDirective_3 = "BlockDirective_3", i.ByteValue_1 = "ByteValue_1", i.ByteValue_2 = "ByteValue_2", i.ByteValue_3 = "ByteValue_3", i.WordValue = "WordValue", i.DataDirective_1 = "DataDirective_1", i.DataDirective_2 = "DataDirective_2", i.DataDirective_3 = "DataDirective_3", i.DataDirective_$0 = "DataDirective_$0", i.DataDirective_$1 = "DataDirective_$1", i.DataDirective_$2 = "DataDirective_$2", i.EscapeSequence_1 = "EscapeSequence_1", i.EscapeSequence_2 = "EscapeSequence_2", i.EscapeSequence_3 = "EscapeSequence_3", i.SimpleEscapeSequence = "SimpleEscapeSequence", i.SimpleEscapeSequence_$0_1 = "SimpleEscapeSequence_$0_1", i.SimpleEscapeSequence_$0_2 = "SimpleEscapeSequence_$0_2", i.OctalEscapeSequence = "OctalEscapeSequence", i.HexadecimalEscapeSequence = "HexadecimalEscapeSequence", i.NoQuoteChar = "NoQuoteChar", i.NoDoubleQuoteChar = "NoDoubleQuoteChar", i.QuottedStr = "QuottedStr", i.QuottedStr_$0_1 = "QuottedStr_$0_1", i.QuottedStr_$0_2 = "QuottedStr_$0_2", i.DoubleQuottedStr = "DoubleQuottedStr", i.DoubleQuottedStr_$0_1 = "DoubleQuottedStr_$0_1", i.DoubleQuottedStr_$0_2 = "DoubleQuottedStr_$0_2", i.Comment = "Comment", i.OriginDirective = "OriginDirective", i.Filename_1 = "Filename_1", i.Filename_2 = "Filename_2", i.IncludeDirective = "IncludeDirective", i.OutputDirective = "OutputDirective", i.OutputDirective_$0 = "OutputDirective_$0", i.DeviceDirective = "DeviceDirective", i.EndDirective = "EndDirective", i.$EOF = "$EOF", i))(x || {});
|
|
982
982
|
class Ut {
|
|
@@ -1194,12 +1194,12 @@ class Nn {
|
|
|
1194
1194
|
this.kind = "Load8Instruction_14", this.elements = (() => [2])();
|
|
1195
1195
|
}
|
|
1196
1196
|
}
|
|
1197
|
-
class
|
|
1197
|
+
class Pn {
|
|
1198
1198
|
constructor() {
|
|
1199
1199
|
this.kind = "Load8Instruction_15", this.elements = (() => [18])();
|
|
1200
1200
|
}
|
|
1201
1201
|
}
|
|
1202
|
-
class
|
|
1202
|
+
class Mn {
|
|
1203
1203
|
constructor(t, n) {
|
|
1204
1204
|
this.kind = "Load8Instruction_16", this.pos = t, this.ee = n, this.elements = (() => [50, I(t, n)])();
|
|
1205
1205
|
}
|
|
@@ -1301,7 +1301,7 @@ class te {
|
|
|
1301
1301
|
}
|
|
1302
1302
|
class ne {
|
|
1303
1303
|
constructor(t) {
|
|
1304
|
-
this.kind = "Load16Instruction_15", this.qq = t, this.elements = (() => [197 |
|
|
1304
|
+
this.kind = "Load16Instruction_15", this.qq = t, this.elements = (() => [197 | M(t, 4)])();
|
|
1305
1305
|
}
|
|
1306
1306
|
}
|
|
1307
1307
|
class ee {
|
|
@@ -1316,7 +1316,7 @@ class ie {
|
|
|
1316
1316
|
}
|
|
1317
1317
|
class se {
|
|
1318
1318
|
constructor(t) {
|
|
1319
|
-
this.kind = "Load16Instruction_18", this.qq = t, this.elements = (() => [193 |
|
|
1319
|
+
this.kind = "Load16Instruction_18", this.qq = t, this.elements = (() => [193 | M(t, 4)])();
|
|
1320
1320
|
}
|
|
1321
1321
|
}
|
|
1322
1322
|
class re {
|
|
@@ -1464,12 +1464,12 @@ class Ne {
|
|
|
1464
1464
|
this.kind = "ArithmeticLogic8Instruction_13", this.i = t, this.elements = (() => [253, 150, c(t.offset)])();
|
|
1465
1465
|
}
|
|
1466
1466
|
}
|
|
1467
|
-
class
|
|
1467
|
+
class Pe {
|
|
1468
1468
|
constructor(t) {
|
|
1469
1469
|
this.kind = "ArithmeticLogic8Instruction_14", this.r = t, this.elements = (() => [144 | _(t)])();
|
|
1470
1470
|
}
|
|
1471
1471
|
}
|
|
1472
|
-
class
|
|
1472
|
+
class Me {
|
|
1473
1473
|
constructor(t, n) {
|
|
1474
1474
|
this.kind = "ArithmeticLogic8Instruction_15", this.pos = t, this.n = n, this.elements = (() => [214, f(t, n)])();
|
|
1475
1475
|
}
|
|
@@ -1734,12 +1734,12 @@ class Ni {
|
|
|
1734
1734
|
this.kind = "ArithmeticLogic16Instruction_9", this.ss = t, this.elements = (() => [11 | k(t, 4)])();
|
|
1735
1735
|
}
|
|
1736
1736
|
}
|
|
1737
|
-
class
|
|
1737
|
+
class Pi {
|
|
1738
1738
|
constructor() {
|
|
1739
1739
|
this.kind = "ArithmeticLogic16Instruction_10", this.elements = (() => [221, 43])();
|
|
1740
1740
|
}
|
|
1741
1741
|
}
|
|
1742
|
-
class
|
|
1742
|
+
class Mi {
|
|
1743
1743
|
constructor() {
|
|
1744
1744
|
this.kind = "ArithmeticLogic16Instruction_11", this.elements = (() => [253, 43])();
|
|
1745
1745
|
}
|
|
@@ -2004,12 +2004,12 @@ class Ns {
|
|
|
2004
2004
|
this.kind = "JumpInstruction_4", this.pos = t, this.ee = n, this.elements = (() => [195, I(t, n)])();
|
|
2005
2005
|
}
|
|
2006
2006
|
}
|
|
2007
|
-
class
|
|
2007
|
+
class Ps {
|
|
2008
2008
|
constructor(t, n, e) {
|
|
2009
2009
|
this.kind = "JumpInstruction_5", this.cc = t, this.pos = n, this.ee = e, this.elements = (() => [194 | b(t, 3), I(n, e)])();
|
|
2010
2010
|
}
|
|
2011
2011
|
}
|
|
2012
|
-
class
|
|
2012
|
+
class Ms {
|
|
2013
2013
|
constructor(t, n) {
|
|
2014
2014
|
this.kind = "JumpInstruction_6", this.pos = t, this.label = n, this.elements = (() => [v(), y(t, n.name)])();
|
|
2015
2015
|
}
|
|
@@ -2257,25 +2257,25 @@ class Er {
|
|
|
2257
2257
|
]);
|
|
2258
2258
|
}
|
|
2259
2259
|
matchr_1(t, n) {
|
|
2260
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n);
|
|
2260
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n);
|
|
2261
2261
|
}
|
|
2262
2262
|
matchr_2(t, n) {
|
|
2263
|
-
return this.regexAccept(String.raw`(?:b)`, t + 1, n);
|
|
2263
|
+
return this.regexAccept(String.raw`(?:b)`, "", t + 1, n);
|
|
2264
2264
|
}
|
|
2265
2265
|
matchr_3(t, n) {
|
|
2266
|
-
return this.regexAccept(String.raw`(?:c)`, t + 1, n);
|
|
2266
|
+
return this.regexAccept(String.raw`(?:c)`, "", t + 1, n);
|
|
2267
2267
|
}
|
|
2268
2268
|
matchr_4(t, n) {
|
|
2269
|
-
return this.regexAccept(String.raw`(?:d)`, t + 1, n);
|
|
2269
|
+
return this.regexAccept(String.raw`(?:d)`, "", t + 1, n);
|
|
2270
2270
|
}
|
|
2271
2271
|
matchr_5(t, n) {
|
|
2272
|
-
return this.regexAccept(String.raw`(?:e)`, t + 1, n);
|
|
2272
|
+
return this.regexAccept(String.raw`(?:e)`, "", t + 1, n);
|
|
2273
2273
|
}
|
|
2274
2274
|
matchr_6(t, n) {
|
|
2275
|
-
return this.regexAccept(String.raw`(?:h)`, t + 1, n);
|
|
2275
|
+
return this.regexAccept(String.raw`(?:h)`, "", t + 1, n);
|
|
2276
2276
|
}
|
|
2277
2277
|
matchr_7(t, n) {
|
|
2278
|
-
return this.regexAccept(String.raw`(?:l)`, t + 1, n);
|
|
2278
|
+
return this.regexAccept(String.raw`(?:l)`, "", t + 1, n);
|
|
2279
2279
|
}
|
|
2280
2280
|
matchdd(t, n) {
|
|
2281
2281
|
return this.choice([
|
|
@@ -2286,16 +2286,16 @@ class Er {
|
|
|
2286
2286
|
]);
|
|
2287
2287
|
}
|
|
2288
2288
|
matchdd_1(t, n) {
|
|
2289
|
-
return this.regexAccept(String.raw`(?:bc)`, t + 1, n);
|
|
2289
|
+
return this.regexAccept(String.raw`(?:bc)`, "", t + 1, n);
|
|
2290
2290
|
}
|
|
2291
2291
|
matchdd_2(t, n) {
|
|
2292
|
-
return this.regexAccept(String.raw`(?:de)`, t + 1, n);
|
|
2292
|
+
return this.regexAccept(String.raw`(?:de)`, "", t + 1, n);
|
|
2293
2293
|
}
|
|
2294
2294
|
matchdd_3(t, n) {
|
|
2295
|
-
return this.regexAccept(String.raw`(?:hl)`, t + 1, n);
|
|
2295
|
+
return this.regexAccept(String.raw`(?:hl)`, "", t + 1, n);
|
|
2296
2296
|
}
|
|
2297
2297
|
matchdd_4(t, n) {
|
|
2298
|
-
return this.regexAccept(String.raw`(?:sp)`, t + 1, n);
|
|
2298
|
+
return this.regexAccept(String.raw`(?:sp)`, "", t + 1, n);
|
|
2299
2299
|
}
|
|
2300
2300
|
matchss(t, n) {
|
|
2301
2301
|
return this.matchdd(t + 1, n);
|
|
@@ -2309,16 +2309,16 @@ class Er {
|
|
|
2309
2309
|
]);
|
|
2310
2310
|
}
|
|
2311
2311
|
matchqq_1(t, n) {
|
|
2312
|
-
return this.regexAccept(String.raw`(?:bc)`, t + 1, n);
|
|
2312
|
+
return this.regexAccept(String.raw`(?:bc)`, "", t + 1, n);
|
|
2313
2313
|
}
|
|
2314
2314
|
matchqq_2(t, n) {
|
|
2315
|
-
return this.regexAccept(String.raw`(?:de)`, t + 1, n);
|
|
2315
|
+
return this.regexAccept(String.raw`(?:de)`, "", t + 1, n);
|
|
2316
2316
|
}
|
|
2317
2317
|
matchqq_3(t, n) {
|
|
2318
|
-
return this.regexAccept(String.raw`(?:hl)`, t + 1, n);
|
|
2318
|
+
return this.regexAccept(String.raw`(?:hl)`, "", t + 1, n);
|
|
2319
2319
|
}
|
|
2320
2320
|
matchqq_4(t, n) {
|
|
2321
|
-
return this.regexAccept(String.raw`(?:af)`, t + 1, n);
|
|
2321
|
+
return this.regexAccept(String.raw`(?:af)`, "", t + 1, n);
|
|
2322
2322
|
}
|
|
2323
2323
|
matchpp(t, n) {
|
|
2324
2324
|
return this.choice([
|
|
@@ -2329,16 +2329,16 @@ class Er {
|
|
|
2329
2329
|
]);
|
|
2330
2330
|
}
|
|
2331
2331
|
matchpp_1(t, n) {
|
|
2332
|
-
return this.regexAccept(String.raw`(?:bc)`, t + 1, n);
|
|
2332
|
+
return this.regexAccept(String.raw`(?:bc)`, "", t + 1, n);
|
|
2333
2333
|
}
|
|
2334
2334
|
matchpp_2(t, n) {
|
|
2335
|
-
return this.regexAccept(String.raw`(?:de)`, t + 1, n);
|
|
2335
|
+
return this.regexAccept(String.raw`(?:de)`, "", t + 1, n);
|
|
2336
2336
|
}
|
|
2337
2337
|
matchpp_3(t, n) {
|
|
2338
|
-
return this.regexAccept(String.raw`(?:ix)`, t + 1, n);
|
|
2338
|
+
return this.regexAccept(String.raw`(?:ix)`, "", t + 1, n);
|
|
2339
2339
|
}
|
|
2340
2340
|
matchpp_4(t, n) {
|
|
2341
|
-
return this.regexAccept(String.raw`(?:sp)`, t + 1, n);
|
|
2341
|
+
return this.regexAccept(String.raw`(?:sp)`, "", t + 1, n);
|
|
2342
2342
|
}
|
|
2343
2343
|
matchrr(t, n) {
|
|
2344
2344
|
return this.choice([
|
|
@@ -2349,16 +2349,16 @@ class Er {
|
|
|
2349
2349
|
]);
|
|
2350
2350
|
}
|
|
2351
2351
|
matchrr_1(t, n) {
|
|
2352
|
-
return this.regexAccept(String.raw`(?:bc)`, t + 1, n);
|
|
2352
|
+
return this.regexAccept(String.raw`(?:bc)`, "", t + 1, n);
|
|
2353
2353
|
}
|
|
2354
2354
|
matchrr_2(t, n) {
|
|
2355
|
-
return this.regexAccept(String.raw`(?:de)`, t + 1, n);
|
|
2355
|
+
return this.regexAccept(String.raw`(?:de)`, "", t + 1, n);
|
|
2356
2356
|
}
|
|
2357
2357
|
matchrr_3(t, n) {
|
|
2358
|
-
return this.regexAccept(String.raw`(?:iy)`, t + 1, n);
|
|
2358
|
+
return this.regexAccept(String.raw`(?:iy)`, "", t + 1, n);
|
|
2359
2359
|
}
|
|
2360
2360
|
matchrr_4(t, n) {
|
|
2361
|
-
return this.regexAccept(String.raw`(?:sp)`, t + 1, n);
|
|
2361
|
+
return this.regexAccept(String.raw`(?:sp)`, "", t + 1, n);
|
|
2362
2362
|
}
|
|
2363
2363
|
matchn(t, n) {
|
|
2364
2364
|
return this.choice([
|
|
@@ -2453,7 +2453,7 @@ class Er {
|
|
|
2453
2453
|
t,
|
|
2454
2454
|
() => {
|
|
2455
2455
|
let e, s = null;
|
|
2456
|
-
return (e = this.regexAccept(String.raw`(?:[0-9]+)`, t + 1, n)) !== null && (this.regexAccept(String.raw`(?:d)`, t + 1, n) || !0) && (s = { kind: "decimal", raw: e }), s;
|
|
2456
|
+
return (e = this.regexAccept(String.raw`(?:[0-9]+)`, "", t + 1, n)) !== null && (this.regexAccept(String.raw`(?:d)`, "", t + 1, n) || !0) && (s = { kind: "decimal", raw: e }), s;
|
|
2457
2457
|
}
|
|
2458
2458
|
);
|
|
2459
2459
|
}
|
|
@@ -2468,7 +2468,7 @@ class Er {
|
|
|
2468
2468
|
t,
|
|
2469
2469
|
() => {
|
|
2470
2470
|
let e, s = null;
|
|
2471
|
-
return this.matchbinary_$0(t + 1, n) !== null && (e = this.regexAccept(String.raw`(?:[0-1]+)`, t + 1, n)) !== null && (s = { kind: "binary_1", raw: e }), s;
|
|
2471
|
+
return this.matchbinary_$0(t + 1, n) !== null && (e = this.regexAccept(String.raw`(?:[0-1]+)`, "", t + 1, n)) !== null && (s = { kind: "binary_1", raw: e }), s;
|
|
2472
2472
|
}
|
|
2473
2473
|
);
|
|
2474
2474
|
}
|
|
@@ -2477,7 +2477,7 @@ class Er {
|
|
|
2477
2477
|
t,
|
|
2478
2478
|
() => {
|
|
2479
2479
|
let e, s = null;
|
|
2480
|
-
return (e = this.regexAccept(String.raw`(?:[0-1]+)`, t + 1, n)) !== null && this.regexAccept(String.raw`(?:b)`, t + 1, n) !== null && (s = { kind: "binary_2", raw: e }), s;
|
|
2480
|
+
return (e = this.regexAccept(String.raw`(?:[0-1]+)`, "", t + 1, n)) !== null && this.regexAccept(String.raw`(?:b)`, "", t + 1, n) !== null && (s = { kind: "binary_2", raw: e }), s;
|
|
2481
2481
|
}
|
|
2482
2482
|
);
|
|
2483
2483
|
}
|
|
@@ -2488,10 +2488,10 @@ class Er {
|
|
|
2488
2488
|
]);
|
|
2489
2489
|
}
|
|
2490
2490
|
matchbinary_$0_1(t, n) {
|
|
2491
|
-
return this.regexAccept(String.raw`(?:0b)`, t + 1, n);
|
|
2491
|
+
return this.regexAccept(String.raw`(?:0b)`, "", t + 1, n);
|
|
2492
2492
|
}
|
|
2493
2493
|
matchbinary_$0_2(t, n) {
|
|
2494
|
-
return this.regexAccept(String.raw`(?:%)`, t + 1, n);
|
|
2494
|
+
return this.regexAccept(String.raw`(?:%)`, "", t + 1, n);
|
|
2495
2495
|
}
|
|
2496
2496
|
matchoctal(t, n) {
|
|
2497
2497
|
return this.choice([
|
|
@@ -2504,7 +2504,7 @@ class Er {
|
|
|
2504
2504
|
t,
|
|
2505
2505
|
() => {
|
|
2506
2506
|
let e, s = null;
|
|
2507
|
-
return this.matchoctal_$0(t + 1, n) !== null && (e = this.regexAccept(String.raw`(?:[0-7]+)`, t + 1, n)) !== null && (s = { kind: "octal_1", raw: e }), s;
|
|
2507
|
+
return this.matchoctal_$0(t + 1, n) !== null && (e = this.regexAccept(String.raw`(?:[0-7]+)`, "", t + 1, n)) !== null && (s = { kind: "octal_1", raw: e }), s;
|
|
2508
2508
|
}
|
|
2509
2509
|
);
|
|
2510
2510
|
}
|
|
@@ -2513,7 +2513,7 @@ class Er {
|
|
|
2513
2513
|
t,
|
|
2514
2514
|
() => {
|
|
2515
2515
|
let e, s = null;
|
|
2516
|
-
return (e = this.regexAccept(String.raw`(?:[0-7]+)`, t + 1, n)) !== null && this.matchoctal_$1(t + 1, n) !== null && (s = { kind: "octal_2", raw: e }), s;
|
|
2516
|
+
return (e = this.regexAccept(String.raw`(?:[0-7]+)`, "", t + 1, n)) !== null && this.matchoctal_$1(t + 1, n) !== null && (s = { kind: "octal_2", raw: e }), s;
|
|
2517
2517
|
}
|
|
2518
2518
|
);
|
|
2519
2519
|
}
|
|
@@ -2525,13 +2525,13 @@ class Er {
|
|
|
2525
2525
|
]);
|
|
2526
2526
|
}
|
|
2527
2527
|
matchoctal_$0_1(t, n) {
|
|
2528
|
-
return this.regexAccept(String.raw`(?:0q)`, t + 1, n);
|
|
2528
|
+
return this.regexAccept(String.raw`(?:0q)`, "", t + 1, n);
|
|
2529
2529
|
}
|
|
2530
2530
|
matchoctal_$0_2(t, n) {
|
|
2531
|
-
return this.regexAccept(String.raw`(?:0o)`, t + 1, n);
|
|
2531
|
+
return this.regexAccept(String.raw`(?:0o)`, "", t + 1, n);
|
|
2532
2532
|
}
|
|
2533
2533
|
matchoctal_$0_3(t, n) {
|
|
2534
|
-
return this.regexAccept(String.raw`(?:@)`, t + 1, n);
|
|
2534
|
+
return this.regexAccept(String.raw`(?:@)`, "", t + 1, n);
|
|
2535
2535
|
}
|
|
2536
2536
|
matchoctal_$1(t, n) {
|
|
2537
2537
|
return this.choice([
|
|
@@ -2540,10 +2540,10 @@ class Er {
|
|
|
2540
2540
|
]);
|
|
2541
2541
|
}
|
|
2542
2542
|
matchoctal_$1_1(t, n) {
|
|
2543
|
-
return this.regexAccept(String.raw`(?:q)`, t + 1, n);
|
|
2543
|
+
return this.regexAccept(String.raw`(?:q)`, "", t + 1, n);
|
|
2544
2544
|
}
|
|
2545
2545
|
matchoctal_$1_2(t, n) {
|
|
2546
|
-
return this.regexAccept(String.raw`(?:o)`, t + 1, n);
|
|
2546
|
+
return this.regexAccept(String.raw`(?:o)`, "", t + 1, n);
|
|
2547
2547
|
}
|
|
2548
2548
|
matchhexadecimal(t, n) {
|
|
2549
2549
|
return this.choice([
|
|
@@ -2556,7 +2556,7 @@ class Er {
|
|
|
2556
2556
|
t,
|
|
2557
2557
|
() => {
|
|
2558
2558
|
let e, s = null;
|
|
2559
|
-
return this.matchhexadecimal_$0(t + 1, n) !== null && (e = this.regexAccept(String.raw`(?:[0-9a-f]+)`, t + 1, n)) !== null && (s = { kind: "hexadecimal_1", raw: e }), s;
|
|
2559
|
+
return this.matchhexadecimal_$0(t + 1, n) !== null && (e = this.regexAccept(String.raw`(?:[0-9a-f]+)`, "", t + 1, n)) !== null && (s = { kind: "hexadecimal_1", raw: e }), s;
|
|
2560
2560
|
}
|
|
2561
2561
|
);
|
|
2562
2562
|
}
|
|
@@ -2565,7 +2565,7 @@ class Er {
|
|
|
2565
2565
|
t,
|
|
2566
2566
|
() => {
|
|
2567
2567
|
let e, s = null;
|
|
2568
|
-
return (e = this.regexAccept(String.raw`(?:[0-9a-f]+)`, t + 1, n)) !== null && this.regexAccept(String.raw`(?:h)`, t + 1, n) !== null && this.negate(() => this.regexAccept(String.raw`(?:[0-9a-z])`, t + 1, n)) !== null && (s = { kind: "hexadecimal_2", raw: e }), s;
|
|
2568
|
+
return (e = this.regexAccept(String.raw`(?:[0-9a-f]+)`, "", t + 1, n)) !== null && this.regexAccept(String.raw`(?:h)`, "", t + 1, n) !== null && this.negate(() => this.regexAccept(String.raw`(?:[0-9a-z])`, "", t + 1, n)) !== null && (s = { kind: "hexadecimal_2", raw: e }), s;
|
|
2569
2569
|
}
|
|
2570
2570
|
);
|
|
2571
2571
|
}
|
|
@@ -2577,13 +2577,13 @@ class Er {
|
|
|
2577
2577
|
]);
|
|
2578
2578
|
}
|
|
2579
2579
|
matchhexadecimal_$0_1(t, n) {
|
|
2580
|
-
return this.regexAccept(String.raw`(?:0x)`, t + 1, n);
|
|
2580
|
+
return this.regexAccept(String.raw`(?:0x)`, "", t + 1, n);
|
|
2581
2581
|
}
|
|
2582
2582
|
matchhexadecimal_$0_2(t, n) {
|
|
2583
|
-
return this.regexAccept(String.raw`(?:\$)`, t + 1, n);
|
|
2583
|
+
return this.regexAccept(String.raw`(?:\$)`, "", t + 1, n);
|
|
2584
2584
|
}
|
|
2585
2585
|
matchhexadecimal_$0_3(t, n) {
|
|
2586
|
-
return this.regexAccept(String.raw`(?:#)`, t + 1, n);
|
|
2586
|
+
return this.regexAccept(String.raw`(?:#)`, "", t + 1, n);
|
|
2587
2587
|
}
|
|
2588
2588
|
matchd(t, n) {
|
|
2589
2589
|
return this.matchn(t + 1, n);
|
|
@@ -2599,7 +2599,7 @@ class Er {
|
|
|
2599
2599
|
t,
|
|
2600
2600
|
() => {
|
|
2601
2601
|
let e, s = null;
|
|
2602
|
-
return (e = this.regexAccept(String.raw`(?:[0-7])`, t + 1, n)) !== null && (s = new dt(e)), s;
|
|
2602
|
+
return (e = this.regexAccept(String.raw`(?:[0-7])`, "", t + 1, n)) !== null && (s = new dt(e)), s;
|
|
2603
2603
|
}
|
|
2604
2604
|
);
|
|
2605
2605
|
}
|
|
@@ -2617,31 +2617,31 @@ class Er {
|
|
|
2617
2617
|
]);
|
|
2618
2618
|
}
|
|
2619
2619
|
matchcc_1(t, n) {
|
|
2620
|
-
return this.regexAccept(String.raw`(?:nz)`, t + 1, n);
|
|
2620
|
+
return this.regexAccept(String.raw`(?:nz)`, "", t + 1, n);
|
|
2621
2621
|
}
|
|
2622
2622
|
matchcc_2(t, n) {
|
|
2623
|
-
return this.regexAccept(String.raw`(?:z)`, t + 1, n);
|
|
2623
|
+
return this.regexAccept(String.raw`(?:z)`, "", t + 1, n);
|
|
2624
2624
|
}
|
|
2625
2625
|
matchcc_3(t, n) {
|
|
2626
|
-
return this.regexAccept(String.raw`(?:nc)`, t + 1, n);
|
|
2626
|
+
return this.regexAccept(String.raw`(?:nc)`, "", t + 1, n);
|
|
2627
2627
|
}
|
|
2628
2628
|
matchcc_4(t, n) {
|
|
2629
|
-
return this.regexAccept(String.raw`(?:c)`, t + 1, n);
|
|
2629
|
+
return this.regexAccept(String.raw`(?:c)`, "", t + 1, n);
|
|
2630
2630
|
}
|
|
2631
2631
|
matchcc_5(t, n) {
|
|
2632
|
-
return this.regexAccept(String.raw`(?:po)`, t + 1, n);
|
|
2632
|
+
return this.regexAccept(String.raw`(?:po)`, "", t + 1, n);
|
|
2633
2633
|
}
|
|
2634
2634
|
matchcc_6(t, n) {
|
|
2635
|
-
return this.regexAccept(String.raw`(?:pe)`, t + 1, n);
|
|
2635
|
+
return this.regexAccept(String.raw`(?:pe)`, "", t + 1, n);
|
|
2636
2636
|
}
|
|
2637
2637
|
matchcc_7(t, n) {
|
|
2638
|
-
return this.regexAccept(String.raw`(?:p)`, t + 1, n);
|
|
2638
|
+
return this.regexAccept(String.raw`(?:p)`, "", t + 1, n);
|
|
2639
2639
|
}
|
|
2640
2640
|
matchcc_8(t, n) {
|
|
2641
|
-
return this.regexAccept(String.raw`(?:m)`, t + 1, n);
|
|
2641
|
+
return this.regexAccept(String.raw`(?:m)`, "", t + 1, n);
|
|
2642
2642
|
}
|
|
2643
2643
|
matchcc_9(t, n) {
|
|
2644
|
-
return this.regexAccept(String.raw`(?:s)`, t + 1, n);
|
|
2644
|
+
return this.regexAccept(String.raw`(?:s)`, "", t + 1, n);
|
|
2645
2645
|
}
|
|
2646
2646
|
matchjj(t, n) {
|
|
2647
2647
|
return this.choice([
|
|
@@ -2652,31 +2652,31 @@ class Er {
|
|
|
2652
2652
|
]);
|
|
2653
2653
|
}
|
|
2654
2654
|
matchjj_1(t, n) {
|
|
2655
|
-
return this.regexAccept(String.raw`(?:c)`, t + 1, n);
|
|
2655
|
+
return this.regexAccept(String.raw`(?:c)`, "", t + 1, n);
|
|
2656
2656
|
}
|
|
2657
2657
|
matchjj_2(t, n) {
|
|
2658
|
-
return this.regexAccept(String.raw`(?:nc)`, t + 1, n);
|
|
2658
|
+
return this.regexAccept(String.raw`(?:nc)`, "", t + 1, n);
|
|
2659
2659
|
}
|
|
2660
2660
|
matchjj_3(t, n) {
|
|
2661
|
-
return this.regexAccept(String.raw`(?:z)`, t + 1, n);
|
|
2661
|
+
return this.regexAccept(String.raw`(?:z)`, "", t + 1, n);
|
|
2662
2662
|
}
|
|
2663
2663
|
matchjj_4(t, n) {
|
|
2664
|
-
return this.regexAccept(String.raw`(?:nz)`, t + 1, n);
|
|
2664
|
+
return this.regexAccept(String.raw`(?:nz)`, "", t + 1, n);
|
|
2665
2665
|
}
|
|
2666
2666
|
match__(t, n) {
|
|
2667
|
-
return this.regexAccept(String.raw`(?:[ \t]+)`, t + 1, n);
|
|
2667
|
+
return this.regexAccept(String.raw`(?:[ \t]+)`, "", t + 1, n);
|
|
2668
2668
|
}
|
|
2669
2669
|
match_(t, n) {
|
|
2670
|
-
return this.regexAccept(String.raw`(?:[ \t]*)`, t + 1, n);
|
|
2670
|
+
return this.regexAccept(String.raw`(?:[ \t]*)`, "", t + 1, n);
|
|
2671
2671
|
}
|
|
2672
2672
|
matcheos(t, n) {
|
|
2673
|
-
return this.regexAccept(String.raw`(?:[ \t]*(;|\r\n|\n|//))`, t + 1, n);
|
|
2673
|
+
return this.regexAccept(String.raw`(?:[ \t]*(;|\r\n|\n|//))`, "", t + 1, n);
|
|
2674
2674
|
}
|
|
2675
2675
|
matcheol(t, n) {
|
|
2676
|
-
return this.regexAccept(String.raw`(?:\r\n|\n)`, t + 1, n);
|
|
2676
|
+
return this.regexAccept(String.raw`(?:\r\n|\n)`, "", t + 1, n);
|
|
2677
2677
|
}
|
|
2678
2678
|
matchLines(t, n) {
|
|
2679
|
-
return this.loop(() => this.matchLine(t + 1, n),
|
|
2679
|
+
return this.loop(() => this.matchLine(t + 1, n), 0, -1);
|
|
2680
2680
|
}
|
|
2681
2681
|
matchLine(t, n) {
|
|
2682
2682
|
return this.choice([
|
|
@@ -2747,7 +2747,7 @@ class Er {
|
|
|
2747
2747
|
t,
|
|
2748
2748
|
() => {
|
|
2749
2749
|
let e, s = null;
|
|
2750
|
-
return this.regexAccept(String.raw`(?:\.?equ|eq|=)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchExpression(t + 1, n)) !== null && (s = { kind: "EqualDirective", e }), s;
|
|
2750
|
+
return this.regexAccept(String.raw`(?:\.?equ|eq|=)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchExpression(t + 1, n)) !== null && (s = { kind: "EqualDirective", e }), s;
|
|
2751
2751
|
}
|
|
2752
2752
|
);
|
|
2753
2753
|
}
|
|
@@ -2815,26 +2815,26 @@ class Er {
|
|
|
2815
2815
|
]);
|
|
2816
2816
|
}
|
|
2817
2817
|
matchForbiddenNames_1(t, n) {
|
|
2818
|
-
return this.regexAccept(String.raw`(?:\.?block|\.?equ|\.?org|\.?include|\.?output|\.?device|\.?end|\.?byte)`, t + 1, n);
|
|
2818
|
+
return this.regexAccept(String.raw`(?:\.?block|\.?equ|\.?org|\.?include|\.?output|\.?device|\.?end|\.?byte)`, "", t + 1, n);
|
|
2819
2819
|
}
|
|
2820
2820
|
matchForbiddenNames_2(t, n) {
|
|
2821
|
-
return this.regexAccept(String.raw`(?:call|cpdr|cpir|defb|defm|defs|defw|djnz|eq|halt|indr|inir|lddr|ldir|otdr|otir|outd|outi|push|reti|retn|rlca|rrca|\.?word)`, t + 1, n);
|
|
2821
|
+
return this.regexAccept(String.raw`(?:call|cpdr|cpir|defb|defm|defs|defw|djnz|eq|halt|indr|inir|lddr|ldir|otdr|otir|outd|outi|push|reti|retn|rlca|rrca|\.?word)`, "", t + 1, n);
|
|
2822
2822
|
}
|
|
2823
2823
|
matchForbiddenNames_3(t, n) {
|
|
2824
|
-
return this.regexAccept(String.raw`(?:adc|add|and|bit|ccf|cpd|cpi|cpl|daa|dec|exx|inc|ind|ini|ldd|ldi|neg|nop|org|out|pop|res|ret|rla)`, t + 1, n);
|
|
2824
|
+
return this.regexAccept(String.raw`(?:adc|add|and|bit|ccf|cpd|cpi|cpl|daa|dec|exx|inc|ind|ini|ldd|ldi|neg|nop|org|out|pop|res|ret|rla)`, "", t + 1, n);
|
|
2825
2825
|
}
|
|
2826
2826
|
matchForbiddenNames_4(t, n) {
|
|
2827
|
-
return this.regexAccept(String.raw`(?:rlc|rld|rra|rrc|rrd|rst|sbc|scf|set|sla|sra|srl|sub|xor)`, t + 1, n);
|
|
2827
|
+
return this.regexAccept(String.raw`(?:rlc|rld|rra|rrc|rrd|rst|sbc|scf|set|sla|sra|srl|sub|xor)`, "", t + 1, n);
|
|
2828
2828
|
}
|
|
2829
2829
|
matchForbiddenNames_5(t, n) {
|
|
2830
|
-
return this.regexAccept(String.raw`(?:cp|db|di|dm|ds|dw|ei|eq|ex|im|in|jp|jr|ld|or|rl|rr)`, t + 1, n);
|
|
2830
|
+
return this.regexAccept(String.raw`(?:cp|db|di|dm|ds|dw|ei|eq|ex|im|in|jp|jr|ld|or|rl|rr)`, "", t + 1, n);
|
|
2831
2831
|
}
|
|
2832
2832
|
matchForbiddenLabel(t, n) {
|
|
2833
2833
|
return this.run(
|
|
2834
2834
|
t,
|
|
2835
2835
|
() => {
|
|
2836
2836
|
let e = null;
|
|
2837
|
-
return this.matchForbiddenNames(t + 1, n) !== null && this.regexAccept(String.raw`(?:[ \t:\r\n])`, t + 1, n) !== null && (e = {
|
|
2837
|
+
return this.matchForbiddenNames(t + 1, n) !== null && this.regexAccept(String.raw`(?:[ \t:\r\n])`, "", t + 1, n) !== null && (e = {
|
|
2838
2838
|
kind: "ForbiddenLabel"
|
|
2839
2839
|
/* ForbiddenLabel */
|
|
2840
2840
|
}), e;
|
|
@@ -2846,7 +2846,7 @@ class Er {
|
|
|
2846
2846
|
t,
|
|
2847
2847
|
() => {
|
|
2848
2848
|
let e, s, r = null;
|
|
2849
|
-
return this.negate(() => this.matchForbiddenLabel(t + 1, n)) !== null && (e = this.mark()) !== null && (s = this.regexAccept(String.raw`(?:[a-z_\.][a-z0-9_!\?#@\.\$]*|\$)`, t + 1, n)) !== null && (r = { kind: "Label", pos: e, name: s }), r;
|
|
2849
|
+
return this.negate(() => this.matchForbiddenLabel(t + 1, n)) !== null && (e = this.mark()) !== null && (s = this.regexAccept(String.raw`(?:[a-z_\.][a-z0-9_!\?#@\.\$]*|\$)`, "", t + 1, n)) !== null && (r = { kind: "Label", pos: e, name: s }), r;
|
|
2850
2850
|
}
|
|
2851
2851
|
);
|
|
2852
2852
|
}
|
|
@@ -2855,7 +2855,7 @@ class Er {
|
|
|
2855
2855
|
t,
|
|
2856
2856
|
() => {
|
|
2857
2857
|
let e, s, r = null;
|
|
2858
|
-
return this.negate(() => this.matchForbiddenLabel(t + 1, n)) !== null && (e = this.mark()) !== null && (s = this.regexAccept(String.raw`(?:[a-z_\.][a-z0-9_!\?#@\.\$]*)`, t + 1, n)) !== null && (this.regexAccept(String.raw`(?:\:)`, t + 1, n) || !0) && (r = { kind: "LabelDeclaration", pos: e, name: s }), r;
|
|
2858
|
+
return this.negate(() => this.matchForbiddenLabel(t + 1, n)) !== null && (e = this.mark()) !== null && (s = this.regexAccept(String.raw`(?:[a-z_\.][a-z0-9_!\?#@\.\$]*)`, "", t + 1, n)) !== null && (this.regexAccept(String.raw`(?:\:)`, "", t + 1, n) || !0) && (r = { kind: "LabelDeclaration", pos: e, name: s }), r;
|
|
2859
2859
|
}
|
|
2860
2860
|
);
|
|
2861
2861
|
}
|
|
@@ -2872,30 +2872,30 @@ class Er {
|
|
|
2872
2872
|
const e = () => this.run(
|
|
2873
2873
|
t,
|
|
2874
2874
|
() => {
|
|
2875
|
-
let g,
|
|
2876
|
-
return ((g = this.matchBitwiseOrExpression_$0(t + 1, n)) || !0) && this.match_(t + 1, n) !== null && (
|
|
2875
|
+
let g, o, w = null;
|
|
2876
|
+
return ((g = this.matchBitwiseOrExpression_$0(t + 1, n)) || !0) && this.match_(t + 1, n) !== null && (o = this.matchBitwiseXOrExpression(t + 1, n)) !== null && (w = new on(g, o)), w;
|
|
2877
2877
|
}
|
|
2878
2878
|
), s = this.mark(), r = this.$scope$BitwiseOrExpression$memo.get(s.overallPos);
|
|
2879
2879
|
if (r !== void 0)
|
|
2880
2880
|
return this.reset(r[1]), r[0];
|
|
2881
2881
|
const u = this.memoSafe;
|
|
2882
2882
|
this.memoSafe = !1, this.$scope$BitwiseOrExpression$memo.set(s.overallPos, [null, s]);
|
|
2883
|
-
let
|
|
2883
|
+
let l = null, m = s;
|
|
2884
2884
|
for (; ; ) {
|
|
2885
2885
|
this.reset(s);
|
|
2886
|
-
const g = e(),
|
|
2887
|
-
if (
|
|
2886
|
+
const g = e(), o = this.mark();
|
|
2887
|
+
if (o.overallPos <= m.overallPos)
|
|
2888
2888
|
break;
|
|
2889
|
-
|
|
2889
|
+
l = g, m = o, this.$scope$BitwiseOrExpression$memo.set(s.overallPos, [l, m]);
|
|
2890
2890
|
}
|
|
2891
|
-
return this.reset(m), this.memoSafe = u,
|
|
2891
|
+
return this.reset(m), this.memoSafe = u, l;
|
|
2892
2892
|
}
|
|
2893
2893
|
matchBitwiseOrExpression_$0(t, n) {
|
|
2894
2894
|
return this.run(
|
|
2895
2895
|
t,
|
|
2896
2896
|
() => {
|
|
2897
2897
|
let e, s = null;
|
|
2898
|
-
return (e = this.matchBitwiseOrExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\|)`, t + 1, n) !== null && (s = { kind: "BitwiseOrExpression_$0", e }), s;
|
|
2898
|
+
return (e = this.matchBitwiseOrExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\|)`, "", t + 1, n) !== null && (s = { kind: "BitwiseOrExpression_$0", e }), s;
|
|
2899
2899
|
}
|
|
2900
2900
|
);
|
|
2901
2901
|
}
|
|
@@ -2903,30 +2903,30 @@ class Er {
|
|
|
2903
2903
|
const e = () => this.run(
|
|
2904
2904
|
t,
|
|
2905
2905
|
() => {
|
|
2906
|
-
let g,
|
|
2907
|
-
return ((g = this.matchBitwiseXOrExpression_$0(t + 1, n)) || !0) && this.match_(t + 1, n) !== null && (
|
|
2906
|
+
let g, o, w = null;
|
|
2907
|
+
return ((g = this.matchBitwiseXOrExpression_$0(t + 1, n)) || !0) && this.match_(t + 1, n) !== null && (o = this.matchBitwiseAndExpression(t + 1, n)) !== null && (w = new an(g, o)), w;
|
|
2908
2908
|
}
|
|
2909
2909
|
), s = this.mark(), r = this.$scope$BitwiseXOrExpression$memo.get(s.overallPos);
|
|
2910
2910
|
if (r !== void 0)
|
|
2911
2911
|
return this.reset(r[1]), r[0];
|
|
2912
2912
|
const u = this.memoSafe;
|
|
2913
2913
|
this.memoSafe = !1, this.$scope$BitwiseXOrExpression$memo.set(s.overallPos, [null, s]);
|
|
2914
|
-
let
|
|
2914
|
+
let l = null, m = s;
|
|
2915
2915
|
for (; ; ) {
|
|
2916
2916
|
this.reset(s);
|
|
2917
|
-
const g = e(),
|
|
2918
|
-
if (
|
|
2917
|
+
const g = e(), o = this.mark();
|
|
2918
|
+
if (o.overallPos <= m.overallPos)
|
|
2919
2919
|
break;
|
|
2920
|
-
|
|
2920
|
+
l = g, m = o, this.$scope$BitwiseXOrExpression$memo.set(s.overallPos, [l, m]);
|
|
2921
2921
|
}
|
|
2922
|
-
return this.reset(m), this.memoSafe = u,
|
|
2922
|
+
return this.reset(m), this.memoSafe = u, l;
|
|
2923
2923
|
}
|
|
2924
2924
|
matchBitwiseXOrExpression_$0(t, n) {
|
|
2925
2925
|
return this.run(
|
|
2926
2926
|
t,
|
|
2927
2927
|
() => {
|
|
2928
2928
|
let e, s = null;
|
|
2929
|
-
return (e = this.matchBitwiseXOrExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\^)`, t + 1, n) !== null && (s = { kind: "BitwiseXOrExpression_$0", e }), s;
|
|
2929
|
+
return (e = this.matchBitwiseXOrExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\^)`, "", t + 1, n) !== null && (s = { kind: "BitwiseXOrExpression_$0", e }), s;
|
|
2930
2930
|
}
|
|
2931
2931
|
);
|
|
2932
2932
|
}
|
|
@@ -2934,30 +2934,30 @@ class Er {
|
|
|
2934
2934
|
const e = () => this.run(
|
|
2935
2935
|
t,
|
|
2936
2936
|
() => {
|
|
2937
|
-
let g,
|
|
2938
|
-
return ((g = this.matchBitwiseAndExpression_$0(t + 1, n)) || !0) && this.match_(t + 1, n) !== null && (
|
|
2937
|
+
let g, o, w = null;
|
|
2938
|
+
return ((g = this.matchBitwiseAndExpression_$0(t + 1, n)) || !0) && this.match_(t + 1, n) !== null && (o = this.matchShiftExpression(t + 1, n)) !== null && (w = new hn(g, o)), w;
|
|
2939
2939
|
}
|
|
2940
2940
|
), s = this.mark(), r = this.$scope$BitwiseAndExpression$memo.get(s.overallPos);
|
|
2941
2941
|
if (r !== void 0)
|
|
2942
2942
|
return this.reset(r[1]), r[0];
|
|
2943
2943
|
const u = this.memoSafe;
|
|
2944
2944
|
this.memoSafe = !1, this.$scope$BitwiseAndExpression$memo.set(s.overallPos, [null, s]);
|
|
2945
|
-
let
|
|
2945
|
+
let l = null, m = s;
|
|
2946
2946
|
for (; ; ) {
|
|
2947
2947
|
this.reset(s);
|
|
2948
|
-
const g = e(),
|
|
2949
|
-
if (
|
|
2948
|
+
const g = e(), o = this.mark();
|
|
2949
|
+
if (o.overallPos <= m.overallPos)
|
|
2950
2950
|
break;
|
|
2951
|
-
|
|
2951
|
+
l = g, m = o, this.$scope$BitwiseAndExpression$memo.set(s.overallPos, [l, m]);
|
|
2952
2952
|
}
|
|
2953
|
-
return this.reset(m), this.memoSafe = u,
|
|
2953
|
+
return this.reset(m), this.memoSafe = u, l;
|
|
2954
2954
|
}
|
|
2955
2955
|
matchBitwiseAndExpression_$0(t, n) {
|
|
2956
2956
|
return this.run(
|
|
2957
2957
|
t,
|
|
2958
2958
|
() => {
|
|
2959
2959
|
let e, s = null;
|
|
2960
|
-
return (e = this.matchBitwiseAndExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\&)`, t + 1, n) !== null && (s = { kind: "BitwiseAndExpression_$0", e }), s;
|
|
2960
|
+
return (e = this.matchBitwiseAndExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\&)`, "", t + 1, n) !== null && (s = { kind: "BitwiseAndExpression_$0", e }), s;
|
|
2961
2961
|
}
|
|
2962
2962
|
);
|
|
2963
2963
|
}
|
|
@@ -2965,23 +2965,23 @@ class Er {
|
|
|
2965
2965
|
const e = () => this.run(
|
|
2966
2966
|
t,
|
|
2967
2967
|
() => {
|
|
2968
|
-
let g,
|
|
2969
|
-
return ((g = this.matchShiftExpression_$0(t + 1, n)) || !0) && this.match_(t + 1, n) !== null && (
|
|
2968
|
+
let g, o, w = null;
|
|
2969
|
+
return ((g = this.matchShiftExpression_$0(t + 1, n)) || !0) && this.match_(t + 1, n) !== null && (o = this.matchAdditiveExpression(t + 1, n)) !== null && (w = new mn(g, o)), w;
|
|
2970
2970
|
}
|
|
2971
2971
|
), s = this.mark(), r = this.$scope$ShiftExpression$memo.get(s.overallPos);
|
|
2972
2972
|
if (r !== void 0)
|
|
2973
2973
|
return this.reset(r[1]), r[0];
|
|
2974
2974
|
const u = this.memoSafe;
|
|
2975
2975
|
this.memoSafe = !1, this.$scope$ShiftExpression$memo.set(s.overallPos, [null, s]);
|
|
2976
|
-
let
|
|
2976
|
+
let l = null, m = s;
|
|
2977
2977
|
for (; ; ) {
|
|
2978
2978
|
this.reset(s);
|
|
2979
|
-
const g = e(),
|
|
2980
|
-
if (
|
|
2979
|
+
const g = e(), o = this.mark();
|
|
2980
|
+
if (o.overallPos <= m.overallPos)
|
|
2981
2981
|
break;
|
|
2982
|
-
|
|
2982
|
+
l = g, m = o, this.$scope$ShiftExpression$memo.set(s.overallPos, [l, m]);
|
|
2983
2983
|
}
|
|
2984
|
-
return this.reset(m), this.memoSafe = u,
|
|
2984
|
+
return this.reset(m), this.memoSafe = u, l;
|
|
2985
2985
|
}
|
|
2986
2986
|
matchShiftExpression_$0(t, n) {
|
|
2987
2987
|
return this.run(
|
|
@@ -2999,32 +2999,32 @@ class Er {
|
|
|
2999
2999
|
]);
|
|
3000
3000
|
}
|
|
3001
3001
|
matchShiftExpression_$0_$0_1(t, n) {
|
|
3002
|
-
return this.regexAccept(String.raw`(?:<<)`, t + 1, n);
|
|
3002
|
+
return this.regexAccept(String.raw`(?:<<)`, "", t + 1, n);
|
|
3003
3003
|
}
|
|
3004
3004
|
matchShiftExpression_$0_$0_2(t, n) {
|
|
3005
|
-
return this.regexAccept(String.raw`(?:>>)`, t + 1, n);
|
|
3005
|
+
return this.regexAccept(String.raw`(?:>>)`, "", t + 1, n);
|
|
3006
3006
|
}
|
|
3007
3007
|
matchAdditiveExpression(t, n) {
|
|
3008
3008
|
const e = () => this.run(
|
|
3009
3009
|
t,
|
|
3010
3010
|
() => {
|
|
3011
|
-
let g,
|
|
3012
|
-
return ((g = this.matchAdditiveExpression_$0(t + 1, n)) || !0) && this.match_(t + 1, n) !== null && (
|
|
3011
|
+
let g, o, w = null;
|
|
3012
|
+
return ((g = this.matchAdditiveExpression_$0(t + 1, n)) || !0) && this.match_(t + 1, n) !== null && (o = this.matchMultiplicativeExpression(t + 1, n)) !== null && (w = new _n(g, o)), w;
|
|
3013
3013
|
}
|
|
3014
3014
|
), s = this.mark(), r = this.$scope$AdditiveExpression$memo.get(s.overallPos);
|
|
3015
3015
|
if (r !== void 0)
|
|
3016
3016
|
return this.reset(r[1]), r[0];
|
|
3017
3017
|
const u = this.memoSafe;
|
|
3018
3018
|
this.memoSafe = !1, this.$scope$AdditiveExpression$memo.set(s.overallPos, [null, s]);
|
|
3019
|
-
let
|
|
3019
|
+
let l = null, m = s;
|
|
3020
3020
|
for (; ; ) {
|
|
3021
3021
|
this.reset(s);
|
|
3022
|
-
const g = e(),
|
|
3023
|
-
if (
|
|
3022
|
+
const g = e(), o = this.mark();
|
|
3023
|
+
if (o.overallPos <= m.overallPos)
|
|
3024
3024
|
break;
|
|
3025
|
-
|
|
3025
|
+
l = g, m = o, this.$scope$AdditiveExpression$memo.set(s.overallPos, [l, m]);
|
|
3026
3026
|
}
|
|
3027
|
-
return this.reset(m), this.memoSafe = u,
|
|
3027
|
+
return this.reset(m), this.memoSafe = u, l;
|
|
3028
3028
|
}
|
|
3029
3029
|
matchAdditiveExpression_$0(t, n) {
|
|
3030
3030
|
return this.run(
|
|
@@ -3042,32 +3042,32 @@ class Er {
|
|
|
3042
3042
|
]);
|
|
3043
3043
|
}
|
|
3044
3044
|
matchAdditiveExpression_$0_$0_1(t, n) {
|
|
3045
|
-
return this.regexAccept(String.raw`(?:\+)`, t + 1, n);
|
|
3045
|
+
return this.regexAccept(String.raw`(?:\+)`, "", t + 1, n);
|
|
3046
3046
|
}
|
|
3047
3047
|
matchAdditiveExpression_$0_$0_2(t, n) {
|
|
3048
|
-
return this.regexAccept(String.raw`(?:\-)`, t + 1, n);
|
|
3048
|
+
return this.regexAccept(String.raw`(?:\-)`, "", t + 1, n);
|
|
3049
3049
|
}
|
|
3050
3050
|
matchMultiplicativeExpression(t, n) {
|
|
3051
3051
|
const e = () => this.run(
|
|
3052
3052
|
t,
|
|
3053
3053
|
() => {
|
|
3054
|
-
let g,
|
|
3055
|
-
return ((g = this.matchMultiplicativeExpression_$0(t + 1, n)) || !0) && this.match_(t + 1, n) !== null && (
|
|
3054
|
+
let g, o, w = null;
|
|
3055
|
+
return ((g = this.matchMultiplicativeExpression_$0(t + 1, n)) || !0) && this.match_(t + 1, n) !== null && (o = this.matchUnaryExpression(t + 1, n)) !== null && (w = new gn(g, o)), w;
|
|
3056
3056
|
}
|
|
3057
3057
|
), s = this.mark(), r = this.$scope$MultiplicativeExpression$memo.get(s.overallPos);
|
|
3058
3058
|
if (r !== void 0)
|
|
3059
3059
|
return this.reset(r[1]), r[0];
|
|
3060
3060
|
const u = this.memoSafe;
|
|
3061
3061
|
this.memoSafe = !1, this.$scope$MultiplicativeExpression$memo.set(s.overallPos, [null, s]);
|
|
3062
|
-
let
|
|
3062
|
+
let l = null, m = s;
|
|
3063
3063
|
for (; ; ) {
|
|
3064
3064
|
this.reset(s);
|
|
3065
|
-
const g = e(),
|
|
3066
|
-
if (
|
|
3065
|
+
const g = e(), o = this.mark();
|
|
3066
|
+
if (o.overallPos <= m.overallPos)
|
|
3067
3067
|
break;
|
|
3068
|
-
|
|
3068
|
+
l = g, m = o, this.$scope$MultiplicativeExpression$memo.set(s.overallPos, [l, m]);
|
|
3069
3069
|
}
|
|
3070
|
-
return this.reset(m), this.memoSafe = u,
|
|
3070
|
+
return this.reset(m), this.memoSafe = u, l;
|
|
3071
3071
|
}
|
|
3072
3072
|
matchMultiplicativeExpression_$0(t, n) {
|
|
3073
3073
|
return this.run(
|
|
@@ -3086,13 +3086,13 @@ class Er {
|
|
|
3086
3086
|
]);
|
|
3087
3087
|
}
|
|
3088
3088
|
matchMultiplicativeExpression_$0_$0_1(t, n) {
|
|
3089
|
-
return this.regexAccept(String.raw`(?:\*)`, t + 1, n);
|
|
3089
|
+
return this.regexAccept(String.raw`(?:\*)`, "", t + 1, n);
|
|
3090
3090
|
}
|
|
3091
3091
|
matchMultiplicativeExpression_$0_$0_2(t, n) {
|
|
3092
|
-
return this.regexAccept(String.raw`(?:%)`, t + 1, n);
|
|
3092
|
+
return this.regexAccept(String.raw`(?:%)`, "", t + 1, n);
|
|
3093
3093
|
}
|
|
3094
3094
|
matchMultiplicativeExpression_$0_$0_3(t, n) {
|
|
3095
|
-
return this.regexAccept(String.raw`(?:/)`, t + 1, n);
|
|
3095
|
+
return this.regexAccept(String.raw`(?:/)`, "", t + 1, n);
|
|
3096
3096
|
}
|
|
3097
3097
|
matchUnaryExpression(t, n) {
|
|
3098
3098
|
return this.choice([
|
|
@@ -3126,13 +3126,13 @@ class Er {
|
|
|
3126
3126
|
]);
|
|
3127
3127
|
}
|
|
3128
3128
|
matchUnaryExpression_$0_1(t, n) {
|
|
3129
|
-
return this.regexAccept(String.raw`(?:~)`, t + 1, n);
|
|
3129
|
+
return this.regexAccept(String.raw`(?:~)`, "", t + 1, n);
|
|
3130
3130
|
}
|
|
3131
3131
|
matchUnaryExpression_$0_2(t, n) {
|
|
3132
|
-
return this.regexAccept(String.raw`(?:\+)`, t + 1, n);
|
|
3132
|
+
return this.regexAccept(String.raw`(?:\+)`, "", t + 1, n);
|
|
3133
3133
|
}
|
|
3134
3134
|
matchUnaryExpression_$0_3(t, n) {
|
|
3135
|
-
return this.regexAccept(String.raw`(?:\-)`, t + 1, n);
|
|
3135
|
+
return this.regexAccept(String.raw`(?:\-)`, "", t + 1, n);
|
|
3136
3136
|
}
|
|
3137
3137
|
matchPrimaryExpression(t, n) {
|
|
3138
3138
|
return this.choice([
|
|
@@ -3164,7 +3164,7 @@ class Er {
|
|
|
3164
3164
|
t,
|
|
3165
3165
|
() => {
|
|
3166
3166
|
let e, s = null;
|
|
3167
|
-
return this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && (e = this.matchBitwiseOrExpression(t + 1, n)) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && (s = new An(e)), s;
|
|
3167
|
+
return this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && (e = this.matchBitwiseOrExpression(t + 1, n)) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && (s = new An(e)), s;
|
|
3168
3168
|
}
|
|
3169
3169
|
);
|
|
3170
3170
|
}
|
|
@@ -3173,7 +3173,7 @@ class Er {
|
|
|
3173
3173
|
t,
|
|
3174
3174
|
() => {
|
|
3175
3175
|
let e, s = null;
|
|
3176
|
-
return (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.regexAccept(String.raw`(?:[^a-z0-9_!\?#@\.])`, t + 1, n)) !== null && (s = { kind: "Reg8", reg: e }), s;
|
|
3176
|
+
return (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.regexAccept(String.raw`(?:[^a-z0-9_!\?#@\.])`, "", t + 1, n)) !== null && (s = { kind: "Reg8", reg: e }), s;
|
|
3177
3177
|
}
|
|
3178
3178
|
);
|
|
3179
3179
|
}
|
|
@@ -3182,7 +3182,7 @@ class Er {
|
|
|
3182
3182
|
t,
|
|
3183
3183
|
() => {
|
|
3184
3184
|
let e, s = null;
|
|
3185
|
-
return this.regexAccept(String.raw`(?:ix)`, t + 1, n) !== null && ((e = this.matchIX_$0(t + 1, n)) || !0) && (s = { kind: "IX", offset: e }), s;
|
|
3185
|
+
return this.regexAccept(String.raw`(?:ix)`, "", t + 1, n) !== null && ((e = this.matchIX_$0(t + 1, n)) || !0) && (s = { kind: "IX", offset: e }), s;
|
|
3186
3186
|
}
|
|
3187
3187
|
);
|
|
3188
3188
|
}
|
|
@@ -3202,17 +3202,17 @@ class Er {
|
|
|
3202
3202
|
]);
|
|
3203
3203
|
}
|
|
3204
3204
|
matchIX_$0_$0_1(t, n) {
|
|
3205
|
-
return this.regexAccept(String.raw`(?:\+)`, t + 1, n);
|
|
3205
|
+
return this.regexAccept(String.raw`(?:\+)`, "", t + 1, n);
|
|
3206
3206
|
}
|
|
3207
3207
|
matchIX_$0_$0_2(t, n) {
|
|
3208
|
-
return this.regexAccept(String.raw`(?:\-)`, t + 1, n);
|
|
3208
|
+
return this.regexAccept(String.raw`(?:\-)`, "", t + 1, n);
|
|
3209
3209
|
}
|
|
3210
3210
|
matchIY(t, n) {
|
|
3211
3211
|
return this.run(
|
|
3212
3212
|
t,
|
|
3213
3213
|
() => {
|
|
3214
3214
|
let e, s = null;
|
|
3215
|
-
return this.regexAccept(String.raw`(?:iy)`, t + 1, n) !== null && ((e = this.matchIY_$0(t + 1, n)) || !0) && (s = { kind: "IY", offset: e }), s;
|
|
3215
|
+
return this.regexAccept(String.raw`(?:iy)`, "", t + 1, n) !== null && ((e = this.matchIY_$0(t + 1, n)) || !0) && (s = { kind: "IY", offset: e }), s;
|
|
3216
3216
|
}
|
|
3217
3217
|
);
|
|
3218
3218
|
}
|
|
@@ -3232,10 +3232,10 @@ class Er {
|
|
|
3232
3232
|
]);
|
|
3233
3233
|
}
|
|
3234
3234
|
matchIY_$0_$0_1(t, n) {
|
|
3235
|
-
return this.regexAccept(String.raw`(?:\+)`, t + 1, n);
|
|
3235
|
+
return this.regexAccept(String.raw`(?:\+)`, "", t + 1, n);
|
|
3236
3236
|
}
|
|
3237
3237
|
matchIY_$0_$0_2(t, n) {
|
|
3238
|
-
return this.regexAccept(String.raw`(?:\-)`, t + 1, n);
|
|
3238
|
+
return this.regexAccept(String.raw`(?:\-)`, "", t + 1, n);
|
|
3239
3239
|
}
|
|
3240
3240
|
matchInstruction(t, n) {
|
|
3241
3241
|
return this.choice([
|
|
@@ -3335,7 +3335,7 @@ class Er {
|
|
|
3335
3335
|
t,
|
|
3336
3336
|
() => {
|
|
3337
3337
|
let e, s, r = null;
|
|
3338
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchReg8(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchReg8(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Ln(e, s)), r;
|
|
3338
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchReg8(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchReg8(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Ln(e, s)), r;
|
|
3339
3339
|
}
|
|
3340
3340
|
);
|
|
3341
3341
|
}
|
|
@@ -3344,7 +3344,7 @@ class Er {
|
|
|
3344
3344
|
t,
|
|
3345
3345
|
() => {
|
|
3346
3346
|
let e, s = null;
|
|
3347
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Sn(e)), s;
|
|
3347
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Sn(e)), s;
|
|
3348
3348
|
}
|
|
3349
3349
|
);
|
|
3350
3350
|
}
|
|
@@ -3353,7 +3353,7 @@ class Er {
|
|
|
3353
3353
|
t,
|
|
3354
3354
|
() => {
|
|
3355
3355
|
let e, s, r = null;
|
|
3356
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new kn(e, s)), r;
|
|
3356
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new kn(e, s)), r;
|
|
3357
3357
|
}
|
|
3358
3358
|
);
|
|
3359
3359
|
}
|
|
@@ -3362,7 +3362,7 @@ class Er {
|
|
|
3362
3362
|
t,
|
|
3363
3363
|
() => {
|
|
3364
3364
|
let e, s, r = null;
|
|
3365
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new En(e, s)), r;
|
|
3365
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new En(e, s)), r;
|
|
3366
3366
|
}
|
|
3367
3367
|
);
|
|
3368
3368
|
}
|
|
@@ -3371,7 +3371,7 @@ class Er {
|
|
|
3371
3371
|
t,
|
|
3372
3372
|
() => {
|
|
3373
3373
|
let e, s = null;
|
|
3374
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new vn(e)), s;
|
|
3374
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new vn(e)), s;
|
|
3375
3375
|
}
|
|
3376
3376
|
);
|
|
3377
3377
|
}
|
|
@@ -3380,7 +3380,7 @@ class Er {
|
|
|
3380
3380
|
t,
|
|
3381
3381
|
() => {
|
|
3382
3382
|
let e, s, r = null;
|
|
3383
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Cn(e, s)), r;
|
|
3383
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Cn(e, s)), r;
|
|
3384
3384
|
}
|
|
3385
3385
|
);
|
|
3386
3386
|
}
|
|
@@ -3389,7 +3389,7 @@ class Er {
|
|
|
3389
3389
|
t,
|
|
3390
3390
|
() => {
|
|
3391
3391
|
let e, s, r = null;
|
|
3392
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new bn(e, s)), r;
|
|
3392
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new bn(e, s)), r;
|
|
3393
3393
|
}
|
|
3394
3394
|
);
|
|
3395
3395
|
}
|
|
@@ -3398,7 +3398,7 @@ class Er {
|
|
|
3398
3398
|
t,
|
|
3399
3399
|
() => {
|
|
3400
3400
|
let e, s, r = null;
|
|
3401
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Dn(e, s)), r;
|
|
3401
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Dn(e, s)), r;
|
|
3402
3402
|
}
|
|
3403
3403
|
);
|
|
3404
3404
|
}
|
|
@@ -3407,7 +3407,7 @@ class Er {
|
|
|
3407
3407
|
t,
|
|
3408
3408
|
() => {
|
|
3409
3409
|
let e, s, r, u = null;
|
|
3410
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.mark()) !== null && (r = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (u = new Rn(e, s, r)), u;
|
|
3410
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.mark()) !== null && (r = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (u = new Rn(e, s, r)), u;
|
|
3411
3411
|
}
|
|
3412
3412
|
);
|
|
3413
3413
|
}
|
|
@@ -3416,7 +3416,7 @@ class Er {
|
|
|
3416
3416
|
t,
|
|
3417
3417
|
() => {
|
|
3418
3418
|
let e, s, r, u = null;
|
|
3419
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.mark()) !== null && (r = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (u = new qn(e, s, r)), u;
|
|
3419
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.mark()) !== null && (r = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (u = new qn(e, s, r)), u;
|
|
3420
3420
|
}
|
|
3421
3421
|
);
|
|
3422
3422
|
}
|
|
@@ -3425,7 +3425,7 @@ class Er {
|
|
|
3425
3425
|
t,
|
|
3426
3426
|
() => {
|
|
3427
3427
|
let e = null;
|
|
3428
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:bc)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Bn()), e;
|
|
3428
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:bc)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Bn()), e;
|
|
3429
3429
|
}
|
|
3430
3430
|
);
|
|
3431
3431
|
}
|
|
@@ -3434,7 +3434,7 @@ class Er {
|
|
|
3434
3434
|
t,
|
|
3435
3435
|
() => {
|
|
3436
3436
|
let e = null;
|
|
3437
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:de)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new yn()), e;
|
|
3437
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:de)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new yn()), e;
|
|
3438
3438
|
}
|
|
3439
3439
|
);
|
|
3440
3440
|
}
|
|
@@ -3443,7 +3443,7 @@ class Er {
|
|
|
3443
3443
|
t,
|
|
3444
3444
|
() => {
|
|
3445
3445
|
let e, s, r = null;
|
|
3446
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new On(e, s)), r;
|
|
3446
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new On(e, s)), r;
|
|
3447
3447
|
}
|
|
3448
3448
|
);
|
|
3449
3449
|
}
|
|
@@ -3452,7 +3452,7 @@ class Er {
|
|
|
3452
3452
|
t,
|
|
3453
3453
|
() => {
|
|
3454
3454
|
let e = null;
|
|
3455
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:bc)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Nn()), e;
|
|
3455
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:bc)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Nn()), e;
|
|
3456
3456
|
}
|
|
3457
3457
|
);
|
|
3458
3458
|
}
|
|
@@ -3461,7 +3461,7 @@ class Er {
|
|
|
3461
3461
|
t,
|
|
3462
3462
|
() => {
|
|
3463
3463
|
let e = null;
|
|
3464
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:de)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new
|
|
3464
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:de)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Pn()), e;
|
|
3465
3465
|
}
|
|
3466
3466
|
);
|
|
3467
3467
|
}
|
|
@@ -3470,7 +3470,7 @@ class Er {
|
|
|
3470
3470
|
t,
|
|
3471
3471
|
() => {
|
|
3472
3472
|
let e, s, r = null;
|
|
3473
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new
|
|
3473
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Mn(e, s)), r;
|
|
3474
3474
|
}
|
|
3475
3475
|
);
|
|
3476
3476
|
}
|
|
@@ -3479,7 +3479,7 @@ class Er {
|
|
|
3479
3479
|
t,
|
|
3480
3480
|
() => {
|
|
3481
3481
|
let e = null;
|
|
3482
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:i)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Vn()), e;
|
|
3482
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:i)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Vn()), e;
|
|
3483
3483
|
}
|
|
3484
3484
|
);
|
|
3485
3485
|
}
|
|
@@ -3488,7 +3488,7 @@ class Er {
|
|
|
3488
3488
|
t,
|
|
3489
3489
|
() => {
|
|
3490
3490
|
let e = null;
|
|
3491
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:r)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Fn()), e;
|
|
3491
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:r)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Fn()), e;
|
|
3492
3492
|
}
|
|
3493
3493
|
);
|
|
3494
3494
|
}
|
|
@@ -3497,7 +3497,7 @@ class Er {
|
|
|
3497
3497
|
t,
|
|
3498
3498
|
() => {
|
|
3499
3499
|
let e = null;
|
|
3500
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:i)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new pn()), e;
|
|
3500
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:i)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new pn()), e;
|
|
3501
3501
|
}
|
|
3502
3502
|
);
|
|
3503
3503
|
}
|
|
@@ -3506,7 +3506,7 @@ class Er {
|
|
|
3506
3506
|
t,
|
|
3507
3507
|
() => {
|
|
3508
3508
|
let e = null;
|
|
3509
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:r)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Gn()), e;
|
|
3509
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:r)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Gn()), e;
|
|
3510
3510
|
}
|
|
3511
3511
|
);
|
|
3512
3512
|
}
|
|
@@ -3515,7 +3515,7 @@ class Er {
|
|
|
3515
3515
|
t,
|
|
3516
3516
|
() => {
|
|
3517
3517
|
let e, s, r, u = null;
|
|
3518
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchReg8(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.mark()) !== null && (r = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (u = new Jn(e, s, r)), u;
|
|
3518
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchReg8(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.mark()) !== null && (r = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (u = new Jn(e, s, r)), u;
|
|
3519
3519
|
}
|
|
3520
3520
|
);
|
|
3521
3521
|
}
|
|
@@ -3548,7 +3548,7 @@ class Er {
|
|
|
3548
3548
|
t,
|
|
3549
3549
|
() => {
|
|
3550
3550
|
let e, s, r = null;
|
|
3551
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:ix)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Xn(e, s)), r;
|
|
3551
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:ix)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Xn(e, s)), r;
|
|
3552
3552
|
}
|
|
3553
3553
|
);
|
|
3554
3554
|
}
|
|
@@ -3557,7 +3557,7 @@ class Er {
|
|
|
3557
3557
|
t,
|
|
3558
3558
|
() => {
|
|
3559
3559
|
let e, s, r = null;
|
|
3560
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:iy)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new jn(e, s)), r;
|
|
3560
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:iy)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new jn(e, s)), r;
|
|
3561
3561
|
}
|
|
3562
3562
|
);
|
|
3563
3563
|
}
|
|
@@ -3566,7 +3566,7 @@ class Er {
|
|
|
3566
3566
|
t,
|
|
3567
3567
|
() => {
|
|
3568
3568
|
let e, s, r = null;
|
|
3569
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:ix)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Qn(e, s)), r;
|
|
3569
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:ix)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Qn(e, s)), r;
|
|
3570
3570
|
}
|
|
3571
3571
|
);
|
|
3572
3572
|
}
|
|
@@ -3575,7 +3575,7 @@ class Er {
|
|
|
3575
3575
|
t,
|
|
3576
3576
|
() => {
|
|
3577
3577
|
let e, s, r = null;
|
|
3578
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:iy)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Un(e, s)), r;
|
|
3578
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:iy)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Un(e, s)), r;
|
|
3579
3579
|
}
|
|
3580
3580
|
);
|
|
3581
3581
|
}
|
|
@@ -3584,7 +3584,7 @@ class Er {
|
|
|
3584
3584
|
t,
|
|
3585
3585
|
() => {
|
|
3586
3586
|
let e, s, r = null;
|
|
3587
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Yn(e, s)), r;
|
|
3587
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Yn(e, s)), r;
|
|
3588
3588
|
}
|
|
3589
3589
|
);
|
|
3590
3590
|
}
|
|
@@ -3593,7 +3593,7 @@ class Er {
|
|
|
3593
3593
|
t,
|
|
3594
3594
|
() => {
|
|
3595
3595
|
let e, s, r, u = null;
|
|
3596
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchdd(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.mark()) !== null && (r = this.matchExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (u = new zn(e, s, r)), u;
|
|
3596
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchdd(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.mark()) !== null && (r = this.matchExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (u = new zn(e, s, r)), u;
|
|
3597
3597
|
}
|
|
3598
3598
|
);
|
|
3599
3599
|
}
|
|
@@ -3602,7 +3602,7 @@ class Er {
|
|
|
3602
3602
|
t,
|
|
3603
3603
|
() => {
|
|
3604
3604
|
let e, s, r = null;
|
|
3605
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Wn(e, s)), r;
|
|
3605
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Wn(e, s)), r;
|
|
3606
3606
|
}
|
|
3607
3607
|
);
|
|
3608
3608
|
}
|
|
@@ -3611,7 +3611,7 @@ class Er {
|
|
|
3611
3611
|
t,
|
|
3612
3612
|
() => {
|
|
3613
3613
|
let e, s, r, u = null;
|
|
3614
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (r = this.matchdd(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (u = new Hn(e, s, r)), u;
|
|
3614
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (r = this.matchdd(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (u = new Hn(e, s, r)), u;
|
|
3615
3615
|
}
|
|
3616
3616
|
);
|
|
3617
3617
|
}
|
|
@@ -3620,7 +3620,7 @@ class Er {
|
|
|
3620
3620
|
t,
|
|
3621
3621
|
() => {
|
|
3622
3622
|
let e, s, r = null;
|
|
3623
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:ix)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Zn(e, s)), r;
|
|
3623
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:ix)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Zn(e, s)), r;
|
|
3624
3624
|
}
|
|
3625
3625
|
);
|
|
3626
3626
|
}
|
|
@@ -3629,7 +3629,7 @@ class Er {
|
|
|
3629
3629
|
t,
|
|
3630
3630
|
() => {
|
|
3631
3631
|
let e, s, r = null;
|
|
3632
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:iy)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Tn(e, s)), r;
|
|
3632
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:iy)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Tn(e, s)), r;
|
|
3633
3633
|
}
|
|
3634
3634
|
);
|
|
3635
3635
|
}
|
|
@@ -3638,7 +3638,7 @@ class Er {
|
|
|
3638
3638
|
t,
|
|
3639
3639
|
() => {
|
|
3640
3640
|
let e = null;
|
|
3641
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:sp)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Kn()), e;
|
|
3641
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:sp)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Kn()), e;
|
|
3642
3642
|
}
|
|
3643
3643
|
);
|
|
3644
3644
|
}
|
|
@@ -3647,7 +3647,7 @@ class Er {
|
|
|
3647
3647
|
t,
|
|
3648
3648
|
() => {
|
|
3649
3649
|
let e = null;
|
|
3650
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:sp)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:ix)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new dn()), e;
|
|
3650
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:sp)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:ix)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new dn()), e;
|
|
3651
3651
|
}
|
|
3652
3652
|
);
|
|
3653
3653
|
}
|
|
@@ -3656,7 +3656,7 @@ class Er {
|
|
|
3656
3656
|
t,
|
|
3657
3657
|
() => {
|
|
3658
3658
|
let e = null;
|
|
3659
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:sp)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:iy)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new $n()), e;
|
|
3659
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:sp)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:iy)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new $n()), e;
|
|
3660
3660
|
}
|
|
3661
3661
|
);
|
|
3662
3662
|
}
|
|
@@ -3665,7 +3665,7 @@ class Er {
|
|
|
3665
3665
|
t,
|
|
3666
3666
|
() => {
|
|
3667
3667
|
let e, s, r, u = null;
|
|
3668
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchdd(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.mark()) !== null && (r = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (u = new te(e, s, r)), u;
|
|
3668
|
+
return this.regexAccept(String.raw`(?:ld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchdd(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.mark()) !== null && (r = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (u = new te(e, s, r)), u;
|
|
3669
3669
|
}
|
|
3670
3670
|
);
|
|
3671
3671
|
}
|
|
@@ -3674,7 +3674,7 @@ class Er {
|
|
|
3674
3674
|
t,
|
|
3675
3675
|
() => {
|
|
3676
3676
|
let e, s = null;
|
|
3677
|
-
return this.regexAccept(String.raw`(?:push)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchqq(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ne(e)), s;
|
|
3677
|
+
return this.regexAccept(String.raw`(?:push)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchqq(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ne(e)), s;
|
|
3678
3678
|
}
|
|
3679
3679
|
);
|
|
3680
3680
|
}
|
|
@@ -3683,7 +3683,7 @@ class Er {
|
|
|
3683
3683
|
t,
|
|
3684
3684
|
() => {
|
|
3685
3685
|
let e = null;
|
|
3686
|
-
return this.regexAccept(String.raw`(?:push)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:ix)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ee()), e;
|
|
3686
|
+
return this.regexAccept(String.raw`(?:push)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:ix)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ee()), e;
|
|
3687
3687
|
}
|
|
3688
3688
|
);
|
|
3689
3689
|
}
|
|
@@ -3692,7 +3692,7 @@ class Er {
|
|
|
3692
3692
|
t,
|
|
3693
3693
|
() => {
|
|
3694
3694
|
let e = null;
|
|
3695
|
-
return this.regexAccept(String.raw`(?:push)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:iy)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ie()), e;
|
|
3695
|
+
return this.regexAccept(String.raw`(?:push)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:iy)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ie()), e;
|
|
3696
3696
|
}
|
|
3697
3697
|
);
|
|
3698
3698
|
}
|
|
@@ -3701,7 +3701,7 @@ class Er {
|
|
|
3701
3701
|
t,
|
|
3702
3702
|
() => {
|
|
3703
3703
|
let e, s = null;
|
|
3704
|
-
return this.regexAccept(String.raw`(?:pop)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchqq(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new se(e)), s;
|
|
3704
|
+
return this.regexAccept(String.raw`(?:pop)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchqq(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new se(e)), s;
|
|
3705
3705
|
}
|
|
3706
3706
|
);
|
|
3707
3707
|
}
|
|
@@ -3710,7 +3710,7 @@ class Er {
|
|
|
3710
3710
|
t,
|
|
3711
3711
|
() => {
|
|
3712
3712
|
let e = null;
|
|
3713
|
-
return this.regexAccept(String.raw`(?:pop)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:ix)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new re()), e;
|
|
3713
|
+
return this.regexAccept(String.raw`(?:pop)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:ix)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new re()), e;
|
|
3714
3714
|
}
|
|
3715
3715
|
);
|
|
3716
3716
|
}
|
|
@@ -3719,7 +3719,7 @@ class Er {
|
|
|
3719
3719
|
t,
|
|
3720
3720
|
() => {
|
|
3721
3721
|
let e = null;
|
|
3722
|
-
return this.regexAccept(String.raw`(?:pop)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:iy)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ue()), e;
|
|
3722
|
+
return this.regexAccept(String.raw`(?:pop)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:iy)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ue()), e;
|
|
3723
3723
|
}
|
|
3724
3724
|
);
|
|
3725
3725
|
}
|
|
@@ -3738,7 +3738,7 @@ class Er {
|
|
|
3738
3738
|
t,
|
|
3739
3739
|
() => {
|
|
3740
3740
|
let e = null;
|
|
3741
|
-
return this.regexAccept(String.raw`(?:ex)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:de)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ce()), e;
|
|
3741
|
+
return this.regexAccept(String.raw`(?:ex)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:de)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ce()), e;
|
|
3742
3742
|
}
|
|
3743
3743
|
);
|
|
3744
3744
|
}
|
|
@@ -3747,7 +3747,7 @@ class Er {
|
|
|
3747
3747
|
t,
|
|
3748
3748
|
() => {
|
|
3749
3749
|
let e = null;
|
|
3750
|
-
return this.regexAccept(String.raw`(?:ex)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:af)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:af\')`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new le()), e;
|
|
3750
|
+
return this.regexAccept(String.raw`(?:ex)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:af)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:af\')`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new le()), e;
|
|
3751
3751
|
}
|
|
3752
3752
|
);
|
|
3753
3753
|
}
|
|
@@ -3756,7 +3756,7 @@ class Er {
|
|
|
3756
3756
|
t,
|
|
3757
3757
|
() => {
|
|
3758
3758
|
let e = null;
|
|
3759
|
-
return this.regexAccept(String.raw`(?:exx)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new oe()), e;
|
|
3759
|
+
return this.regexAccept(String.raw`(?:exx)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new oe()), e;
|
|
3760
3760
|
}
|
|
3761
3761
|
);
|
|
3762
3762
|
}
|
|
@@ -3765,7 +3765,7 @@ class Er {
|
|
|
3765
3765
|
t,
|
|
3766
3766
|
() => {
|
|
3767
3767
|
let e = null;
|
|
3768
|
-
return this.regexAccept(String.raw`(?:ex)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.regexAccept(String.raw`(?:sp)`, t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ae()), e;
|
|
3768
|
+
return this.regexAccept(String.raw`(?:ex)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.regexAccept(String.raw`(?:sp)`, "", t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ae()), e;
|
|
3769
3769
|
}
|
|
3770
3770
|
);
|
|
3771
3771
|
}
|
|
@@ -3774,7 +3774,7 @@ class Er {
|
|
|
3774
3774
|
t,
|
|
3775
3775
|
() => {
|
|
3776
3776
|
let e = null;
|
|
3777
|
-
return this.regexAccept(String.raw`(?:ex)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.regexAccept(String.raw`(?:sp)`, t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:ix)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new he()), e;
|
|
3777
|
+
return this.regexAccept(String.raw`(?:ex)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.regexAccept(String.raw`(?:sp)`, "", t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:ix)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new he()), e;
|
|
3778
3778
|
}
|
|
3779
3779
|
);
|
|
3780
3780
|
}
|
|
@@ -3783,7 +3783,7 @@ class Er {
|
|
|
3783
3783
|
t,
|
|
3784
3784
|
() => {
|
|
3785
3785
|
let e = null;
|
|
3786
|
-
return this.regexAccept(String.raw`(?:ex)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.regexAccept(String.raw`(?:sp)`, t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:iy)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new me()), e;
|
|
3786
|
+
return this.regexAccept(String.raw`(?:ex)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.regexAccept(String.raw`(?:sp)`, "", t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:iy)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new me()), e;
|
|
3787
3787
|
}
|
|
3788
3788
|
);
|
|
3789
3789
|
}
|
|
@@ -3804,7 +3804,7 @@ class Er {
|
|
|
3804
3804
|
t,
|
|
3805
3805
|
() => {
|
|
3806
3806
|
let e = null;
|
|
3807
|
-
return this.regexAccept(String.raw`(?:ldir)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new _e()), e;
|
|
3807
|
+
return this.regexAccept(String.raw`(?:ldir)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new _e()), e;
|
|
3808
3808
|
}
|
|
3809
3809
|
);
|
|
3810
3810
|
}
|
|
@@ -3813,7 +3813,7 @@ class Er {
|
|
|
3813
3813
|
t,
|
|
3814
3814
|
() => {
|
|
3815
3815
|
let e = null;
|
|
3816
|
-
return this.regexAccept(String.raw`(?:ldi)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ge()), e;
|
|
3816
|
+
return this.regexAccept(String.raw`(?:ldi)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ge()), e;
|
|
3817
3817
|
}
|
|
3818
3818
|
);
|
|
3819
3819
|
}
|
|
@@ -3822,7 +3822,7 @@ class Er {
|
|
|
3822
3822
|
t,
|
|
3823
3823
|
() => {
|
|
3824
3824
|
let e = null;
|
|
3825
|
-
return this.regexAccept(String.raw`(?:lddr)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Ie()), e;
|
|
3825
|
+
return this.regexAccept(String.raw`(?:lddr)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Ie()), e;
|
|
3826
3826
|
}
|
|
3827
3827
|
);
|
|
3828
3828
|
}
|
|
@@ -3831,7 +3831,7 @@ class Er {
|
|
|
3831
3831
|
t,
|
|
3832
3832
|
() => {
|
|
3833
3833
|
let e = null;
|
|
3834
|
-
return this.regexAccept(String.raw`(?:ldd)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new we()), e;
|
|
3834
|
+
return this.regexAccept(String.raw`(?:ldd)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new we()), e;
|
|
3835
3835
|
}
|
|
3836
3836
|
);
|
|
3837
3837
|
}
|
|
@@ -3840,7 +3840,7 @@ class Er {
|
|
|
3840
3840
|
t,
|
|
3841
3841
|
() => {
|
|
3842
3842
|
let e = null;
|
|
3843
|
-
return this.regexAccept(String.raw`(?:cpir)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new xe()), e;
|
|
3843
|
+
return this.regexAccept(String.raw`(?:cpir)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new xe()), e;
|
|
3844
3844
|
}
|
|
3845
3845
|
);
|
|
3846
3846
|
}
|
|
@@ -3849,7 +3849,7 @@ class Er {
|
|
|
3849
3849
|
t,
|
|
3850
3850
|
() => {
|
|
3851
3851
|
let e = null;
|
|
3852
|
-
return this.regexAccept(String.raw`(?:cpi)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new fe()), e;
|
|
3852
|
+
return this.regexAccept(String.raw`(?:cpi)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new fe()), e;
|
|
3853
3853
|
}
|
|
3854
3854
|
);
|
|
3855
3855
|
}
|
|
@@ -3858,7 +3858,7 @@ class Er {
|
|
|
3858
3858
|
t,
|
|
3859
3859
|
() => {
|
|
3860
3860
|
let e = null;
|
|
3861
|
-
return this.regexAccept(String.raw`(?:cpdr)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Ae()), e;
|
|
3861
|
+
return this.regexAccept(String.raw`(?:cpdr)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Ae()), e;
|
|
3862
3862
|
}
|
|
3863
3863
|
);
|
|
3864
3864
|
}
|
|
@@ -3867,7 +3867,7 @@ class Er {
|
|
|
3867
3867
|
t,
|
|
3868
3868
|
() => {
|
|
3869
3869
|
let e = null;
|
|
3870
|
-
return this.regexAccept(String.raw`(?:cpd)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Le()), e;
|
|
3870
|
+
return this.regexAccept(String.raw`(?:cpd)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Le()), e;
|
|
3871
3871
|
}
|
|
3872
3872
|
);
|
|
3873
3873
|
}
|
|
@@ -3920,7 +3920,7 @@ class Er {
|
|
|
3920
3920
|
t,
|
|
3921
3921
|
() => {
|
|
3922
3922
|
let e = null;
|
|
3923
|
-
return this.regexAccept(String.raw`(?:add)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$0(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Se()), e;
|
|
3923
|
+
return this.regexAccept(String.raw`(?:add)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$0(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Se()), e;
|
|
3924
3924
|
}
|
|
3925
3925
|
);
|
|
3926
3926
|
}
|
|
@@ -3929,7 +3929,7 @@ class Er {
|
|
|
3929
3929
|
t,
|
|
3930
3930
|
() => {
|
|
3931
3931
|
let e, s = null;
|
|
3932
|
-
return this.regexAccept(String.raw`(?:add)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$1(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ke(e)), s;
|
|
3932
|
+
return this.regexAccept(String.raw`(?:add)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$1(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ke(e)), s;
|
|
3933
3933
|
}
|
|
3934
3934
|
);
|
|
3935
3935
|
}
|
|
@@ -3938,7 +3938,7 @@ class Er {
|
|
|
3938
3938
|
t,
|
|
3939
3939
|
() => {
|
|
3940
3940
|
let e, s = null;
|
|
3941
|
-
return this.regexAccept(String.raw`(?:add)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$2(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ee(e)), s;
|
|
3941
|
+
return this.regexAccept(String.raw`(?:add)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$2(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ee(e)), s;
|
|
3942
3942
|
}
|
|
3943
3943
|
);
|
|
3944
3944
|
}
|
|
@@ -3947,7 +3947,7 @@ class Er {
|
|
|
3947
3947
|
t,
|
|
3948
3948
|
() => {
|
|
3949
3949
|
let e, s = null;
|
|
3950
|
-
return this.regexAccept(String.raw`(?:add)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$3(t + 1, n) || !0) && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ve(e)), s;
|
|
3950
|
+
return this.regexAccept(String.raw`(?:add)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$3(t + 1, n) || !0) && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ve(e)), s;
|
|
3951
3951
|
}
|
|
3952
3952
|
);
|
|
3953
3953
|
}
|
|
@@ -3956,7 +3956,7 @@ class Er {
|
|
|
3956
3956
|
t,
|
|
3957
3957
|
() => {
|
|
3958
3958
|
let e, s, r = null;
|
|
3959
|
-
return this.regexAccept(String.raw`(?:add)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$4(t + 1, n) || !0) && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Ce(e, s)), r;
|
|
3959
|
+
return this.regexAccept(String.raw`(?:add)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$4(t + 1, n) || !0) && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Ce(e, s)), r;
|
|
3960
3960
|
}
|
|
3961
3961
|
);
|
|
3962
3962
|
}
|
|
@@ -3965,7 +3965,7 @@ class Er {
|
|
|
3965
3965
|
t,
|
|
3966
3966
|
() => {
|
|
3967
3967
|
let e = null;
|
|
3968
|
-
return this.regexAccept(String.raw`(?:adc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$5(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new be()), e;
|
|
3968
|
+
return this.regexAccept(String.raw`(?:adc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$5(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new be()), e;
|
|
3969
3969
|
}
|
|
3970
3970
|
);
|
|
3971
3971
|
}
|
|
@@ -3974,7 +3974,7 @@ class Er {
|
|
|
3974
3974
|
t,
|
|
3975
3975
|
() => {
|
|
3976
3976
|
let e, s = null;
|
|
3977
|
-
return this.regexAccept(String.raw`(?:adc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$6(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new De(e)), s;
|
|
3977
|
+
return this.regexAccept(String.raw`(?:adc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$6(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new De(e)), s;
|
|
3978
3978
|
}
|
|
3979
3979
|
);
|
|
3980
3980
|
}
|
|
@@ -3983,7 +3983,7 @@ class Er {
|
|
|
3983
3983
|
t,
|
|
3984
3984
|
() => {
|
|
3985
3985
|
let e, s = null;
|
|
3986
|
-
return this.regexAccept(String.raw`(?:adc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$7(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Re(e)), s;
|
|
3986
|
+
return this.regexAccept(String.raw`(?:adc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$7(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Re(e)), s;
|
|
3987
3987
|
}
|
|
3988
3988
|
);
|
|
3989
3989
|
}
|
|
@@ -3992,7 +3992,7 @@ class Er {
|
|
|
3992
3992
|
t,
|
|
3993
3993
|
() => {
|
|
3994
3994
|
let e, s = null;
|
|
3995
|
-
return this.regexAccept(String.raw`(?:adc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$8(t + 1, n) || !0) && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new qe(e)), s;
|
|
3995
|
+
return this.regexAccept(String.raw`(?:adc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$8(t + 1, n) || !0) && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new qe(e)), s;
|
|
3996
3996
|
}
|
|
3997
3997
|
);
|
|
3998
3998
|
}
|
|
@@ -4001,7 +4001,7 @@ class Er {
|
|
|
4001
4001
|
t,
|
|
4002
4002
|
() => {
|
|
4003
4003
|
let e, s, r = null;
|
|
4004
|
-
return this.regexAccept(String.raw`(?:adc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$9(t + 1, n) || !0) && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Be(e, s)), r;
|
|
4004
|
+
return this.regexAccept(String.raw`(?:adc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$9(t + 1, n) || !0) && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Be(e, s)), r;
|
|
4005
4005
|
}
|
|
4006
4006
|
);
|
|
4007
4007
|
}
|
|
@@ -4010,7 +4010,7 @@ class Er {
|
|
|
4010
4010
|
t,
|
|
4011
4011
|
() => {
|
|
4012
4012
|
let e = null;
|
|
4013
|
-
return this.regexAccept(String.raw`(?:sub)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$10(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ye()), e;
|
|
4013
|
+
return this.regexAccept(String.raw`(?:sub)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$10(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ye()), e;
|
|
4014
4014
|
}
|
|
4015
4015
|
);
|
|
4016
4016
|
}
|
|
@@ -4019,7 +4019,7 @@ class Er {
|
|
|
4019
4019
|
t,
|
|
4020
4020
|
() => {
|
|
4021
4021
|
let e, s = null;
|
|
4022
|
-
return this.regexAccept(String.raw`(?:sub)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$11(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Oe(e)), s;
|
|
4022
|
+
return this.regexAccept(String.raw`(?:sub)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$11(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Oe(e)), s;
|
|
4023
4023
|
}
|
|
4024
4024
|
);
|
|
4025
4025
|
}
|
|
@@ -4028,7 +4028,7 @@ class Er {
|
|
|
4028
4028
|
t,
|
|
4029
4029
|
() => {
|
|
4030
4030
|
let e, s = null;
|
|
4031
|
-
return this.regexAccept(String.raw`(?:sub)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$12(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ne(e)), s;
|
|
4031
|
+
return this.regexAccept(String.raw`(?:sub)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$12(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ne(e)), s;
|
|
4032
4032
|
}
|
|
4033
4033
|
);
|
|
4034
4034
|
}
|
|
@@ -4037,7 +4037,7 @@ class Er {
|
|
|
4037
4037
|
t,
|
|
4038
4038
|
() => {
|
|
4039
4039
|
let e, s = null;
|
|
4040
|
-
return this.regexAccept(String.raw`(?:sub)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$13(t + 1, n) || !0) && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new
|
|
4040
|
+
return this.regexAccept(String.raw`(?:sub)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$13(t + 1, n) || !0) && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Pe(e)), s;
|
|
4041
4041
|
}
|
|
4042
4042
|
);
|
|
4043
4043
|
}
|
|
@@ -4046,7 +4046,7 @@ class Er {
|
|
|
4046
4046
|
t,
|
|
4047
4047
|
() => {
|
|
4048
4048
|
let e, s, r = null;
|
|
4049
|
-
return this.regexAccept(String.raw`(?:sub)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$14(t + 1, n) || !0) && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new
|
|
4049
|
+
return this.regexAccept(String.raw`(?:sub)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$14(t + 1, n) || !0) && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Me(e, s)), r;
|
|
4050
4050
|
}
|
|
4051
4051
|
);
|
|
4052
4052
|
}
|
|
@@ -4055,7 +4055,7 @@ class Er {
|
|
|
4055
4055
|
t,
|
|
4056
4056
|
() => {
|
|
4057
4057
|
let e = null;
|
|
4058
|
-
return this.regexAccept(String.raw`(?:sbc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$15(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Ve()), e;
|
|
4058
|
+
return this.regexAccept(String.raw`(?:sbc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$15(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Ve()), e;
|
|
4059
4059
|
}
|
|
4060
4060
|
);
|
|
4061
4061
|
}
|
|
@@ -4064,7 +4064,7 @@ class Er {
|
|
|
4064
4064
|
t,
|
|
4065
4065
|
() => {
|
|
4066
4066
|
let e, s = null;
|
|
4067
|
-
return this.regexAccept(String.raw`(?:sbc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$16(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Fe(e)), s;
|
|
4067
|
+
return this.regexAccept(String.raw`(?:sbc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$16(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Fe(e)), s;
|
|
4068
4068
|
}
|
|
4069
4069
|
);
|
|
4070
4070
|
}
|
|
@@ -4073,7 +4073,7 @@ class Er {
|
|
|
4073
4073
|
t,
|
|
4074
4074
|
() => {
|
|
4075
4075
|
let e, s = null;
|
|
4076
|
-
return this.regexAccept(String.raw`(?:sbc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$17(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new pe(e)), s;
|
|
4076
|
+
return this.regexAccept(String.raw`(?:sbc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$17(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new pe(e)), s;
|
|
4077
4077
|
}
|
|
4078
4078
|
);
|
|
4079
4079
|
}
|
|
@@ -4082,7 +4082,7 @@ class Er {
|
|
|
4082
4082
|
t,
|
|
4083
4083
|
() => {
|
|
4084
4084
|
let e, s = null;
|
|
4085
|
-
return this.regexAccept(String.raw`(?:sbc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$18(t + 1, n) || !0) && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ge(e)), s;
|
|
4085
|
+
return this.regexAccept(String.raw`(?:sbc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$18(t + 1, n) || !0) && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ge(e)), s;
|
|
4086
4086
|
}
|
|
4087
4087
|
);
|
|
4088
4088
|
}
|
|
@@ -4091,7 +4091,7 @@ class Er {
|
|
|
4091
4091
|
t,
|
|
4092
4092
|
() => {
|
|
4093
4093
|
let e, s, r = null;
|
|
4094
|
-
return this.regexAccept(String.raw`(?:sbc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$19(t + 1, n) || !0) && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Je(e, s)), r;
|
|
4094
|
+
return this.regexAccept(String.raw`(?:sbc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$19(t + 1, n) || !0) && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Je(e, s)), r;
|
|
4095
4095
|
}
|
|
4096
4096
|
);
|
|
4097
4097
|
}
|
|
@@ -4100,7 +4100,7 @@ class Er {
|
|
|
4100
4100
|
t,
|
|
4101
4101
|
() => {
|
|
4102
4102
|
let e = null;
|
|
4103
|
-
return this.regexAccept(String.raw`(?:and)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$20(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Xe()), e;
|
|
4103
|
+
return this.regexAccept(String.raw`(?:and)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$20(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Xe()), e;
|
|
4104
4104
|
}
|
|
4105
4105
|
);
|
|
4106
4106
|
}
|
|
@@ -4109,7 +4109,7 @@ class Er {
|
|
|
4109
4109
|
t,
|
|
4110
4110
|
() => {
|
|
4111
4111
|
let e, s = null;
|
|
4112
|
-
return this.regexAccept(String.raw`(?:and)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$21(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new je(e)), s;
|
|
4112
|
+
return this.regexAccept(String.raw`(?:and)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$21(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new je(e)), s;
|
|
4113
4113
|
}
|
|
4114
4114
|
);
|
|
4115
4115
|
}
|
|
@@ -4118,7 +4118,7 @@ class Er {
|
|
|
4118
4118
|
t,
|
|
4119
4119
|
() => {
|
|
4120
4120
|
let e, s = null;
|
|
4121
|
-
return this.regexAccept(String.raw`(?:and)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$22(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Qe(e)), s;
|
|
4121
|
+
return this.regexAccept(String.raw`(?:and)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$22(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Qe(e)), s;
|
|
4122
4122
|
}
|
|
4123
4123
|
);
|
|
4124
4124
|
}
|
|
@@ -4127,7 +4127,7 @@ class Er {
|
|
|
4127
4127
|
t,
|
|
4128
4128
|
() => {
|
|
4129
4129
|
let e, s = null;
|
|
4130
|
-
return this.regexAccept(String.raw`(?:and)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$23(t + 1, n) || !0) && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ue(e)), s;
|
|
4130
|
+
return this.regexAccept(String.raw`(?:and)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$23(t + 1, n) || !0) && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ue(e)), s;
|
|
4131
4131
|
}
|
|
4132
4132
|
);
|
|
4133
4133
|
}
|
|
@@ -4136,7 +4136,7 @@ class Er {
|
|
|
4136
4136
|
t,
|
|
4137
4137
|
() => {
|
|
4138
4138
|
let e, s, r = null;
|
|
4139
|
-
return this.regexAccept(String.raw`(?:and)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$24(t + 1, n) || !0) && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Ye(e, s)), r;
|
|
4139
|
+
return this.regexAccept(String.raw`(?:and)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$24(t + 1, n) || !0) && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Ye(e, s)), r;
|
|
4140
4140
|
}
|
|
4141
4141
|
);
|
|
4142
4142
|
}
|
|
@@ -4145,7 +4145,7 @@ class Er {
|
|
|
4145
4145
|
t,
|
|
4146
4146
|
() => {
|
|
4147
4147
|
let e = null;
|
|
4148
|
-
return this.regexAccept(String.raw`(?:or)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$25(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ze()), e;
|
|
4148
|
+
return this.regexAccept(String.raw`(?:or)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$25(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ze()), e;
|
|
4149
4149
|
}
|
|
4150
4150
|
);
|
|
4151
4151
|
}
|
|
@@ -4154,7 +4154,7 @@ class Er {
|
|
|
4154
4154
|
t,
|
|
4155
4155
|
() => {
|
|
4156
4156
|
let e, s = null;
|
|
4157
|
-
return this.regexAccept(String.raw`(?:or)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$26(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new We(e)), s;
|
|
4157
|
+
return this.regexAccept(String.raw`(?:or)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$26(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new We(e)), s;
|
|
4158
4158
|
}
|
|
4159
4159
|
);
|
|
4160
4160
|
}
|
|
@@ -4163,7 +4163,7 @@ class Er {
|
|
|
4163
4163
|
t,
|
|
4164
4164
|
() => {
|
|
4165
4165
|
let e, s = null;
|
|
4166
|
-
return this.regexAccept(String.raw`(?:or)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$27(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new He(e)), s;
|
|
4166
|
+
return this.regexAccept(String.raw`(?:or)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$27(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new He(e)), s;
|
|
4167
4167
|
}
|
|
4168
4168
|
);
|
|
4169
4169
|
}
|
|
@@ -4172,7 +4172,7 @@ class Er {
|
|
|
4172
4172
|
t,
|
|
4173
4173
|
() => {
|
|
4174
4174
|
let e, s = null;
|
|
4175
|
-
return this.regexAccept(String.raw`(?:or)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$28(t + 1, n) || !0) && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ze(e)), s;
|
|
4175
|
+
return this.regexAccept(String.raw`(?:or)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$28(t + 1, n) || !0) && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ze(e)), s;
|
|
4176
4176
|
}
|
|
4177
4177
|
);
|
|
4178
4178
|
}
|
|
@@ -4181,7 +4181,7 @@ class Er {
|
|
|
4181
4181
|
t,
|
|
4182
4182
|
() => {
|
|
4183
4183
|
let e, s, r = null;
|
|
4184
|
-
return this.regexAccept(String.raw`(?:or)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$29(t + 1, n) || !0) && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Te(e, s)), r;
|
|
4184
|
+
return this.regexAccept(String.raw`(?:or)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$29(t + 1, n) || !0) && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Te(e, s)), r;
|
|
4185
4185
|
}
|
|
4186
4186
|
);
|
|
4187
4187
|
}
|
|
@@ -4190,7 +4190,7 @@ class Er {
|
|
|
4190
4190
|
t,
|
|
4191
4191
|
() => {
|
|
4192
4192
|
let e = null;
|
|
4193
|
-
return this.regexAccept(String.raw`(?:xor)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$30(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Ke()), e;
|
|
4193
|
+
return this.regexAccept(String.raw`(?:xor)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$30(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Ke()), e;
|
|
4194
4194
|
}
|
|
4195
4195
|
);
|
|
4196
4196
|
}
|
|
@@ -4199,7 +4199,7 @@ class Er {
|
|
|
4199
4199
|
t,
|
|
4200
4200
|
() => {
|
|
4201
4201
|
let e, s = null;
|
|
4202
|
-
return this.regexAccept(String.raw`(?:xor)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$31(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new de(e)), s;
|
|
4202
|
+
return this.regexAccept(String.raw`(?:xor)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$31(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new de(e)), s;
|
|
4203
4203
|
}
|
|
4204
4204
|
);
|
|
4205
4205
|
}
|
|
@@ -4208,7 +4208,7 @@ class Er {
|
|
|
4208
4208
|
t,
|
|
4209
4209
|
() => {
|
|
4210
4210
|
let e, s = null;
|
|
4211
|
-
return this.regexAccept(String.raw`(?:xor)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$32(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new $e(e)), s;
|
|
4211
|
+
return this.regexAccept(String.raw`(?:xor)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$32(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new $e(e)), s;
|
|
4212
4212
|
}
|
|
4213
4213
|
);
|
|
4214
4214
|
}
|
|
@@ -4217,7 +4217,7 @@ class Er {
|
|
|
4217
4217
|
t,
|
|
4218
4218
|
() => {
|
|
4219
4219
|
let e, s = null;
|
|
4220
|
-
return this.regexAccept(String.raw`(?:xor)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$33(t + 1, n) || !0) && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ti(e)), s;
|
|
4220
|
+
return this.regexAccept(String.raw`(?:xor)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$33(t + 1, n) || !0) && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ti(e)), s;
|
|
4221
4221
|
}
|
|
4222
4222
|
);
|
|
4223
4223
|
}
|
|
@@ -4226,7 +4226,7 @@ class Er {
|
|
|
4226
4226
|
t,
|
|
4227
4227
|
() => {
|
|
4228
4228
|
let e, s, r = null;
|
|
4229
|
-
return this.regexAccept(String.raw`(?:xor)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$34(t + 1, n) || !0) && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new ni(e, s)), r;
|
|
4229
|
+
return this.regexAccept(String.raw`(?:xor)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$34(t + 1, n) || !0) && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new ni(e, s)), r;
|
|
4230
4230
|
}
|
|
4231
4231
|
);
|
|
4232
4232
|
}
|
|
@@ -4235,7 +4235,7 @@ class Er {
|
|
|
4235
4235
|
t,
|
|
4236
4236
|
() => {
|
|
4237
4237
|
let e = null;
|
|
4238
|
-
return this.regexAccept(String.raw`(?:cp)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$35(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ei()), e;
|
|
4238
|
+
return this.regexAccept(String.raw`(?:cp)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$35(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ei()), e;
|
|
4239
4239
|
}
|
|
4240
4240
|
);
|
|
4241
4241
|
}
|
|
@@ -4244,7 +4244,7 @@ class Er {
|
|
|
4244
4244
|
t,
|
|
4245
4245
|
() => {
|
|
4246
4246
|
let e, s = null;
|
|
4247
|
-
return this.regexAccept(String.raw`(?:cp)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$36(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ii(e)), s;
|
|
4247
|
+
return this.regexAccept(String.raw`(?:cp)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$36(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ii(e)), s;
|
|
4248
4248
|
}
|
|
4249
4249
|
);
|
|
4250
4250
|
}
|
|
@@ -4253,7 +4253,7 @@ class Er {
|
|
|
4253
4253
|
t,
|
|
4254
4254
|
() => {
|
|
4255
4255
|
let e, s = null;
|
|
4256
|
-
return this.regexAccept(String.raw`(?:cp)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$37(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new si(e)), s;
|
|
4256
|
+
return this.regexAccept(String.raw`(?:cp)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$37(t + 1, n) || !0) && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new si(e)), s;
|
|
4257
4257
|
}
|
|
4258
4258
|
);
|
|
4259
4259
|
}
|
|
@@ -4262,7 +4262,7 @@ class Er {
|
|
|
4262
4262
|
t,
|
|
4263
4263
|
() => {
|
|
4264
4264
|
let e, s = null;
|
|
4265
|
-
return this.regexAccept(String.raw`(?:cp)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$38(t + 1, n) || !0) && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ri(e)), s;
|
|
4265
|
+
return this.regexAccept(String.raw`(?:cp)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$38(t + 1, n) || !0) && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ri(e)), s;
|
|
4266
4266
|
}
|
|
4267
4267
|
);
|
|
4268
4268
|
}
|
|
@@ -4271,7 +4271,7 @@ class Er {
|
|
|
4271
4271
|
t,
|
|
4272
4272
|
() => {
|
|
4273
4273
|
let e, s, r = null;
|
|
4274
|
-
return this.regexAccept(String.raw`(?:cp)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$39(t + 1, n) || !0) && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new ui(e, s)), r;
|
|
4274
|
+
return this.regexAccept(String.raw`(?:cp)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$39(t + 1, n) || !0) && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new ui(e, s)), r;
|
|
4275
4275
|
}
|
|
4276
4276
|
);
|
|
4277
4277
|
}
|
|
@@ -4280,7 +4280,7 @@ class Er {
|
|
|
4280
4280
|
t,
|
|
4281
4281
|
() => {
|
|
4282
4282
|
let e = null;
|
|
4283
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4283
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4284
4284
|
kind: "ArithmeticLogic8Instruction_$0"
|
|
4285
4285
|
/* ArithmeticLogic8Instruction_$0 */
|
|
4286
4286
|
}), e;
|
|
@@ -4292,7 +4292,7 @@ class Er {
|
|
|
4292
4292
|
t,
|
|
4293
4293
|
() => {
|
|
4294
4294
|
let e = null;
|
|
4295
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4295
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4296
4296
|
kind: "ArithmeticLogic8Instruction_$1"
|
|
4297
4297
|
/* ArithmeticLogic8Instruction_$1 */
|
|
4298
4298
|
}), e;
|
|
@@ -4304,7 +4304,7 @@ class Er {
|
|
|
4304
4304
|
t,
|
|
4305
4305
|
() => {
|
|
4306
4306
|
let e = null;
|
|
4307
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4307
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4308
4308
|
kind: "ArithmeticLogic8Instruction_$2"
|
|
4309
4309
|
/* ArithmeticLogic8Instruction_$2 */
|
|
4310
4310
|
}), e;
|
|
@@ -4316,7 +4316,7 @@ class Er {
|
|
|
4316
4316
|
t,
|
|
4317
4317
|
() => {
|
|
4318
4318
|
let e = null;
|
|
4319
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4319
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4320
4320
|
kind: "ArithmeticLogic8Instruction_$3"
|
|
4321
4321
|
/* ArithmeticLogic8Instruction_$3 */
|
|
4322
4322
|
}), e;
|
|
@@ -4328,7 +4328,7 @@ class Er {
|
|
|
4328
4328
|
t,
|
|
4329
4329
|
() => {
|
|
4330
4330
|
let e = null;
|
|
4331
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4331
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4332
4332
|
kind: "ArithmeticLogic8Instruction_$4"
|
|
4333
4333
|
/* ArithmeticLogic8Instruction_$4 */
|
|
4334
4334
|
}), e;
|
|
@@ -4340,7 +4340,7 @@ class Er {
|
|
|
4340
4340
|
t,
|
|
4341
4341
|
() => {
|
|
4342
4342
|
let e = null;
|
|
4343
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4343
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4344
4344
|
kind: "ArithmeticLogic8Instruction_$5"
|
|
4345
4345
|
/* ArithmeticLogic8Instruction_$5 */
|
|
4346
4346
|
}), e;
|
|
@@ -4352,7 +4352,7 @@ class Er {
|
|
|
4352
4352
|
t,
|
|
4353
4353
|
() => {
|
|
4354
4354
|
let e = null;
|
|
4355
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4355
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4356
4356
|
kind: "ArithmeticLogic8Instruction_$6"
|
|
4357
4357
|
/* ArithmeticLogic8Instruction_$6 */
|
|
4358
4358
|
}), e;
|
|
@@ -4364,7 +4364,7 @@ class Er {
|
|
|
4364
4364
|
t,
|
|
4365
4365
|
() => {
|
|
4366
4366
|
let e = null;
|
|
4367
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4367
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4368
4368
|
kind: "ArithmeticLogic8Instruction_$7"
|
|
4369
4369
|
/* ArithmeticLogic8Instruction_$7 */
|
|
4370
4370
|
}), e;
|
|
@@ -4376,7 +4376,7 @@ class Er {
|
|
|
4376
4376
|
t,
|
|
4377
4377
|
() => {
|
|
4378
4378
|
let e = null;
|
|
4379
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4379
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4380
4380
|
kind: "ArithmeticLogic8Instruction_$8"
|
|
4381
4381
|
/* ArithmeticLogic8Instruction_$8 */
|
|
4382
4382
|
}), e;
|
|
@@ -4388,7 +4388,7 @@ class Er {
|
|
|
4388
4388
|
t,
|
|
4389
4389
|
() => {
|
|
4390
4390
|
let e = null;
|
|
4391
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4391
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4392
4392
|
kind: "ArithmeticLogic8Instruction_$9"
|
|
4393
4393
|
/* ArithmeticLogic8Instruction_$9 */
|
|
4394
4394
|
}), e;
|
|
@@ -4400,7 +4400,7 @@ class Er {
|
|
|
4400
4400
|
t,
|
|
4401
4401
|
() => {
|
|
4402
4402
|
let e = null;
|
|
4403
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4403
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4404
4404
|
kind: "ArithmeticLogic8Instruction_$10"
|
|
4405
4405
|
/* ArithmeticLogic8Instruction_$10 */
|
|
4406
4406
|
}), e;
|
|
@@ -4412,7 +4412,7 @@ class Er {
|
|
|
4412
4412
|
t,
|
|
4413
4413
|
() => {
|
|
4414
4414
|
let e = null;
|
|
4415
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4415
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4416
4416
|
kind: "ArithmeticLogic8Instruction_$11"
|
|
4417
4417
|
/* ArithmeticLogic8Instruction_$11 */
|
|
4418
4418
|
}), e;
|
|
@@ -4424,7 +4424,7 @@ class Er {
|
|
|
4424
4424
|
t,
|
|
4425
4425
|
() => {
|
|
4426
4426
|
let e = null;
|
|
4427
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4427
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4428
4428
|
kind: "ArithmeticLogic8Instruction_$12"
|
|
4429
4429
|
/* ArithmeticLogic8Instruction_$12 */
|
|
4430
4430
|
}), e;
|
|
@@ -4436,7 +4436,7 @@ class Er {
|
|
|
4436
4436
|
t,
|
|
4437
4437
|
() => {
|
|
4438
4438
|
let e = null;
|
|
4439
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4439
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4440
4440
|
kind: "ArithmeticLogic8Instruction_$13"
|
|
4441
4441
|
/* ArithmeticLogic8Instruction_$13 */
|
|
4442
4442
|
}), e;
|
|
@@ -4448,7 +4448,7 @@ class Er {
|
|
|
4448
4448
|
t,
|
|
4449
4449
|
() => {
|
|
4450
4450
|
let e = null;
|
|
4451
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4451
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4452
4452
|
kind: "ArithmeticLogic8Instruction_$14"
|
|
4453
4453
|
/* ArithmeticLogic8Instruction_$14 */
|
|
4454
4454
|
}), e;
|
|
@@ -4460,7 +4460,7 @@ class Er {
|
|
|
4460
4460
|
t,
|
|
4461
4461
|
() => {
|
|
4462
4462
|
let e = null;
|
|
4463
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4463
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4464
4464
|
kind: "ArithmeticLogic8Instruction_$15"
|
|
4465
4465
|
/* ArithmeticLogic8Instruction_$15 */
|
|
4466
4466
|
}), e;
|
|
@@ -4472,7 +4472,7 @@ class Er {
|
|
|
4472
4472
|
t,
|
|
4473
4473
|
() => {
|
|
4474
4474
|
let e = null;
|
|
4475
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4475
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4476
4476
|
kind: "ArithmeticLogic8Instruction_$16"
|
|
4477
4477
|
/* ArithmeticLogic8Instruction_$16 */
|
|
4478
4478
|
}), e;
|
|
@@ -4484,7 +4484,7 @@ class Er {
|
|
|
4484
4484
|
t,
|
|
4485
4485
|
() => {
|
|
4486
4486
|
let e = null;
|
|
4487
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4487
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4488
4488
|
kind: "ArithmeticLogic8Instruction_$17"
|
|
4489
4489
|
/* ArithmeticLogic8Instruction_$17 */
|
|
4490
4490
|
}), e;
|
|
@@ -4496,7 +4496,7 @@ class Er {
|
|
|
4496
4496
|
t,
|
|
4497
4497
|
() => {
|
|
4498
4498
|
let e = null;
|
|
4499
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4499
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4500
4500
|
kind: "ArithmeticLogic8Instruction_$18"
|
|
4501
4501
|
/* ArithmeticLogic8Instruction_$18 */
|
|
4502
4502
|
}), e;
|
|
@@ -4508,7 +4508,7 @@ class Er {
|
|
|
4508
4508
|
t,
|
|
4509
4509
|
() => {
|
|
4510
4510
|
let e = null;
|
|
4511
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4511
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4512
4512
|
kind: "ArithmeticLogic8Instruction_$19"
|
|
4513
4513
|
/* ArithmeticLogic8Instruction_$19 */
|
|
4514
4514
|
}), e;
|
|
@@ -4520,7 +4520,7 @@ class Er {
|
|
|
4520
4520
|
t,
|
|
4521
4521
|
() => {
|
|
4522
4522
|
let e = null;
|
|
4523
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4523
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4524
4524
|
kind: "ArithmeticLogic8Instruction_$20"
|
|
4525
4525
|
/* ArithmeticLogic8Instruction_$20 */
|
|
4526
4526
|
}), e;
|
|
@@ -4532,7 +4532,7 @@ class Er {
|
|
|
4532
4532
|
t,
|
|
4533
4533
|
() => {
|
|
4534
4534
|
let e = null;
|
|
4535
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4535
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4536
4536
|
kind: "ArithmeticLogic8Instruction_$21"
|
|
4537
4537
|
/* ArithmeticLogic8Instruction_$21 */
|
|
4538
4538
|
}), e;
|
|
@@ -4544,7 +4544,7 @@ class Er {
|
|
|
4544
4544
|
t,
|
|
4545
4545
|
() => {
|
|
4546
4546
|
let e = null;
|
|
4547
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4547
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4548
4548
|
kind: "ArithmeticLogic8Instruction_$22"
|
|
4549
4549
|
/* ArithmeticLogic8Instruction_$22 */
|
|
4550
4550
|
}), e;
|
|
@@ -4556,7 +4556,7 @@ class Er {
|
|
|
4556
4556
|
t,
|
|
4557
4557
|
() => {
|
|
4558
4558
|
let e = null;
|
|
4559
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4559
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4560
4560
|
kind: "ArithmeticLogic8Instruction_$23"
|
|
4561
4561
|
/* ArithmeticLogic8Instruction_$23 */
|
|
4562
4562
|
}), e;
|
|
@@ -4568,7 +4568,7 @@ class Er {
|
|
|
4568
4568
|
t,
|
|
4569
4569
|
() => {
|
|
4570
4570
|
let e = null;
|
|
4571
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4571
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4572
4572
|
kind: "ArithmeticLogic8Instruction_$24"
|
|
4573
4573
|
/* ArithmeticLogic8Instruction_$24 */
|
|
4574
4574
|
}), e;
|
|
@@ -4580,7 +4580,7 @@ class Er {
|
|
|
4580
4580
|
t,
|
|
4581
4581
|
() => {
|
|
4582
4582
|
let e = null;
|
|
4583
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4583
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4584
4584
|
kind: "ArithmeticLogic8Instruction_$25"
|
|
4585
4585
|
/* ArithmeticLogic8Instruction_$25 */
|
|
4586
4586
|
}), e;
|
|
@@ -4592,7 +4592,7 @@ class Er {
|
|
|
4592
4592
|
t,
|
|
4593
4593
|
() => {
|
|
4594
4594
|
let e = null;
|
|
4595
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4595
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4596
4596
|
kind: "ArithmeticLogic8Instruction_$26"
|
|
4597
4597
|
/* ArithmeticLogic8Instruction_$26 */
|
|
4598
4598
|
}), e;
|
|
@@ -4604,7 +4604,7 @@ class Er {
|
|
|
4604
4604
|
t,
|
|
4605
4605
|
() => {
|
|
4606
4606
|
let e = null;
|
|
4607
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4607
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4608
4608
|
kind: "ArithmeticLogic8Instruction_$27"
|
|
4609
4609
|
/* ArithmeticLogic8Instruction_$27 */
|
|
4610
4610
|
}), e;
|
|
@@ -4616,7 +4616,7 @@ class Er {
|
|
|
4616
4616
|
t,
|
|
4617
4617
|
() => {
|
|
4618
4618
|
let e = null;
|
|
4619
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4619
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4620
4620
|
kind: "ArithmeticLogic8Instruction_$28"
|
|
4621
4621
|
/* ArithmeticLogic8Instruction_$28 */
|
|
4622
4622
|
}), e;
|
|
@@ -4628,7 +4628,7 @@ class Er {
|
|
|
4628
4628
|
t,
|
|
4629
4629
|
() => {
|
|
4630
4630
|
let e = null;
|
|
4631
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4631
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4632
4632
|
kind: "ArithmeticLogic8Instruction_$29"
|
|
4633
4633
|
/* ArithmeticLogic8Instruction_$29 */
|
|
4634
4634
|
}), e;
|
|
@@ -4640,7 +4640,7 @@ class Er {
|
|
|
4640
4640
|
t,
|
|
4641
4641
|
() => {
|
|
4642
4642
|
let e = null;
|
|
4643
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4643
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4644
4644
|
kind: "ArithmeticLogic8Instruction_$30"
|
|
4645
4645
|
/* ArithmeticLogic8Instruction_$30 */
|
|
4646
4646
|
}), e;
|
|
@@ -4652,7 +4652,7 @@ class Er {
|
|
|
4652
4652
|
t,
|
|
4653
4653
|
() => {
|
|
4654
4654
|
let e = null;
|
|
4655
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4655
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4656
4656
|
kind: "ArithmeticLogic8Instruction_$31"
|
|
4657
4657
|
/* ArithmeticLogic8Instruction_$31 */
|
|
4658
4658
|
}), e;
|
|
@@ -4664,7 +4664,7 @@ class Er {
|
|
|
4664
4664
|
t,
|
|
4665
4665
|
() => {
|
|
4666
4666
|
let e = null;
|
|
4667
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4667
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4668
4668
|
kind: "ArithmeticLogic8Instruction_$32"
|
|
4669
4669
|
/* ArithmeticLogic8Instruction_$32 */
|
|
4670
4670
|
}), e;
|
|
@@ -4676,7 +4676,7 @@ class Er {
|
|
|
4676
4676
|
t,
|
|
4677
4677
|
() => {
|
|
4678
4678
|
let e = null;
|
|
4679
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4679
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4680
4680
|
kind: "ArithmeticLogic8Instruction_$33"
|
|
4681
4681
|
/* ArithmeticLogic8Instruction_$33 */
|
|
4682
4682
|
}), e;
|
|
@@ -4688,7 +4688,7 @@ class Er {
|
|
|
4688
4688
|
t,
|
|
4689
4689
|
() => {
|
|
4690
4690
|
let e = null;
|
|
4691
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4691
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4692
4692
|
kind: "ArithmeticLogic8Instruction_$34"
|
|
4693
4693
|
/* ArithmeticLogic8Instruction_$34 */
|
|
4694
4694
|
}), e;
|
|
@@ -4700,7 +4700,7 @@ class Er {
|
|
|
4700
4700
|
t,
|
|
4701
4701
|
() => {
|
|
4702
4702
|
let e = null;
|
|
4703
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4703
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4704
4704
|
kind: "ArithmeticLogic8Instruction_$35"
|
|
4705
4705
|
/* ArithmeticLogic8Instruction_$35 */
|
|
4706
4706
|
}), e;
|
|
@@ -4712,7 +4712,7 @@ class Er {
|
|
|
4712
4712
|
t,
|
|
4713
4713
|
() => {
|
|
4714
4714
|
let e = null;
|
|
4715
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4715
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4716
4716
|
kind: "ArithmeticLogic8Instruction_$36"
|
|
4717
4717
|
/* ArithmeticLogic8Instruction_$36 */
|
|
4718
4718
|
}), e;
|
|
@@ -4724,7 +4724,7 @@ class Er {
|
|
|
4724
4724
|
t,
|
|
4725
4725
|
() => {
|
|
4726
4726
|
let e = null;
|
|
4727
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4727
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4728
4728
|
kind: "ArithmeticLogic8Instruction_$37"
|
|
4729
4729
|
/* ArithmeticLogic8Instruction_$37 */
|
|
4730
4730
|
}), e;
|
|
@@ -4736,7 +4736,7 @@ class Er {
|
|
|
4736
4736
|
t,
|
|
4737
4737
|
() => {
|
|
4738
4738
|
let e = null;
|
|
4739
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4739
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4740
4740
|
kind: "ArithmeticLogic8Instruction_$38"
|
|
4741
4741
|
/* ArithmeticLogic8Instruction_$38 */
|
|
4742
4742
|
}), e;
|
|
@@ -4748,7 +4748,7 @@ class Er {
|
|
|
4748
4748
|
t,
|
|
4749
4749
|
() => {
|
|
4750
4750
|
let e = null;
|
|
4751
|
-
return this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4751
|
+
return this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = {
|
|
4752
4752
|
kind: "ArithmeticLogic8Instruction_$39"
|
|
4753
4753
|
/* ArithmeticLogic8Instruction_$39 */
|
|
4754
4754
|
}), e;
|
|
@@ -4772,7 +4772,7 @@ class Er {
|
|
|
4772
4772
|
t,
|
|
4773
4773
|
() => {
|
|
4774
4774
|
let e, s = null;
|
|
4775
|
-
return this.regexAccept(String.raw`(?:inc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ci(e)), s;
|
|
4775
|
+
return this.regexAccept(String.raw`(?:inc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ci(e)), s;
|
|
4776
4776
|
}
|
|
4777
4777
|
);
|
|
4778
4778
|
}
|
|
@@ -4781,7 +4781,7 @@ class Er {
|
|
|
4781
4781
|
t,
|
|
4782
4782
|
() => {
|
|
4783
4783
|
let e = null;
|
|
4784
|
-
return this.regexAccept(String.raw`(?:inc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new li()), e;
|
|
4784
|
+
return this.regexAccept(String.raw`(?:inc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new li()), e;
|
|
4785
4785
|
}
|
|
4786
4786
|
);
|
|
4787
4787
|
}
|
|
@@ -4790,7 +4790,7 @@ class Er {
|
|
|
4790
4790
|
t,
|
|
4791
4791
|
() => {
|
|
4792
4792
|
let e, s = null;
|
|
4793
|
-
return this.regexAccept(String.raw`(?:inc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new oi(e)), s;
|
|
4793
|
+
return this.regexAccept(String.raw`(?:inc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new oi(e)), s;
|
|
4794
4794
|
}
|
|
4795
4795
|
);
|
|
4796
4796
|
}
|
|
@@ -4799,7 +4799,7 @@ class Er {
|
|
|
4799
4799
|
t,
|
|
4800
4800
|
() => {
|
|
4801
4801
|
let e, s = null;
|
|
4802
|
-
return this.regexAccept(String.raw`(?:inc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ai(e)), s;
|
|
4802
|
+
return this.regexAccept(String.raw`(?:inc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ai(e)), s;
|
|
4803
4803
|
}
|
|
4804
4804
|
);
|
|
4805
4805
|
}
|
|
@@ -4808,7 +4808,7 @@ class Er {
|
|
|
4808
4808
|
t,
|
|
4809
4809
|
() => {
|
|
4810
4810
|
let e, s = null;
|
|
4811
|
-
return this.regexAccept(String.raw`(?:dec)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new hi(e)), s;
|
|
4811
|
+
return this.regexAccept(String.raw`(?:dec)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new hi(e)), s;
|
|
4812
4812
|
}
|
|
4813
4813
|
);
|
|
4814
4814
|
}
|
|
@@ -4817,7 +4817,7 @@ class Er {
|
|
|
4817
4817
|
t,
|
|
4818
4818
|
() => {
|
|
4819
4819
|
let e = null;
|
|
4820
|
-
return this.regexAccept(String.raw`(?:dec)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new mi()), e;
|
|
4820
|
+
return this.regexAccept(String.raw`(?:dec)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new mi()), e;
|
|
4821
4821
|
}
|
|
4822
4822
|
);
|
|
4823
4823
|
}
|
|
@@ -4826,7 +4826,7 @@ class Er {
|
|
|
4826
4826
|
t,
|
|
4827
4827
|
() => {
|
|
4828
4828
|
let e, s = null;
|
|
4829
|
-
return this.regexAccept(String.raw`(?:dec)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new _i(e)), s;
|
|
4829
|
+
return this.regexAccept(String.raw`(?:dec)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new _i(e)), s;
|
|
4830
4830
|
}
|
|
4831
4831
|
);
|
|
4832
4832
|
}
|
|
@@ -4835,7 +4835,7 @@ class Er {
|
|
|
4835
4835
|
t,
|
|
4836
4836
|
() => {
|
|
4837
4837
|
let e, s = null;
|
|
4838
|
-
return this.regexAccept(String.raw`(?:dec)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new gi(e)), s;
|
|
4838
|
+
return this.regexAccept(String.raw`(?:dec)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new gi(e)), s;
|
|
4839
4839
|
}
|
|
4840
4840
|
);
|
|
4841
4841
|
}
|
|
@@ -4853,7 +4853,7 @@ class Er {
|
|
|
4853
4853
|
t,
|
|
4854
4854
|
() => {
|
|
4855
4855
|
let e = null;
|
|
4856
|
-
return this.regexAccept(String.raw`(?:daa)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Ii()), e;
|
|
4856
|
+
return this.regexAccept(String.raw`(?:daa)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Ii()), e;
|
|
4857
4857
|
}
|
|
4858
4858
|
);
|
|
4859
4859
|
}
|
|
@@ -4862,7 +4862,7 @@ class Er {
|
|
|
4862
4862
|
t,
|
|
4863
4863
|
() => {
|
|
4864
4864
|
let e = null;
|
|
4865
|
-
return this.regexAccept(String.raw`(?:cpl)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new wi()), e;
|
|
4865
|
+
return this.regexAccept(String.raw`(?:cpl)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new wi()), e;
|
|
4866
4866
|
}
|
|
4867
4867
|
);
|
|
4868
4868
|
}
|
|
@@ -4871,7 +4871,7 @@ class Er {
|
|
|
4871
4871
|
t,
|
|
4872
4872
|
() => {
|
|
4873
4873
|
let e = null;
|
|
4874
|
-
return this.regexAccept(String.raw`(?:neg)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new xi()), e;
|
|
4874
|
+
return this.regexAccept(String.raw`(?:neg)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new xi()), e;
|
|
4875
4875
|
}
|
|
4876
4876
|
);
|
|
4877
4877
|
}
|
|
@@ -4880,7 +4880,7 @@ class Er {
|
|
|
4880
4880
|
t,
|
|
4881
4881
|
() => {
|
|
4882
4882
|
let e = null;
|
|
4883
|
-
return this.regexAccept(String.raw`(?:ccf)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new fi()), e;
|
|
4883
|
+
return this.regexAccept(String.raw`(?:ccf)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new fi()), e;
|
|
4884
4884
|
}
|
|
4885
4885
|
);
|
|
4886
4886
|
}
|
|
@@ -4889,7 +4889,7 @@ class Er {
|
|
|
4889
4889
|
t,
|
|
4890
4890
|
() => {
|
|
4891
4891
|
let e = null;
|
|
4892
|
-
return this.regexAccept(String.raw`(?:scf)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Ai()), e;
|
|
4892
|
+
return this.regexAccept(String.raw`(?:scf)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Ai()), e;
|
|
4893
4893
|
}
|
|
4894
4894
|
);
|
|
4895
4895
|
}
|
|
@@ -4907,7 +4907,7 @@ class Er {
|
|
|
4907
4907
|
t,
|
|
4908
4908
|
() => {
|
|
4909
4909
|
let e = null;
|
|
4910
|
-
return this.regexAccept(String.raw`(?:nop)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Li()), e;
|
|
4910
|
+
return this.regexAccept(String.raw`(?:nop)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Li()), e;
|
|
4911
4911
|
}
|
|
4912
4912
|
);
|
|
4913
4913
|
}
|
|
@@ -4916,7 +4916,7 @@ class Er {
|
|
|
4916
4916
|
t,
|
|
4917
4917
|
() => {
|
|
4918
4918
|
let e = null;
|
|
4919
|
-
return this.regexAccept(String.raw`(?:halt)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Si()), e;
|
|
4919
|
+
return this.regexAccept(String.raw`(?:halt)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Si()), e;
|
|
4920
4920
|
}
|
|
4921
4921
|
);
|
|
4922
4922
|
}
|
|
@@ -4925,7 +4925,7 @@ class Er {
|
|
|
4925
4925
|
t,
|
|
4926
4926
|
() => {
|
|
4927
4927
|
let e = null;
|
|
4928
|
-
return this.regexAccept(String.raw`(?:di)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ki()), e;
|
|
4928
|
+
return this.regexAccept(String.raw`(?:di)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ki()), e;
|
|
4929
4929
|
}
|
|
4930
4930
|
);
|
|
4931
4931
|
}
|
|
@@ -4934,7 +4934,7 @@ class Er {
|
|
|
4934
4934
|
t,
|
|
4935
4935
|
() => {
|
|
4936
4936
|
let e = null;
|
|
4937
|
-
return this.regexAccept(String.raw`(?:ei)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Ei()), e;
|
|
4937
|
+
return this.regexAccept(String.raw`(?:ei)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Ei()), e;
|
|
4938
4938
|
}
|
|
4939
4939
|
);
|
|
4940
4940
|
}
|
|
@@ -4943,7 +4943,7 @@ class Er {
|
|
|
4943
4943
|
t,
|
|
4944
4944
|
() => {
|
|
4945
4945
|
let e, s = null;
|
|
4946
|
-
return this.regexAccept(String.raw`(?:im)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.regexAccept(String.raw`(?:[012])`, t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new vi(e)), s;
|
|
4946
|
+
return this.regexAccept(String.raw`(?:im)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.regexAccept(String.raw`(?:[012])`, "", t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new vi(e)), s;
|
|
4947
4947
|
}
|
|
4948
4948
|
);
|
|
4949
4949
|
}
|
|
@@ -4967,7 +4967,7 @@ class Er {
|
|
|
4967
4967
|
t,
|
|
4968
4968
|
() => {
|
|
4969
4969
|
let e, s = null;
|
|
4970
|
-
return this.regexAccept(String.raw`(?:add)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchss(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ci(e)), s;
|
|
4970
|
+
return this.regexAccept(String.raw`(?:add)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchss(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ci(e)), s;
|
|
4971
4971
|
}
|
|
4972
4972
|
);
|
|
4973
4973
|
}
|
|
@@ -4976,7 +4976,7 @@ class Er {
|
|
|
4976
4976
|
t,
|
|
4977
4977
|
() => {
|
|
4978
4978
|
let e, s = null;
|
|
4979
|
-
return this.regexAccept(String.raw`(?:adc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchss(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new bi(e)), s;
|
|
4979
|
+
return this.regexAccept(String.raw`(?:adc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchss(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new bi(e)), s;
|
|
4980
4980
|
}
|
|
4981
4981
|
);
|
|
4982
4982
|
}
|
|
@@ -4985,7 +4985,7 @@ class Er {
|
|
|
4985
4985
|
t,
|
|
4986
4986
|
() => {
|
|
4987
4987
|
let e, s = null;
|
|
4988
|
-
return this.regexAccept(String.raw`(?:sbc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchss(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Di(e)), s;
|
|
4988
|
+
return this.regexAccept(String.raw`(?:sbc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchss(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Di(e)), s;
|
|
4989
4989
|
}
|
|
4990
4990
|
);
|
|
4991
4991
|
}
|
|
@@ -4994,7 +4994,7 @@ class Er {
|
|
|
4994
4994
|
t,
|
|
4995
4995
|
() => {
|
|
4996
4996
|
let e, s = null;
|
|
4997
|
-
return this.regexAccept(String.raw`(?:add)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:ix)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchpp(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ri(e)), s;
|
|
4997
|
+
return this.regexAccept(String.raw`(?:add)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:ix)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchpp(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ri(e)), s;
|
|
4998
4998
|
}
|
|
4999
4999
|
);
|
|
5000
5000
|
}
|
|
@@ -5003,7 +5003,7 @@ class Er {
|
|
|
5003
5003
|
t,
|
|
5004
5004
|
() => {
|
|
5005
5005
|
let e, s = null;
|
|
5006
|
-
return this.regexAccept(String.raw`(?:add)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:iy)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchrr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new qi(e)), s;
|
|
5006
|
+
return this.regexAccept(String.raw`(?:add)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:iy)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchrr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new qi(e)), s;
|
|
5007
5007
|
}
|
|
5008
5008
|
);
|
|
5009
5009
|
}
|
|
@@ -5012,7 +5012,7 @@ class Er {
|
|
|
5012
5012
|
t,
|
|
5013
5013
|
() => {
|
|
5014
5014
|
let e, s = null;
|
|
5015
|
-
return this.regexAccept(String.raw`(?:inc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchss(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Bi(e)), s;
|
|
5015
|
+
return this.regexAccept(String.raw`(?:inc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchss(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Bi(e)), s;
|
|
5016
5016
|
}
|
|
5017
5017
|
);
|
|
5018
5018
|
}
|
|
@@ -5021,7 +5021,7 @@ class Er {
|
|
|
5021
5021
|
t,
|
|
5022
5022
|
() => {
|
|
5023
5023
|
let e = null;
|
|
5024
|
-
return this.regexAccept(String.raw`(?:inc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:ix)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new yi()), e;
|
|
5024
|
+
return this.regexAccept(String.raw`(?:inc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:ix)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new yi()), e;
|
|
5025
5025
|
}
|
|
5026
5026
|
);
|
|
5027
5027
|
}
|
|
@@ -5030,7 +5030,7 @@ class Er {
|
|
|
5030
5030
|
t,
|
|
5031
5031
|
() => {
|
|
5032
5032
|
let e = null;
|
|
5033
|
-
return this.regexAccept(String.raw`(?:inc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:iy)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Oi()), e;
|
|
5033
|
+
return this.regexAccept(String.raw`(?:inc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:iy)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Oi()), e;
|
|
5034
5034
|
}
|
|
5035
5035
|
);
|
|
5036
5036
|
}
|
|
@@ -5039,7 +5039,7 @@ class Er {
|
|
|
5039
5039
|
t,
|
|
5040
5040
|
() => {
|
|
5041
5041
|
let e, s = null;
|
|
5042
|
-
return this.regexAccept(String.raw`(?:dec)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchss(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ni(e)), s;
|
|
5042
|
+
return this.regexAccept(String.raw`(?:dec)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchss(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ni(e)), s;
|
|
5043
5043
|
}
|
|
5044
5044
|
);
|
|
5045
5045
|
}
|
|
@@ -5048,7 +5048,7 @@ class Er {
|
|
|
5048
5048
|
t,
|
|
5049
5049
|
() => {
|
|
5050
5050
|
let e = null;
|
|
5051
|
-
return this.regexAccept(String.raw`(?:dec)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:ix)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new
|
|
5051
|
+
return this.regexAccept(String.raw`(?:dec)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:ix)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Pi()), e;
|
|
5052
5052
|
}
|
|
5053
5053
|
);
|
|
5054
5054
|
}
|
|
@@ -5057,7 +5057,7 @@ class Er {
|
|
|
5057
5057
|
t,
|
|
5058
5058
|
() => {
|
|
5059
5059
|
let e = null;
|
|
5060
|
-
return this.regexAccept(String.raw`(?:dec)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:iy)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new
|
|
5060
|
+
return this.regexAccept(String.raw`(?:dec)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:iy)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Mi()), e;
|
|
5061
5061
|
}
|
|
5062
5062
|
);
|
|
5063
5063
|
}
|
|
@@ -5104,7 +5104,7 @@ class Er {
|
|
|
5104
5104
|
t,
|
|
5105
5105
|
() => {
|
|
5106
5106
|
let e = null;
|
|
5107
|
-
return this.regexAccept(String.raw`(?:rlca)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Vi()), e;
|
|
5107
|
+
return this.regexAccept(String.raw`(?:rlca)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Vi()), e;
|
|
5108
5108
|
}
|
|
5109
5109
|
);
|
|
5110
5110
|
}
|
|
@@ -5113,7 +5113,7 @@ class Er {
|
|
|
5113
5113
|
t,
|
|
5114
5114
|
() => {
|
|
5115
5115
|
let e = null;
|
|
5116
|
-
return this.regexAccept(String.raw`(?:rla)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Fi()), e;
|
|
5116
|
+
return this.regexAccept(String.raw`(?:rla)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Fi()), e;
|
|
5117
5117
|
}
|
|
5118
5118
|
);
|
|
5119
5119
|
}
|
|
@@ -5122,7 +5122,7 @@ class Er {
|
|
|
5122
5122
|
t,
|
|
5123
5123
|
() => {
|
|
5124
5124
|
let e = null;
|
|
5125
|
-
return this.regexAccept(String.raw`(?:rrca)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new pi()), e;
|
|
5125
|
+
return this.regexAccept(String.raw`(?:rrca)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new pi()), e;
|
|
5126
5126
|
}
|
|
5127
5127
|
);
|
|
5128
5128
|
}
|
|
@@ -5131,7 +5131,7 @@ class Er {
|
|
|
5131
5131
|
t,
|
|
5132
5132
|
() => {
|
|
5133
5133
|
let e = null;
|
|
5134
|
-
return this.regexAccept(String.raw`(?:rra)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Gi()), e;
|
|
5134
|
+
return this.regexAccept(String.raw`(?:rra)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Gi()), e;
|
|
5135
5135
|
}
|
|
5136
5136
|
);
|
|
5137
5137
|
}
|
|
@@ -5140,7 +5140,7 @@ class Er {
|
|
|
5140
5140
|
t,
|
|
5141
5141
|
() => {
|
|
5142
5142
|
let e, s = null;
|
|
5143
|
-
return this.regexAccept(String.raw`(?:rlc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ji(e)), s;
|
|
5143
|
+
return this.regexAccept(String.raw`(?:rlc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ji(e)), s;
|
|
5144
5144
|
}
|
|
5145
5145
|
);
|
|
5146
5146
|
}
|
|
@@ -5149,7 +5149,7 @@ class Er {
|
|
|
5149
5149
|
t,
|
|
5150
5150
|
() => {
|
|
5151
5151
|
let e = null;
|
|
5152
|
-
return this.regexAccept(String.raw`(?:rlc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Xi()), e;
|
|
5152
|
+
return this.regexAccept(String.raw`(?:rlc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Xi()), e;
|
|
5153
5153
|
}
|
|
5154
5154
|
);
|
|
5155
5155
|
}
|
|
@@ -5158,7 +5158,7 @@ class Er {
|
|
|
5158
5158
|
t,
|
|
5159
5159
|
() => {
|
|
5160
5160
|
let e, s = null;
|
|
5161
|
-
return this.regexAccept(String.raw`(?:rlc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ji(e)), s;
|
|
5161
|
+
return this.regexAccept(String.raw`(?:rlc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ji(e)), s;
|
|
5162
5162
|
}
|
|
5163
5163
|
);
|
|
5164
5164
|
}
|
|
@@ -5167,7 +5167,7 @@ class Er {
|
|
|
5167
5167
|
t,
|
|
5168
5168
|
() => {
|
|
5169
5169
|
let e, s = null;
|
|
5170
|
-
return this.regexAccept(String.raw`(?:rlc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Qi(e)), s;
|
|
5170
|
+
return this.regexAccept(String.raw`(?:rlc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Qi(e)), s;
|
|
5171
5171
|
}
|
|
5172
5172
|
);
|
|
5173
5173
|
}
|
|
@@ -5176,7 +5176,7 @@ class Er {
|
|
|
5176
5176
|
t,
|
|
5177
5177
|
() => {
|
|
5178
5178
|
let e, s = null;
|
|
5179
|
-
return this.regexAccept(String.raw`(?:rl)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ui(e)), s;
|
|
5179
|
+
return this.regexAccept(String.raw`(?:rl)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ui(e)), s;
|
|
5180
5180
|
}
|
|
5181
5181
|
);
|
|
5182
5182
|
}
|
|
@@ -5185,7 +5185,7 @@ class Er {
|
|
|
5185
5185
|
t,
|
|
5186
5186
|
() => {
|
|
5187
5187
|
let e = null;
|
|
5188
|
-
return this.regexAccept(String.raw`(?:rl)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Yi()), e;
|
|
5188
|
+
return this.regexAccept(String.raw`(?:rl)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Yi()), e;
|
|
5189
5189
|
}
|
|
5190
5190
|
);
|
|
5191
5191
|
}
|
|
@@ -5194,7 +5194,7 @@ class Er {
|
|
|
5194
5194
|
t,
|
|
5195
5195
|
() => {
|
|
5196
5196
|
let e, s = null;
|
|
5197
|
-
return this.regexAccept(String.raw`(?:rl)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new zi(e)), s;
|
|
5197
|
+
return this.regexAccept(String.raw`(?:rl)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new zi(e)), s;
|
|
5198
5198
|
}
|
|
5199
5199
|
);
|
|
5200
5200
|
}
|
|
@@ -5203,7 +5203,7 @@ class Er {
|
|
|
5203
5203
|
t,
|
|
5204
5204
|
() => {
|
|
5205
5205
|
let e, s = null;
|
|
5206
|
-
return this.regexAccept(String.raw`(?:rl)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Wi(e)), s;
|
|
5206
|
+
return this.regexAccept(String.raw`(?:rl)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Wi(e)), s;
|
|
5207
5207
|
}
|
|
5208
5208
|
);
|
|
5209
5209
|
}
|
|
@@ -5212,7 +5212,7 @@ class Er {
|
|
|
5212
5212
|
t,
|
|
5213
5213
|
() => {
|
|
5214
5214
|
let e, s = null;
|
|
5215
|
-
return this.regexAccept(String.raw`(?:rrc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Hi(e)), s;
|
|
5215
|
+
return this.regexAccept(String.raw`(?:rrc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Hi(e)), s;
|
|
5216
5216
|
}
|
|
5217
5217
|
);
|
|
5218
5218
|
}
|
|
@@ -5221,7 +5221,7 @@ class Er {
|
|
|
5221
5221
|
t,
|
|
5222
5222
|
() => {
|
|
5223
5223
|
let e = null;
|
|
5224
|
-
return this.regexAccept(String.raw`(?:rrc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Zi()), e;
|
|
5224
|
+
return this.regexAccept(String.raw`(?:rrc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Zi()), e;
|
|
5225
5225
|
}
|
|
5226
5226
|
);
|
|
5227
5227
|
}
|
|
@@ -5230,7 +5230,7 @@ class Er {
|
|
|
5230
5230
|
t,
|
|
5231
5231
|
() => {
|
|
5232
5232
|
let e, s = null;
|
|
5233
|
-
return this.regexAccept(String.raw`(?:rrc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ti(e)), s;
|
|
5233
|
+
return this.regexAccept(String.raw`(?:rrc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ti(e)), s;
|
|
5234
5234
|
}
|
|
5235
5235
|
);
|
|
5236
5236
|
}
|
|
@@ -5239,7 +5239,7 @@ class Er {
|
|
|
5239
5239
|
t,
|
|
5240
5240
|
() => {
|
|
5241
5241
|
let e, s = null;
|
|
5242
|
-
return this.regexAccept(String.raw`(?:rrc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ki(e)), s;
|
|
5242
|
+
return this.regexAccept(String.raw`(?:rrc)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ki(e)), s;
|
|
5243
5243
|
}
|
|
5244
5244
|
);
|
|
5245
5245
|
}
|
|
@@ -5248,7 +5248,7 @@ class Er {
|
|
|
5248
5248
|
t,
|
|
5249
5249
|
() => {
|
|
5250
5250
|
let e, s = null;
|
|
5251
|
-
return this.regexAccept(String.raw`(?:rr)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new di(e)), s;
|
|
5251
|
+
return this.regexAccept(String.raw`(?:rr)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new di(e)), s;
|
|
5252
5252
|
}
|
|
5253
5253
|
);
|
|
5254
5254
|
}
|
|
@@ -5257,7 +5257,7 @@ class Er {
|
|
|
5257
5257
|
t,
|
|
5258
5258
|
() => {
|
|
5259
5259
|
let e = null;
|
|
5260
|
-
return this.regexAccept(String.raw`(?:rr)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new $i()), e;
|
|
5260
|
+
return this.regexAccept(String.raw`(?:rr)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new $i()), e;
|
|
5261
5261
|
}
|
|
5262
5262
|
);
|
|
5263
5263
|
}
|
|
@@ -5266,7 +5266,7 @@ class Er {
|
|
|
5266
5266
|
t,
|
|
5267
5267
|
() => {
|
|
5268
5268
|
let e, s = null;
|
|
5269
|
-
return this.regexAccept(String.raw`(?:rr)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ts(e)), s;
|
|
5269
|
+
return this.regexAccept(String.raw`(?:rr)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ts(e)), s;
|
|
5270
5270
|
}
|
|
5271
5271
|
);
|
|
5272
5272
|
}
|
|
@@ -5275,7 +5275,7 @@ class Er {
|
|
|
5275
5275
|
t,
|
|
5276
5276
|
() => {
|
|
5277
5277
|
let e, s = null;
|
|
5278
|
-
return this.regexAccept(String.raw`(?:rr)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ns(e)), s;
|
|
5278
|
+
return this.regexAccept(String.raw`(?:rr)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ns(e)), s;
|
|
5279
5279
|
}
|
|
5280
5280
|
);
|
|
5281
5281
|
}
|
|
@@ -5284,7 +5284,7 @@ class Er {
|
|
|
5284
5284
|
t,
|
|
5285
5285
|
() => {
|
|
5286
5286
|
let e, s = null;
|
|
5287
|
-
return this.regexAccept(String.raw`(?:sla)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new es(e)), s;
|
|
5287
|
+
return this.regexAccept(String.raw`(?:sla)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new es(e)), s;
|
|
5288
5288
|
}
|
|
5289
5289
|
);
|
|
5290
5290
|
}
|
|
@@ -5293,7 +5293,7 @@ class Er {
|
|
|
5293
5293
|
t,
|
|
5294
5294
|
() => {
|
|
5295
5295
|
let e = null;
|
|
5296
|
-
return this.regexAccept(String.raw`(?:sla)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new is()), e;
|
|
5296
|
+
return this.regexAccept(String.raw`(?:sla)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new is()), e;
|
|
5297
5297
|
}
|
|
5298
5298
|
);
|
|
5299
5299
|
}
|
|
@@ -5302,7 +5302,7 @@ class Er {
|
|
|
5302
5302
|
t,
|
|
5303
5303
|
() => {
|
|
5304
5304
|
let e, s = null;
|
|
5305
|
-
return this.regexAccept(String.raw`(?:sla)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ss(e)), s;
|
|
5305
|
+
return this.regexAccept(String.raw`(?:sla)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ss(e)), s;
|
|
5306
5306
|
}
|
|
5307
5307
|
);
|
|
5308
5308
|
}
|
|
@@ -5311,7 +5311,7 @@ class Er {
|
|
|
5311
5311
|
t,
|
|
5312
5312
|
() => {
|
|
5313
5313
|
let e, s = null;
|
|
5314
|
-
return this.regexAccept(String.raw`(?:sla)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new rs(e)), s;
|
|
5314
|
+
return this.regexAccept(String.raw`(?:sla)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new rs(e)), s;
|
|
5315
5315
|
}
|
|
5316
5316
|
);
|
|
5317
5317
|
}
|
|
@@ -5320,7 +5320,7 @@ class Er {
|
|
|
5320
5320
|
t,
|
|
5321
5321
|
() => {
|
|
5322
5322
|
let e, s = null;
|
|
5323
|
-
return this.regexAccept(String.raw`(?:sra)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new us(e)), s;
|
|
5323
|
+
return this.regexAccept(String.raw`(?:sra)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new us(e)), s;
|
|
5324
5324
|
}
|
|
5325
5325
|
);
|
|
5326
5326
|
}
|
|
@@ -5329,7 +5329,7 @@ class Er {
|
|
|
5329
5329
|
t,
|
|
5330
5330
|
() => {
|
|
5331
5331
|
let e = null;
|
|
5332
|
-
return this.regexAccept(String.raw`(?:sra)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new cs()), e;
|
|
5332
|
+
return this.regexAccept(String.raw`(?:sra)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new cs()), e;
|
|
5333
5333
|
}
|
|
5334
5334
|
);
|
|
5335
5335
|
}
|
|
@@ -5338,7 +5338,7 @@ class Er {
|
|
|
5338
5338
|
t,
|
|
5339
5339
|
() => {
|
|
5340
5340
|
let e, s = null;
|
|
5341
|
-
return this.regexAccept(String.raw`(?:sra)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ls(e)), s;
|
|
5341
|
+
return this.regexAccept(String.raw`(?:sra)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ls(e)), s;
|
|
5342
5342
|
}
|
|
5343
5343
|
);
|
|
5344
5344
|
}
|
|
@@ -5347,7 +5347,7 @@ class Er {
|
|
|
5347
5347
|
t,
|
|
5348
5348
|
() => {
|
|
5349
5349
|
let e, s = null;
|
|
5350
|
-
return this.regexAccept(String.raw`(?:sra)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new os(e)), s;
|
|
5350
|
+
return this.regexAccept(String.raw`(?:sra)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new os(e)), s;
|
|
5351
5351
|
}
|
|
5352
5352
|
);
|
|
5353
5353
|
}
|
|
@@ -5356,7 +5356,7 @@ class Er {
|
|
|
5356
5356
|
t,
|
|
5357
5357
|
() => {
|
|
5358
5358
|
let e, s = null;
|
|
5359
|
-
return this.regexAccept(String.raw`(?:srl)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new as(e)), s;
|
|
5359
|
+
return this.regexAccept(String.raw`(?:srl)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new as(e)), s;
|
|
5360
5360
|
}
|
|
5361
5361
|
);
|
|
5362
5362
|
}
|
|
@@ -5365,7 +5365,7 @@ class Er {
|
|
|
5365
5365
|
t,
|
|
5366
5366
|
() => {
|
|
5367
5367
|
let e = null;
|
|
5368
|
-
return this.regexAccept(String.raw`(?:srl)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new hs()), e;
|
|
5368
|
+
return this.regexAccept(String.raw`(?:srl)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new hs()), e;
|
|
5369
5369
|
}
|
|
5370
5370
|
);
|
|
5371
5371
|
}
|
|
@@ -5374,7 +5374,7 @@ class Er {
|
|
|
5374
5374
|
t,
|
|
5375
5375
|
() => {
|
|
5376
5376
|
let e, s = null;
|
|
5377
|
-
return this.regexAccept(String.raw`(?:srl)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ms(e)), s;
|
|
5377
|
+
return this.regexAccept(String.raw`(?:srl)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ms(e)), s;
|
|
5378
5378
|
}
|
|
5379
5379
|
);
|
|
5380
5380
|
}
|
|
@@ -5383,7 +5383,7 @@ class Er {
|
|
|
5383
5383
|
t,
|
|
5384
5384
|
() => {
|
|
5385
5385
|
let e, s = null;
|
|
5386
|
-
return this.regexAccept(String.raw`(?:srl)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new _s(e)), s;
|
|
5386
|
+
return this.regexAccept(String.raw`(?:srl)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new _s(e)), s;
|
|
5387
5387
|
}
|
|
5388
5388
|
);
|
|
5389
5389
|
}
|
|
@@ -5392,7 +5392,7 @@ class Er {
|
|
|
5392
5392
|
t,
|
|
5393
5393
|
() => {
|
|
5394
5394
|
let e = null;
|
|
5395
|
-
return this.regexAccept(String.raw`(?:rld)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new gs()), e;
|
|
5395
|
+
return this.regexAccept(String.raw`(?:rld)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new gs()), e;
|
|
5396
5396
|
}
|
|
5397
5397
|
);
|
|
5398
5398
|
}
|
|
@@ -5401,7 +5401,7 @@ class Er {
|
|
|
5401
5401
|
t,
|
|
5402
5402
|
() => {
|
|
5403
5403
|
let e = null;
|
|
5404
|
-
return this.regexAccept(String.raw`(?:rrd)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Is()), e;
|
|
5404
|
+
return this.regexAccept(String.raw`(?:rrd)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Is()), e;
|
|
5405
5405
|
}
|
|
5406
5406
|
);
|
|
5407
5407
|
}
|
|
@@ -5426,7 +5426,7 @@ class Er {
|
|
|
5426
5426
|
t,
|
|
5427
5427
|
() => {
|
|
5428
5428
|
let e, s, r = null;
|
|
5429
|
-
return this.regexAccept(String.raw`(?:bit)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchb(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new ws(e, s)), r;
|
|
5429
|
+
return this.regexAccept(String.raw`(?:bit)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchb(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new ws(e, s)), r;
|
|
5430
5430
|
}
|
|
5431
5431
|
);
|
|
5432
5432
|
}
|
|
@@ -5435,7 +5435,7 @@ class Er {
|
|
|
5435
5435
|
t,
|
|
5436
5436
|
() => {
|
|
5437
5437
|
let e, s = null;
|
|
5438
|
-
return this.regexAccept(String.raw`(?:bit)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchb(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new xs(e)), s;
|
|
5438
|
+
return this.regexAccept(String.raw`(?:bit)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchb(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new xs(e)), s;
|
|
5439
5439
|
}
|
|
5440
5440
|
);
|
|
5441
5441
|
}
|
|
@@ -5444,7 +5444,7 @@ class Er {
|
|
|
5444
5444
|
t,
|
|
5445
5445
|
() => {
|
|
5446
5446
|
let e, s, r = null;
|
|
5447
|
-
return this.regexAccept(String.raw`(?:bit)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchb(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new fs(e, s)), r;
|
|
5447
|
+
return this.regexAccept(String.raw`(?:bit)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchb(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new fs(e, s)), r;
|
|
5448
5448
|
}
|
|
5449
5449
|
);
|
|
5450
5450
|
}
|
|
@@ -5453,7 +5453,7 @@ class Er {
|
|
|
5453
5453
|
t,
|
|
5454
5454
|
() => {
|
|
5455
5455
|
let e, s, r = null;
|
|
5456
|
-
return this.regexAccept(String.raw`(?:bit)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchb(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new As(e, s)), r;
|
|
5456
|
+
return this.regexAccept(String.raw`(?:bit)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchb(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new As(e, s)), r;
|
|
5457
5457
|
}
|
|
5458
5458
|
);
|
|
5459
5459
|
}
|
|
@@ -5462,7 +5462,7 @@ class Er {
|
|
|
5462
5462
|
t,
|
|
5463
5463
|
() => {
|
|
5464
5464
|
let e, s, r = null;
|
|
5465
|
-
return this.regexAccept(String.raw`(?:set)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchb(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Ls(e, s)), r;
|
|
5465
|
+
return this.regexAccept(String.raw`(?:set)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchb(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Ls(e, s)), r;
|
|
5466
5466
|
}
|
|
5467
5467
|
);
|
|
5468
5468
|
}
|
|
@@ -5471,7 +5471,7 @@ class Er {
|
|
|
5471
5471
|
t,
|
|
5472
5472
|
() => {
|
|
5473
5473
|
let e, s = null;
|
|
5474
|
-
return this.regexAccept(String.raw`(?:set)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchb(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ss(e)), s;
|
|
5474
|
+
return this.regexAccept(String.raw`(?:set)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchb(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ss(e)), s;
|
|
5475
5475
|
}
|
|
5476
5476
|
);
|
|
5477
5477
|
}
|
|
@@ -5480,7 +5480,7 @@ class Er {
|
|
|
5480
5480
|
t,
|
|
5481
5481
|
() => {
|
|
5482
5482
|
let e, s, r = null;
|
|
5483
|
-
return this.regexAccept(String.raw`(?:set)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchb(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new ks(e, s)), r;
|
|
5483
|
+
return this.regexAccept(String.raw`(?:set)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchb(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new ks(e, s)), r;
|
|
5484
5484
|
}
|
|
5485
5485
|
);
|
|
5486
5486
|
}
|
|
@@ -5489,7 +5489,7 @@ class Er {
|
|
|
5489
5489
|
t,
|
|
5490
5490
|
() => {
|
|
5491
5491
|
let e, s, r = null;
|
|
5492
|
-
return this.regexAccept(String.raw`(?:set)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchb(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Es(e, s)), r;
|
|
5492
|
+
return this.regexAccept(String.raw`(?:set)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchb(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Es(e, s)), r;
|
|
5493
5493
|
}
|
|
5494
5494
|
);
|
|
5495
5495
|
}
|
|
@@ -5498,7 +5498,7 @@ class Er {
|
|
|
5498
5498
|
t,
|
|
5499
5499
|
() => {
|
|
5500
5500
|
let e, s, r = null;
|
|
5501
|
-
return this.regexAccept(String.raw`(?:res)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchb(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new vs(e, s)), r;
|
|
5501
|
+
return this.regexAccept(String.raw`(?:res)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchb(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new vs(e, s)), r;
|
|
5502
5502
|
}
|
|
5503
5503
|
);
|
|
5504
5504
|
}
|
|
@@ -5507,7 +5507,7 @@ class Er {
|
|
|
5507
5507
|
t,
|
|
5508
5508
|
() => {
|
|
5509
5509
|
let e, s = null;
|
|
5510
|
-
return this.regexAccept(String.raw`(?:res)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchb(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Cs(e)), s;
|
|
5510
|
+
return this.regexAccept(String.raw`(?:res)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchb(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Cs(e)), s;
|
|
5511
5511
|
}
|
|
5512
5512
|
);
|
|
5513
5513
|
}
|
|
@@ -5516,7 +5516,7 @@ class Er {
|
|
|
5516
5516
|
t,
|
|
5517
5517
|
() => {
|
|
5518
5518
|
let e, s, r = null;
|
|
5519
|
-
return this.regexAccept(String.raw`(?:res)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchb(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new bs(e, s)), r;
|
|
5519
|
+
return this.regexAccept(String.raw`(?:res)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchb(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchIX(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new bs(e, s)), r;
|
|
5520
5520
|
}
|
|
5521
5521
|
);
|
|
5522
5522
|
}
|
|
@@ -5525,7 +5525,7 @@ class Er {
|
|
|
5525
5525
|
t,
|
|
5526
5526
|
() => {
|
|
5527
5527
|
let e, s, r = null;
|
|
5528
|
-
return this.regexAccept(String.raw`(?:res)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchb(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Ds(e, s)), r;
|
|
5528
|
+
return this.regexAccept(String.raw`(?:res)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchb(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.matchIY(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Ds(e, s)), r;
|
|
5529
5529
|
}
|
|
5530
5530
|
);
|
|
5531
5531
|
}
|
|
@@ -5573,7 +5573,7 @@ class Er {
|
|
|
5573
5573
|
t,
|
|
5574
5574
|
() => {
|
|
5575
5575
|
let e = null;
|
|
5576
|
-
return this.regexAccept(String.raw`(?:jp)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Bs()), e;
|
|
5576
|
+
return this.regexAccept(String.raw`(?:jp)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:hl)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Bs()), e;
|
|
5577
5577
|
}
|
|
5578
5578
|
);
|
|
5579
5579
|
}
|
|
@@ -5582,7 +5582,7 @@ class Er {
|
|
|
5582
5582
|
t,
|
|
5583
5583
|
() => {
|
|
5584
5584
|
let e = null;
|
|
5585
|
-
return this.regexAccept(String.raw`(?:jp)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:ix)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ys()), e;
|
|
5585
|
+
return this.regexAccept(String.raw`(?:jp)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:ix)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ys()), e;
|
|
5586
5586
|
}
|
|
5587
5587
|
);
|
|
5588
5588
|
}
|
|
@@ -5591,7 +5591,7 @@ class Er {
|
|
|
5591
5591
|
t,
|
|
5592
5592
|
() => {
|
|
5593
5593
|
let e = null;
|
|
5594
|
-
return this.regexAccept(String.raw`(?:jp)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:iy)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Os()), e;
|
|
5594
|
+
return this.regexAccept(String.raw`(?:jp)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:iy)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Os()), e;
|
|
5595
5595
|
}
|
|
5596
5596
|
);
|
|
5597
5597
|
}
|
|
@@ -5600,7 +5600,7 @@ class Er {
|
|
|
5600
5600
|
t,
|
|
5601
5601
|
() => {
|
|
5602
5602
|
let e, s, r = null;
|
|
5603
|
-
return this.regexAccept(String.raw`(?:jp)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Ns(e, s)), r;
|
|
5603
|
+
return this.regexAccept(String.raw`(?:jp)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Ns(e, s)), r;
|
|
5604
5604
|
}
|
|
5605
5605
|
);
|
|
5606
5606
|
}
|
|
@@ -5609,7 +5609,7 @@ class Er {
|
|
|
5609
5609
|
t,
|
|
5610
5610
|
() => {
|
|
5611
5611
|
let e, s, r, u = null;
|
|
5612
|
-
return this.regexAccept(String.raw`(?:jp)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchcc(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.mark()) !== null && (r = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (u = new
|
|
5612
|
+
return this.regexAccept(String.raw`(?:jp)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchcc(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.mark()) !== null && (r = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (u = new Ps(e, s, r)), u;
|
|
5613
5613
|
}
|
|
5614
5614
|
);
|
|
5615
5615
|
}
|
|
@@ -5618,7 +5618,7 @@ class Er {
|
|
|
5618
5618
|
t,
|
|
5619
5619
|
() => {
|
|
5620
5620
|
let e, s, r = null;
|
|
5621
|
-
return this.regexAccept(String.raw`(?:jr)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchLabel(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new
|
|
5621
|
+
return this.regexAccept(String.raw`(?:jr)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchLabel(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Ms(e, s)), r;
|
|
5622
5622
|
}
|
|
5623
5623
|
);
|
|
5624
5624
|
}
|
|
@@ -5627,7 +5627,7 @@ class Er {
|
|
|
5627
5627
|
t,
|
|
5628
5628
|
() => {
|
|
5629
5629
|
let e, s, r = null;
|
|
5630
|
-
return this.regexAccept(String.raw`(?:jr)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Vs(e, s)), r;
|
|
5630
|
+
return this.regexAccept(String.raw`(?:jr)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Vs(e, s)), r;
|
|
5631
5631
|
}
|
|
5632
5632
|
);
|
|
5633
5633
|
}
|
|
@@ -5636,7 +5636,7 @@ class Er {
|
|
|
5636
5636
|
t,
|
|
5637
5637
|
() => {
|
|
5638
5638
|
let e, s, r, u = null;
|
|
5639
|
-
return this.regexAccept(String.raw`(?:jr)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchjj(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.mark()) !== null && (r = this.matchLabel(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (u = new Fs(e, s, r)), u;
|
|
5639
|
+
return this.regexAccept(String.raw`(?:jr)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchjj(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.mark()) !== null && (r = this.matchLabel(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (u = new Fs(e, s, r)), u;
|
|
5640
5640
|
}
|
|
5641
5641
|
);
|
|
5642
5642
|
}
|
|
@@ -5645,7 +5645,7 @@ class Er {
|
|
|
5645
5645
|
t,
|
|
5646
5646
|
() => {
|
|
5647
5647
|
let e, s, r, u = null;
|
|
5648
|
-
return this.regexAccept(String.raw`(?:jr)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchjj(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.mark()) !== null && (r = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (u = new ps(e, s, r)), u;
|
|
5648
|
+
return this.regexAccept(String.raw`(?:jr)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchjj(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.mark()) !== null && (r = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (u = new ps(e, s, r)), u;
|
|
5649
5649
|
}
|
|
5650
5650
|
);
|
|
5651
5651
|
}
|
|
@@ -5654,7 +5654,7 @@ class Er {
|
|
|
5654
5654
|
t,
|
|
5655
5655
|
() => {
|
|
5656
5656
|
let e, s, r = null;
|
|
5657
|
-
return this.regexAccept(String.raw`(?:djnz)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchLabel(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Gs(e, s)), r;
|
|
5657
|
+
return this.regexAccept(String.raw`(?:djnz)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchLabel(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Gs(e, s)), r;
|
|
5658
5658
|
}
|
|
5659
5659
|
);
|
|
5660
5660
|
}
|
|
@@ -5663,7 +5663,7 @@ class Er {
|
|
|
5663
5663
|
t,
|
|
5664
5664
|
() => {
|
|
5665
5665
|
let e, s, r = null;
|
|
5666
|
-
return this.regexAccept(String.raw`(?:djnz)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Js(e, s)), r;
|
|
5666
|
+
return this.regexAccept(String.raw`(?:djnz)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Js(e, s)), r;
|
|
5667
5667
|
}
|
|
5668
5668
|
);
|
|
5669
5669
|
}
|
|
@@ -5678,7 +5678,7 @@ class Er {
|
|
|
5678
5678
|
t,
|
|
5679
5679
|
() => {
|
|
5680
5680
|
let e, s, r = null;
|
|
5681
|
-
return this.regexAccept(String.raw`(?:call)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Xs(e, s)), r;
|
|
5681
|
+
return this.regexAccept(String.raw`(?:call)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Xs(e, s)), r;
|
|
5682
5682
|
}
|
|
5683
5683
|
);
|
|
5684
5684
|
}
|
|
@@ -5687,7 +5687,7 @@ class Er {
|
|
|
5687
5687
|
t,
|
|
5688
5688
|
() => {
|
|
5689
5689
|
let e, s, r, u = null;
|
|
5690
|
-
return this.regexAccept(String.raw`(?:call)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchcc(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.mark()) !== null && (r = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (u = new js(e, s, r)), u;
|
|
5690
|
+
return this.regexAccept(String.raw`(?:call)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchcc(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (s = this.mark()) !== null && (r = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (u = new js(e, s, r)), u;
|
|
5691
5691
|
}
|
|
5692
5692
|
);
|
|
5693
5693
|
}
|
|
@@ -5705,7 +5705,7 @@ class Er {
|
|
|
5705
5705
|
t,
|
|
5706
5706
|
() => {
|
|
5707
5707
|
let e = null;
|
|
5708
|
-
return this.regexAccept(String.raw`(?:ret)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Qs()), e;
|
|
5708
|
+
return this.regexAccept(String.raw`(?:ret)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Qs()), e;
|
|
5709
5709
|
}
|
|
5710
5710
|
);
|
|
5711
5711
|
}
|
|
@@ -5714,7 +5714,7 @@ class Er {
|
|
|
5714
5714
|
t,
|
|
5715
5715
|
() => {
|
|
5716
5716
|
let e, s = null;
|
|
5717
|
-
return this.regexAccept(String.raw`(?:ret)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchcc(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Us(e)), s;
|
|
5717
|
+
return this.regexAccept(String.raw`(?:ret)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchcc(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Us(e)), s;
|
|
5718
5718
|
}
|
|
5719
5719
|
);
|
|
5720
5720
|
}
|
|
@@ -5723,7 +5723,7 @@ class Er {
|
|
|
5723
5723
|
t,
|
|
5724
5724
|
() => {
|
|
5725
5725
|
let e = null;
|
|
5726
|
-
return this.regexAccept(String.raw`(?:reti)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Ys()), e;
|
|
5726
|
+
return this.regexAccept(String.raw`(?:reti)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Ys()), e;
|
|
5727
5727
|
}
|
|
5728
5728
|
);
|
|
5729
5729
|
}
|
|
@@ -5732,7 +5732,7 @@ class Er {
|
|
|
5732
5732
|
t,
|
|
5733
5733
|
() => {
|
|
5734
5734
|
let e = null;
|
|
5735
|
-
return this.regexAccept(String.raw`(?:retn)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new zs()), e;
|
|
5735
|
+
return this.regexAccept(String.raw`(?:retn)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new zs()), e;
|
|
5736
5736
|
}
|
|
5737
5737
|
);
|
|
5738
5738
|
}
|
|
@@ -5741,7 +5741,7 @@ class Er {
|
|
|
5741
5741
|
t,
|
|
5742
5742
|
() => {
|
|
5743
5743
|
let e, s = null;
|
|
5744
|
-
return this.regexAccept(String.raw`(?:rst)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchp(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ws(e)), s;
|
|
5744
|
+
return this.regexAccept(String.raw`(?:rst)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchp(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ws(e)), s;
|
|
5745
5745
|
}
|
|
5746
5746
|
);
|
|
5747
5747
|
}
|
|
@@ -5760,7 +5760,7 @@ class Er {
|
|
|
5760
5760
|
t,
|
|
5761
5761
|
() => {
|
|
5762
5762
|
let e, s = null;
|
|
5763
|
-
return this.regexAccept(String.raw`(?:in)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.regexAccept(String.raw`(?:c)`, t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Hs(e)), s;
|
|
5763
|
+
return this.regexAccept(String.raw`(?:in)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.regexAccept(String.raw`(?:c)`, "", t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Hs(e)), s;
|
|
5764
5764
|
}
|
|
5765
5765
|
);
|
|
5766
5766
|
}
|
|
@@ -5769,7 +5769,7 @@ class Er {
|
|
|
5769
5769
|
t,
|
|
5770
5770
|
() => {
|
|
5771
5771
|
let e, s, r = null;
|
|
5772
|
-
return this.regexAccept(String.raw`(?:in)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Zs(e, s)), r;
|
|
5772
|
+
return this.regexAccept(String.raw`(?:in)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Zs(e, s)), r;
|
|
5773
5773
|
}
|
|
5774
5774
|
);
|
|
5775
5775
|
}
|
|
@@ -5778,7 +5778,7 @@ class Er {
|
|
|
5778
5778
|
t,
|
|
5779
5779
|
() => {
|
|
5780
5780
|
let e = null;
|
|
5781
|
-
return this.regexAccept(String.raw`(?:ini)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Ts()), e;
|
|
5781
|
+
return this.regexAccept(String.raw`(?:ini)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Ts()), e;
|
|
5782
5782
|
}
|
|
5783
5783
|
);
|
|
5784
5784
|
}
|
|
@@ -5787,7 +5787,7 @@ class Er {
|
|
|
5787
5787
|
t,
|
|
5788
5788
|
() => {
|
|
5789
5789
|
let e = null;
|
|
5790
|
-
return this.regexAccept(String.raw`(?:inir)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Ks()), e;
|
|
5790
|
+
return this.regexAccept(String.raw`(?:inir)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new Ks()), e;
|
|
5791
5791
|
}
|
|
5792
5792
|
);
|
|
5793
5793
|
}
|
|
@@ -5796,7 +5796,7 @@ class Er {
|
|
|
5796
5796
|
t,
|
|
5797
5797
|
() => {
|
|
5798
5798
|
let e = null;
|
|
5799
|
-
return this.regexAccept(String.raw`(?:ind)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ds()), e;
|
|
5799
|
+
return this.regexAccept(String.raw`(?:ind)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ds()), e;
|
|
5800
5800
|
}
|
|
5801
5801
|
);
|
|
5802
5802
|
}
|
|
@@ -5805,7 +5805,7 @@ class Er {
|
|
|
5805
5805
|
t,
|
|
5806
5806
|
() => {
|
|
5807
5807
|
let e = null;
|
|
5808
|
-
return this.regexAccept(String.raw`(?:indr)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new $s()), e;
|
|
5808
|
+
return this.regexAccept(String.raw`(?:indr)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new $s()), e;
|
|
5809
5809
|
}
|
|
5810
5810
|
);
|
|
5811
5811
|
}
|
|
@@ -5824,7 +5824,7 @@ class Er {
|
|
|
5824
5824
|
t,
|
|
5825
5825
|
() => {
|
|
5826
5826
|
let e, s = null;
|
|
5827
|
-
return this.regexAccept(String.raw`(?:out)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.regexAccept(String.raw`(?:c)`, t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new tr(e)), s;
|
|
5827
|
+
return this.regexAccept(String.raw`(?:out)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.regexAccept(String.raw`(?:c)`, "", t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new tr(e)), s;
|
|
5828
5828
|
}
|
|
5829
5829
|
);
|
|
5830
5830
|
}
|
|
@@ -5833,7 +5833,7 @@ class Er {
|
|
|
5833
5833
|
t,
|
|
5834
5834
|
() => {
|
|
5835
5835
|
let e, s, r = null;
|
|
5836
|
-
return this.regexAccept(String.raw`(?:out)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:a)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new nr(e, s)), r;
|
|
5836
|
+
return this.regexAccept(String.raw`(?:out)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:\()`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:\))`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:a)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new nr(e, s)), r;
|
|
5837
5837
|
}
|
|
5838
5838
|
);
|
|
5839
5839
|
}
|
|
@@ -5842,7 +5842,7 @@ class Er {
|
|
|
5842
5842
|
t,
|
|
5843
5843
|
() => {
|
|
5844
5844
|
let e = null;
|
|
5845
|
-
return this.regexAccept(String.raw`(?:outi)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new er()), e;
|
|
5845
|
+
return this.regexAccept(String.raw`(?:outi)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new er()), e;
|
|
5846
5846
|
}
|
|
5847
5847
|
);
|
|
5848
5848
|
}
|
|
@@ -5851,7 +5851,7 @@ class Er {
|
|
|
5851
5851
|
t,
|
|
5852
5852
|
() => {
|
|
5853
5853
|
let e = null;
|
|
5854
|
-
return this.regexAccept(String.raw`(?:otir)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ir()), e;
|
|
5854
|
+
return this.regexAccept(String.raw`(?:otir)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new ir()), e;
|
|
5855
5855
|
}
|
|
5856
5856
|
);
|
|
5857
5857
|
}
|
|
@@ -5860,7 +5860,7 @@ class Er {
|
|
|
5860
5860
|
t,
|
|
5861
5861
|
() => {
|
|
5862
5862
|
let e = null;
|
|
5863
|
-
return this.regexAccept(String.raw`(?:outd)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new sr()), e;
|
|
5863
|
+
return this.regexAccept(String.raw`(?:outd)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new sr()), e;
|
|
5864
5864
|
}
|
|
5865
5865
|
);
|
|
5866
5866
|
}
|
|
@@ -5869,7 +5869,7 @@ class Er {
|
|
|
5869
5869
|
t,
|
|
5870
5870
|
() => {
|
|
5871
5871
|
let e = null;
|
|
5872
|
-
return this.regexAccept(String.raw`(?:otdr)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new rr()), e;
|
|
5872
|
+
return this.regexAccept(String.raw`(?:otdr)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (e = new rr()), e;
|
|
5873
5873
|
}
|
|
5874
5874
|
);
|
|
5875
5875
|
}
|
|
@@ -5883,19 +5883,19 @@ class Er {
|
|
|
5883
5883
|
]);
|
|
5884
5884
|
}
|
|
5885
5885
|
matchByteDirective_1(t, n) {
|
|
5886
|
-
return this.regexAccept(String.raw`(?:db)`, t + 1, n);
|
|
5886
|
+
return this.regexAccept(String.raw`(?:db)`, "", t + 1, n);
|
|
5887
5887
|
}
|
|
5888
5888
|
matchByteDirective_2(t, n) {
|
|
5889
|
-
return this.regexAccept(String.raw`(?:dm)`, t + 1, n);
|
|
5889
|
+
return this.regexAccept(String.raw`(?:dm)`, "", t + 1, n);
|
|
5890
5890
|
}
|
|
5891
5891
|
matchByteDirective_3(t, n) {
|
|
5892
|
-
return this.regexAccept(String.raw`(?:\.?byte)`, t + 1, n);
|
|
5892
|
+
return this.regexAccept(String.raw`(?:\.?byte)`, "", t + 1, n);
|
|
5893
5893
|
}
|
|
5894
5894
|
matchByteDirective_4(t, n) {
|
|
5895
|
-
return this.regexAccept(String.raw`(?:defb)`, t + 1, n);
|
|
5895
|
+
return this.regexAccept(String.raw`(?:defb)`, "", t + 1, n);
|
|
5896
5896
|
}
|
|
5897
5897
|
matchByteDirective_5(t, n) {
|
|
5898
|
-
return this.regexAccept(String.raw`(?:defm)`, t + 1, n);
|
|
5898
|
+
return this.regexAccept(String.raw`(?:defm)`, "", t + 1, n);
|
|
5899
5899
|
}
|
|
5900
5900
|
matchWordDirective(t, n) {
|
|
5901
5901
|
return this.choice([
|
|
@@ -5905,13 +5905,13 @@ class Er {
|
|
|
5905
5905
|
]);
|
|
5906
5906
|
}
|
|
5907
5907
|
matchWordDirective_1(t, n) {
|
|
5908
|
-
return this.regexAccept(String.raw`(?:dw)`, t + 1, n);
|
|
5908
|
+
return this.regexAccept(String.raw`(?:dw)`, "", t + 1, n);
|
|
5909
5909
|
}
|
|
5910
5910
|
matchWordDirective_2(t, n) {
|
|
5911
|
-
return this.regexAccept(String.raw`(?:\.?word)`, t + 1, n);
|
|
5911
|
+
return this.regexAccept(String.raw`(?:\.?word)`, "", t + 1, n);
|
|
5912
5912
|
}
|
|
5913
5913
|
matchWordDirective_3(t, n) {
|
|
5914
|
-
return this.regexAccept(String.raw`(?:defw)`, t + 1, n);
|
|
5914
|
+
return this.regexAccept(String.raw`(?:defw)`, "", t + 1, n);
|
|
5915
5915
|
}
|
|
5916
5916
|
matchBlockDirective(t, n) {
|
|
5917
5917
|
return this.choice([
|
|
@@ -5921,13 +5921,13 @@ class Er {
|
|
|
5921
5921
|
]);
|
|
5922
5922
|
}
|
|
5923
5923
|
matchBlockDirective_1(t, n) {
|
|
5924
|
-
return this.regexAccept(String.raw`(?:\.?block)`, t + 1, n);
|
|
5924
|
+
return this.regexAccept(String.raw`(?:\.?block)`, "", t + 1, n);
|
|
5925
5925
|
}
|
|
5926
5926
|
matchBlockDirective_2(t, n) {
|
|
5927
|
-
return this.regexAccept(String.raw`(?:defs)`, t + 1, n);
|
|
5927
|
+
return this.regexAccept(String.raw`(?:defs)`, "", t + 1, n);
|
|
5928
5928
|
}
|
|
5929
5929
|
matchBlockDirective_3(t, n) {
|
|
5930
|
-
return this.regexAccept(String.raw`(?:ds)`, t + 1, n);
|
|
5930
|
+
return this.regexAccept(String.raw`(?:ds)`, "", t + 1, n);
|
|
5931
5931
|
}
|
|
5932
5932
|
matchByteValue(t, n) {
|
|
5933
5933
|
return this.choice([
|
|
@@ -5984,7 +5984,7 @@ class Er {
|
|
|
5984
5984
|
t,
|
|
5985
5985
|
() => {
|
|
5986
5986
|
let e, s, r, u = null;
|
|
5987
|
-
return this.matchByteDirective(t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchByteValue(t + 1, n)) !== null && (r = this.loop(() => this.matchDataDirective_$0(t + 1, n),
|
|
5987
|
+
return this.matchByteDirective(t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchByteValue(t + 1, n)) !== null && (r = this.loop(() => this.matchDataDirective_$0(t + 1, n), 0, -1)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (u = new ar(e, s, r)), u;
|
|
5988
5988
|
}
|
|
5989
5989
|
);
|
|
5990
5990
|
}
|
|
@@ -5993,7 +5993,7 @@ class Er {
|
|
|
5993
5993
|
t,
|
|
5994
5994
|
() => {
|
|
5995
5995
|
let e, s, r, u = null;
|
|
5996
|
-
return this.matchWordDirective(t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchWordValue(t + 1, n)) !== null && (r = this.loop(() => this.matchDataDirective_$1(t + 1, n),
|
|
5996
|
+
return this.matchWordDirective(t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchWordValue(t + 1, n)) !== null && (r = this.loop(() => this.matchDataDirective_$1(t + 1, n), 0, -1)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (u = new hr(e, s, r)), u;
|
|
5997
5997
|
}
|
|
5998
5998
|
);
|
|
5999
5999
|
}
|
|
@@ -6011,7 +6011,7 @@ class Er {
|
|
|
6011
6011
|
t,
|
|
6012
6012
|
() => {
|
|
6013
6013
|
let e, s = null;
|
|
6014
|
-
return this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchByteValue(t + 1, n)) !== null && (s = { kind: "DataDirective_$0", inner: e }), s;
|
|
6014
|
+
return this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchByteValue(t + 1, n)) !== null && (s = { kind: "DataDirective_$0", inner: e }), s;
|
|
6015
6015
|
}
|
|
6016
6016
|
);
|
|
6017
6017
|
}
|
|
@@ -6020,7 +6020,7 @@ class Er {
|
|
|
6020
6020
|
t,
|
|
6021
6021
|
() => {
|
|
6022
6022
|
let e, s = null;
|
|
6023
|
-
return this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchWordValue(t + 1, n)) !== null && (s = { kind: "DataDirective_$1", inner: e }), s;
|
|
6023
|
+
return this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.matchWordValue(t + 1, n)) !== null && (s = { kind: "DataDirective_$1", inner: e }), s;
|
|
6024
6024
|
}
|
|
6025
6025
|
);
|
|
6026
6026
|
}
|
|
@@ -6029,7 +6029,7 @@ class Er {
|
|
|
6029
6029
|
t,
|
|
6030
6030
|
() => {
|
|
6031
6031
|
let e, s, r = null;
|
|
6032
|
-
return this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && (r = { kind: "DataDirective_$2", pos1: e, b: s }), r;
|
|
6032
|
+
return this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && (e = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && (r = { kind: "DataDirective_$2", pos1: e, b: s }), r;
|
|
6033
6033
|
}
|
|
6034
6034
|
);
|
|
6035
6035
|
}
|
|
@@ -6054,7 +6054,7 @@ class Er {
|
|
|
6054
6054
|
t,
|
|
6055
6055
|
() => {
|
|
6056
6056
|
let e, s, r = null;
|
|
6057
|
-
return (e = this.mark()) !== null && this.regexAccept(String.raw`(?:\\)`, t + 1, n) !== null && (s = this.matchSimpleEscapeSequence_$0(t + 1, n)) !== null && (r = new _r(e, s)), r;
|
|
6057
|
+
return (e = this.mark()) !== null && this.regexAccept(String.raw`(?:\\)`, "", t + 1, n) !== null && (s = this.matchSimpleEscapeSequence_$0(t + 1, n)) !== null && (r = new _r(e, s)), r;
|
|
6058
6058
|
}
|
|
6059
6059
|
);
|
|
6060
6060
|
}
|
|
@@ -6065,17 +6065,17 @@ class Er {
|
|
|
6065
6065
|
]);
|
|
6066
6066
|
}
|
|
6067
6067
|
matchSimpleEscapeSequence_$0_1(t, n) {
|
|
6068
|
-
return this.regexAccept(String.raw`(?:")`, t + 1, n);
|
|
6068
|
+
return this.regexAccept(String.raw`(?:")`, "", t + 1, n);
|
|
6069
6069
|
}
|
|
6070
6070
|
matchSimpleEscapeSequence_$0_2(t, n) {
|
|
6071
|
-
return this.regexAccept(String.raw`(?:n)`, t + 1, n);
|
|
6071
|
+
return this.regexAccept(String.raw`(?:n)`, "", t + 1, n);
|
|
6072
6072
|
}
|
|
6073
6073
|
matchOctalEscapeSequence(t, n) {
|
|
6074
6074
|
return this.run(
|
|
6075
6075
|
t,
|
|
6076
6076
|
() => {
|
|
6077
6077
|
let e, s, r = null;
|
|
6078
|
-
return this.regexAccept(String.raw`(?:\\)`, t + 1, n) !== null && (e = this.mark()) !== null && (s = this.regexAccept(String.raw`(?:[0-7]{1,3})`, t + 1, n)) !== null && (r = new gr(e, s)), r;
|
|
6078
|
+
return this.regexAccept(String.raw`(?:\\)`, "", t + 1, n) !== null && (e = this.mark()) !== null && (s = this.regexAccept(String.raw`(?:[0-7]{1,3})`, "", t + 1, n)) !== null && (r = new gr(e, s)), r;
|
|
6079
6079
|
}
|
|
6080
6080
|
);
|
|
6081
6081
|
}
|
|
@@ -6084,7 +6084,7 @@ class Er {
|
|
|
6084
6084
|
t,
|
|
6085
6085
|
() => {
|
|
6086
6086
|
let e, s, r = null;
|
|
6087
|
-
return this.regexAccept(String.raw`(?:\\x)`, t + 1, n) !== null && (e = this.mark()) !== null && (s = this.regexAccept(String.raw`(?:[0-9a-f]{1,2})`, t + 1, n)) !== null && (r = new Ir(e, s)), r;
|
|
6087
|
+
return this.regexAccept(String.raw`(?:\\x)`, "", t + 1, n) !== null && (e = this.mark()) !== null && (s = this.regexAccept(String.raw`(?:[0-9a-f]{1,2})`, "", t + 1, n)) !== null && (r = new Ir(e, s)), r;
|
|
6088
6088
|
}
|
|
6089
6089
|
);
|
|
6090
6090
|
}
|
|
@@ -6093,7 +6093,7 @@ class Er {
|
|
|
6093
6093
|
t,
|
|
6094
6094
|
() => {
|
|
6095
6095
|
let e, s, r = null;
|
|
6096
|
-
return (e = this.mark()) !== null && (s = this.regexAccept(String.raw`(?:[^\'\\\n])`, t + 1, n)) !== null && (r = new wr(e, s)), r;
|
|
6096
|
+
return (e = this.mark()) !== null && (s = this.regexAccept(String.raw`(?:[^\'\\\n])`, "", t + 1, n)) !== null && (r = new wr(e, s)), r;
|
|
6097
6097
|
}
|
|
6098
6098
|
);
|
|
6099
6099
|
}
|
|
@@ -6102,7 +6102,7 @@ class Er {
|
|
|
6102
6102
|
t,
|
|
6103
6103
|
() => {
|
|
6104
6104
|
let e, s, r = null;
|
|
6105
|
-
return (e = this.mark()) !== null && (s = this.regexAccept(String.raw`(?:[^\"\\\n])`, t + 1, n)) !== null && (r = new xr(e, s)), r;
|
|
6105
|
+
return (e = this.mark()) !== null && (s = this.regexAccept(String.raw`(?:[^\"\\\n])`, "", t + 1, n)) !== null && (r = new xr(e, s)), r;
|
|
6106
6106
|
}
|
|
6107
6107
|
);
|
|
6108
6108
|
}
|
|
@@ -6111,7 +6111,7 @@ class Er {
|
|
|
6111
6111
|
t,
|
|
6112
6112
|
() => {
|
|
6113
6113
|
let e, s, r = null;
|
|
6114
|
-
return this.regexAccept(String.raw`(?:\')`, t + 1, n) !== null && (e = this.mark()) !== null && (s = this.
|
|
6114
|
+
return this.regexAccept(String.raw`(?:\')`, "", t + 1, n) !== null && (e = this.mark()) !== null && (s = this.loopPlus(() => this.matchQuottedStr_$0(t + 1, n))) !== null && this.regexAccept(String.raw`(?:\')`, "", t + 1, n) !== null && (r = new fr(e, s)), r;
|
|
6115
6115
|
}
|
|
6116
6116
|
);
|
|
6117
6117
|
}
|
|
@@ -6132,7 +6132,7 @@ class Er {
|
|
|
6132
6132
|
t,
|
|
6133
6133
|
() => {
|
|
6134
6134
|
let e, s, r = null;
|
|
6135
|
-
return this.regexAccept(String.raw`(?:\")`, t + 1, n) !== null && (e = this.mark()) !== null && (s = this.
|
|
6135
|
+
return this.regexAccept(String.raw`(?:\")`, "", t + 1, n) !== null && (e = this.mark()) !== null && (s = this.loopPlus(() => this.matchDoubleQuottedStr_$0(t + 1, n))) !== null && this.regexAccept(String.raw`(?:\")`, "", t + 1, n) !== null && (r = new Ar(e, s)), r;
|
|
6136
6136
|
}
|
|
6137
6137
|
);
|
|
6138
6138
|
}
|
|
@@ -6149,14 +6149,14 @@ class Er {
|
|
|
6149
6149
|
return this.matchEscapeSequence(t + 1, n);
|
|
6150
6150
|
}
|
|
6151
6151
|
matchComment(t, n) {
|
|
6152
|
-
return this.regexAccept(String.raw`(?:(//|;)[^\r\n]*)`, t + 1, n);
|
|
6152
|
+
return this.regexAccept(String.raw`(?:(//|;)[^\r\n]*)`, "", t + 1, n);
|
|
6153
6153
|
}
|
|
6154
6154
|
matchOriginDirective(t, n) {
|
|
6155
6155
|
return this.run(
|
|
6156
6156
|
t,
|
|
6157
6157
|
() => {
|
|
6158
6158
|
let e, s = null;
|
|
6159
|
-
return this.regexAccept(String.raw`(?:\.?org)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchnn(t + 1, n)) !== null && (s = { kind: "OriginDirective", address: e }), s;
|
|
6159
|
+
return this.regexAccept(String.raw`(?:\.?org)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchnn(t + 1, n)) !== null && (s = { kind: "OriginDirective", address: e }), s;
|
|
6160
6160
|
}
|
|
6161
6161
|
);
|
|
6162
6162
|
}
|
|
@@ -6171,7 +6171,7 @@ class Er {
|
|
|
6171
6171
|
t,
|
|
6172
6172
|
() => {
|
|
6173
6173
|
let e, s = null;
|
|
6174
|
-
return this.regexAccept(String.raw`(?:")`, t + 1, n) !== null && (e = this.regexAccept(String.raw`(?:[^"\\:\*\?<>\|%#\$,]+)`, t + 1, n)) !== null && this.regexAccept(String.raw`(?:")`, t + 1, n) !== null && (s = { kind: "Filename_1", raw: e }), s;
|
|
6174
|
+
return this.regexAccept(String.raw`(?:")`, "", t + 1, n) !== null && (e = this.regexAccept(String.raw`(?:[^"\\:\*\?<>\|%#\$,]+)`, "", t + 1, n)) !== null && this.regexAccept(String.raw`(?:")`, "", t + 1, n) !== null && (s = { kind: "Filename_1", raw: e }), s;
|
|
6175
6175
|
}
|
|
6176
6176
|
);
|
|
6177
6177
|
}
|
|
@@ -6180,7 +6180,7 @@ class Er {
|
|
|
6180
6180
|
t,
|
|
6181
6181
|
() => {
|
|
6182
6182
|
let e, s = null;
|
|
6183
|
-
return (e = this.regexAccept(String.raw`(?:[^ \t\r\n"\\:\*\?<>\|%#\$,]+)`, t + 1, n)) !== null && (s = { kind: "Filename_2", raw: e }), s;
|
|
6183
|
+
return (e = this.regexAccept(String.raw`(?:[^ \t\r\n"\\:\*\?<>\|%#\$,]+)`, "", t + 1, n)) !== null && (s = { kind: "Filename_2", raw: e }), s;
|
|
6184
6184
|
}
|
|
6185
6185
|
);
|
|
6186
6186
|
}
|
|
@@ -6189,7 +6189,7 @@ class Er {
|
|
|
6189
6189
|
t,
|
|
6190
6190
|
() => {
|
|
6191
6191
|
let e, s, r = null;
|
|
6192
|
-
return (e = this.mark()) !== null && this.regexAccept(String.raw`(?:\.?include)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (s = this.matchFilename(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Lr(e, s)), r;
|
|
6192
|
+
return (e = this.mark()) !== null && this.regexAccept(String.raw`(?:\.?include)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (s = this.matchFilename(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Lr(e, s)), r;
|
|
6193
6193
|
}
|
|
6194
6194
|
);
|
|
6195
6195
|
}
|
|
@@ -6198,7 +6198,7 @@ class Er {
|
|
|
6198
6198
|
t,
|
|
6199
6199
|
() => {
|
|
6200
6200
|
let e, s, r = null;
|
|
6201
|
-
return this.regexAccept(String.raw`(?:\.?output)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchFilename(t + 1, n)) !== null && ((s = this.matchOutputDirective_$0(t + 1, n)) || !0) && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Sr(e, s)), r;
|
|
6201
|
+
return this.regexAccept(String.raw`(?:\.?output)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchFilename(t + 1, n)) !== null && ((s = this.matchOutputDirective_$0(t + 1, n)) || !0) && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Sr(e, s)), r;
|
|
6202
6202
|
}
|
|
6203
6203
|
);
|
|
6204
6204
|
}
|
|
@@ -6207,7 +6207,7 @@ class Er {
|
|
|
6207
6207
|
t,
|
|
6208
6208
|
() => {
|
|
6209
6209
|
let e, s = null;
|
|
6210
|
-
return this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:sld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchFilename(t + 1, n)) !== null && (s = { kind: "OutputDirective_$0", name: e }), s;
|
|
6210
|
+
return this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:,)`, "", t + 1, n) !== null && this.match_(t + 1, n) !== null && this.regexAccept(String.raw`(?:sld)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.matchFilename(t + 1, n)) !== null && (s = { kind: "OutputDirective_$0", name: e }), s;
|
|
6211
6211
|
}
|
|
6212
6212
|
);
|
|
6213
6213
|
}
|
|
@@ -6216,7 +6216,7 @@ class Er {
|
|
|
6216
6216
|
t,
|
|
6217
6217
|
() => {
|
|
6218
6218
|
let e, s = null;
|
|
6219
|
-
return this.regexAccept(String.raw`(?:\.?device)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.regexAccept(String.raw`(?:[a-zA-Z][0-9a-zA-Z]*)`, t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new kr(e)), s;
|
|
6219
|
+
return this.regexAccept(String.raw`(?:\.?device)`, "", t + 1, n) !== null && this.match__(t + 1, n) !== null && (e = this.regexAccept(String.raw`(?:[a-zA-Z][0-9a-zA-Z]*)`, "", t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new kr(e)), s;
|
|
6220
6220
|
}
|
|
6221
6221
|
);
|
|
6222
6222
|
}
|
|
@@ -6225,7 +6225,7 @@ class Er {
|
|
|
6225
6225
|
t,
|
|
6226
6226
|
() => {
|
|
6227
6227
|
let e = null;
|
|
6228
|
-
return this.regexAccept(String.raw`(?:\.?end)`, t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && this.regexAccept(String.raw`(?:.*)`, t + 1, n) !== null && (e = {
|
|
6228
|
+
return this.regexAccept(String.raw`(?:\.?end)`, "", t + 1, n) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && this.regexAccept(String.raw`(?:.*)`, "", t + 1, n) !== null && (e = {
|
|
6229
6229
|
kind: "EndDirective"
|
|
6230
6230
|
/* EndDirective */
|
|
6231
6231
|
}), e;
|
|
@@ -6249,20 +6249,25 @@ class Er {
|
|
|
6249
6249
|
mark() {
|
|
6250
6250
|
return this.pos;
|
|
6251
6251
|
}
|
|
6252
|
-
|
|
6253
|
-
|
|
6254
|
-
|
|
6255
|
-
|
|
6256
|
-
|
|
6252
|
+
// @ts-ignore: loopPlus may not be called
|
|
6253
|
+
loopPlus(t) {
|
|
6254
|
+
return this.loop(t, 1, -1);
|
|
6255
|
+
}
|
|
6256
|
+
loop(t, n, e) {
|
|
6257
|
+
const s = this.mark(), r = [];
|
|
6258
|
+
for (; e === -1 || r.length < e; ) {
|
|
6259
|
+
const u = this.mark(), l = t();
|
|
6260
|
+
if (l === null || this.pos.overallPos === u.overallPos)
|
|
6257
6261
|
break;
|
|
6258
|
-
|
|
6262
|
+
r.push(l);
|
|
6259
6263
|
}
|
|
6260
|
-
return
|
|
6264
|
+
return r.length >= n ? r : (this.reset(s), null);
|
|
6261
6265
|
}
|
|
6262
6266
|
run(t, n) {
|
|
6263
6267
|
const e = this.mark(), s = n();
|
|
6264
6268
|
return s !== null ? s : (this.reset(e), null);
|
|
6265
6269
|
}
|
|
6270
|
+
// @ts-ignore: choice may not be called
|
|
6266
6271
|
choice(t) {
|
|
6267
6272
|
for (const n of t) {
|
|
6268
6273
|
const e = n();
|
|
@@ -6271,20 +6276,20 @@ class Er {
|
|
|
6271
6276
|
}
|
|
6272
6277
|
return null;
|
|
6273
6278
|
}
|
|
6274
|
-
regexAccept(t, n, e) {
|
|
6279
|
+
regexAccept(t, n, e, s) {
|
|
6275
6280
|
return this.run(
|
|
6276
|
-
|
|
6281
|
+
e,
|
|
6277
6282
|
() => {
|
|
6278
|
-
const
|
|
6279
|
-
|
|
6280
|
-
const
|
|
6281
|
-
return
|
|
6283
|
+
const r = new RegExp(t, "yi" + n), u = this.mark();
|
|
6284
|
+
r.lastIndex = u.overallPos;
|
|
6285
|
+
const l = this.tryConsume(r);
|
|
6286
|
+
return s && s.record(u, l, {
|
|
6282
6287
|
kind: "RegexMatch",
|
|
6283
6288
|
// We substring from 3 to len - 1 to strip off the
|
|
6284
6289
|
// non-capture group syntax added as a WebKit workaround
|
|
6285
6290
|
literal: t.substring(3, t.length - 1),
|
|
6286
6291
|
negated: this.negating
|
|
6287
|
-
}),
|
|
6292
|
+
}), l;
|
|
6288
6293
|
}
|
|
6289
6294
|
);
|
|
6290
6295
|
}
|
|
@@ -6303,16 +6308,19 @@ class Er {
|
|
|
6303
6308
|
}
|
|
6304
6309
|
return null;
|
|
6305
6310
|
}
|
|
6311
|
+
// @ts-ignore: noConsume may not be called
|
|
6306
6312
|
noConsume(t) {
|
|
6307
6313
|
const n = this.mark(), e = t();
|
|
6308
6314
|
return this.reset(n), e;
|
|
6309
6315
|
}
|
|
6316
|
+
// @ts-ignore: negate may not be called
|
|
6310
6317
|
negate(t) {
|
|
6311
6318
|
const n = this.mark(), e = this.negating;
|
|
6312
6319
|
this.negating = !e;
|
|
6313
6320
|
const s = t();
|
|
6314
6321
|
return this.negating = e, this.reset(n), s === null ? !0 : null;
|
|
6315
6322
|
}
|
|
6323
|
+
// @ts-ignore: Memoise may not be used
|
|
6316
6324
|
memoise(t, n) {
|
|
6317
6325
|
const e = this.mark(), s = n.get(e.overallPos);
|
|
6318
6326
|
if (this.memoSafe && s !== void 0)
|
|
@@ -6347,7 +6355,7 @@ class vr {
|
|
|
6347
6355
|
return this.mxpos.overallPos !== -1 ? new z(this.mxpos, this.pmatches) : null;
|
|
6348
6356
|
}
|
|
6349
6357
|
}
|
|
6350
|
-
class
|
|
6358
|
+
class a extends Error {
|
|
6351
6359
|
/**
|
|
6352
6360
|
* Constructor.
|
|
6353
6361
|
* @param position Position (filename, line, offset) where the error occurred.
|
|
@@ -6383,7 +6391,7 @@ class o extends Error {
|
|
|
6383
6391
|
const n = t.expmatches[0], e = n.kind === "EOF" ? "the end of the code" : n.literal;
|
|
6384
6392
|
return `${n.negated ? "Does not expect " : "Expect "}${e}`;
|
|
6385
6393
|
}
|
|
6386
|
-
return `Syntax error, expected one of: ${t.expmatches.map((n) =>
|
|
6394
|
+
return `Syntax error, expected one of: ${t.expmatches.map((n) => a.formatMatch(n))}`;
|
|
6387
6395
|
}
|
|
6388
6396
|
/**
|
|
6389
6397
|
* Create a compilation error from a syntax error.
|
|
@@ -6391,7 +6399,7 @@ class o extends Error {
|
|
|
6391
6399
|
* @param e Syntax error.
|
|
6392
6400
|
*/
|
|
6393
6401
|
static fromSyntaxErr(t, n) {
|
|
6394
|
-
return new
|
|
6402
|
+
return new a({ filename: t, pos: n.pos }, this.formatError(n));
|
|
6395
6403
|
}
|
|
6396
6404
|
/**
|
|
6397
6405
|
* Create a compilation error from different errors.
|
|
@@ -6399,7 +6407,7 @@ class o extends Error {
|
|
|
6399
6407
|
* @param e The error
|
|
6400
6408
|
*/
|
|
6401
6409
|
static fromAny(t, n) {
|
|
6402
|
-
return n instanceof
|
|
6410
|
+
return n instanceof a ? n : n instanceof z ? this.fromSyntaxErr(t, n) : new a({ filename: t, pos: { line: 1, offset: 0, overallPos: 0 } }, n.toString());
|
|
6403
6411
|
}
|
|
6404
6412
|
/**
|
|
6405
6413
|
* Check if an error is a compilation error (and cast the error in this case).
|
|
@@ -6429,7 +6437,7 @@ function br(i, t) {
|
|
|
6429
6437
|
return n;
|
|
6430
6438
|
}
|
|
6431
6439
|
export {
|
|
6432
|
-
|
|
6440
|
+
a as CompilationError,
|
|
6433
6441
|
Cr as compile,
|
|
6434
6442
|
X as computeLabels,
|
|
6435
6443
|
br as formatBytes,
|