@andrivet/z80-assembler 1.1.0 → 1.2.0
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 +18 -0
- package/index.js +1 -1
- package/index.mjs +474 -380
- package/lib/compiler/Ast.d.ts +12 -2
- package/lib/compiler/Compiler.d.ts +1 -1
- package/lib/compiler/Formatter.d.ts +1 -1
- package/lib/compiler/Labels.d.ts +19 -2
- package/lib/grammar/LowLevel.d.ts +38 -10
- package/lib/grammar/Parse.d.ts +21 -1
- package/lib/grammar/z80.d.ts +208 -208
- package/lib/types/Error.d.ts +26 -6
- package/lib/types/Types.d.ts +6 -1
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -186,9 +186,25 @@ function d() {
|
|
|
186
186
|
return [...L.entries()].filter(([, e]) => !e.known && e.value == null).map(([e]) => e);
|
|
187
187
|
}
|
|
188
188
|
class $ {
|
|
189
|
+
/**
|
|
190
|
+
* Constructor.
|
|
191
|
+
* Constructeur.
|
|
192
|
+
* @param pos0 Position of the length of the block.
|
|
193
|
+
* Position de la taille du block.
|
|
194
|
+
* @param length Length of the block.
|
|
195
|
+
* Taille du bloc.
|
|
196
|
+
* @param pos1 Position of the value.
|
|
197
|
+
* Position de la valeur.
|
|
198
|
+
* @param value Value to use to fill the block.
|
|
199
|
+
* La valeur à utiliser pour remplir le bloc.
|
|
200
|
+
*/
|
|
189
201
|
constructor(t, n, i, s) {
|
|
190
202
|
this.pos0 = t, this.length = n, this.pos1 = i, this.value = s, this.filename = h.fileName;
|
|
191
203
|
}
|
|
204
|
+
/**
|
|
205
|
+
* The number of bytes that will be generated by this element.
|
|
206
|
+
* Le nombre d'octets générés par cet élément.
|
|
207
|
+
*/
|
|
192
208
|
get size() {
|
|
193
209
|
const t = this.length.eval();
|
|
194
210
|
if (t == null)
|
|
@@ -197,6 +213,11 @@ class $ {
|
|
|
197
213
|
throw new m(this.filename, this.pos0, `Invalid size size for the data block: ${t}`);
|
|
198
214
|
return t;
|
|
199
215
|
}
|
|
216
|
+
/**
|
|
217
|
+
* Evaluate the expression for the value used to fill the block.
|
|
218
|
+
* Evalue l'expression pour la valeur utilisée pour remplir le bloc.
|
|
219
|
+
* @private
|
|
220
|
+
*/
|
|
200
221
|
getValue() {
|
|
201
222
|
if (this.value == null || this.pos1 == null)
|
|
202
223
|
return 0;
|
|
@@ -207,18 +228,38 @@ class $ {
|
|
|
207
228
|
throw new m(this.filename, this.pos1, `Invalid 8-bits value: ${t}`);
|
|
208
229
|
return t < 0 && (t = 256 + t), t;
|
|
209
230
|
}
|
|
231
|
+
/**
|
|
232
|
+
* Generate actual bytes.
|
|
233
|
+
* Génération des octets
|
|
234
|
+
*/
|
|
210
235
|
generate() {
|
|
211
236
|
const t = new Array(this.size);
|
|
212
237
|
return t.fill(this.getValue()), t;
|
|
213
238
|
}
|
|
214
239
|
}
|
|
215
240
|
class tt {
|
|
241
|
+
/**
|
|
242
|
+
* Constructor.
|
|
243
|
+
* Constructeur.
|
|
244
|
+
* @param pos Position of the expression for the value.
|
|
245
|
+
* Position de l'expression pour la valeur.
|
|
246
|
+
* @param expression Expression for the value.
|
|
247
|
+
* Expression pour la valeur.
|
|
248
|
+
*/
|
|
216
249
|
constructor(t, n) {
|
|
217
250
|
this.pos = t, this.expression = n, this.filename = h.fileName;
|
|
218
251
|
}
|
|
252
|
+
/**
|
|
253
|
+
* The number of bytes that will be generated by this element.
|
|
254
|
+
* Le nombre d'octets générés par cet élément.
|
|
255
|
+
*/
|
|
219
256
|
get size() {
|
|
220
257
|
return 2;
|
|
221
258
|
}
|
|
259
|
+
/**
|
|
260
|
+
* Generate actual bytes.
|
|
261
|
+
* Génération des octets
|
|
262
|
+
*/
|
|
222
263
|
generate() {
|
|
223
264
|
let t = this.expression.eval();
|
|
224
265
|
if (t == null)
|
|
@@ -232,9 +273,17 @@ class O {
|
|
|
232
273
|
constructor(t, n) {
|
|
233
274
|
this.pos = t, this.expression = n, this.filename = h.fileName;
|
|
234
275
|
}
|
|
276
|
+
/**
|
|
277
|
+
* The number of bytes that will be generated by this element.
|
|
278
|
+
* Le nombre d'octets générés par cet élément.
|
|
279
|
+
*/
|
|
235
280
|
get size() {
|
|
236
281
|
return 1;
|
|
237
282
|
}
|
|
283
|
+
/**
|
|
284
|
+
* Generate actual bytes.
|
|
285
|
+
* Génération des octets
|
|
286
|
+
*/
|
|
238
287
|
generate() {
|
|
239
288
|
let t = this.expression.eval();
|
|
240
289
|
if (t == null)
|
|
@@ -248,9 +297,17 @@ class nt {
|
|
|
248
297
|
constructor(t, n) {
|
|
249
298
|
this.pos = t, this.expression = n, this.filename = h.fileName;
|
|
250
299
|
}
|
|
300
|
+
/**
|
|
301
|
+
* The number of bytes that will be generated by this element.
|
|
302
|
+
* Le nombre d'octets générés par cet élément.
|
|
303
|
+
*/
|
|
251
304
|
get size() {
|
|
252
305
|
return 1;
|
|
253
306
|
}
|
|
307
|
+
/**
|
|
308
|
+
* Generate actual bytes.
|
|
309
|
+
* Génération des octets
|
|
310
|
+
*/
|
|
254
311
|
generate() {
|
|
255
312
|
let t = this.expression.eval();
|
|
256
313
|
if (t == null)
|
|
@@ -264,9 +321,17 @@ class it {
|
|
|
264
321
|
constructor(t, n) {
|
|
265
322
|
this.pos = t, this.expression = n, this.filename = h.fileName;
|
|
266
323
|
}
|
|
324
|
+
/**
|
|
325
|
+
* The number of bytes that will be generated by this element.
|
|
326
|
+
* Le nombre d'octets générés par cet élément.
|
|
327
|
+
*/
|
|
267
328
|
get size() {
|
|
268
329
|
return 1;
|
|
269
330
|
}
|
|
331
|
+
/**
|
|
332
|
+
* Generate actual bytes.
|
|
333
|
+
* Génération des octets
|
|
334
|
+
*/
|
|
270
335
|
generate() {
|
|
271
336
|
let t = this.expression.eval();
|
|
272
337
|
if (t == null)
|
|
@@ -280,9 +345,19 @@ class et {
|
|
|
280
345
|
constructor(t, n) {
|
|
281
346
|
this.pos = t, this.label = n, this.filename = h.fileName;
|
|
282
347
|
}
|
|
348
|
+
/**
|
|
349
|
+
* The number of bytes that will be generated by this element.
|
|
350
|
+
* Le nombre d'octets générés par cet élément.
|
|
351
|
+
*/
|
|
283
352
|
get size() {
|
|
284
353
|
return 1;
|
|
285
354
|
}
|
|
355
|
+
/**
|
|
356
|
+
* Generate actual bytes.
|
|
357
|
+
* Génération des octets
|
|
358
|
+
* @param instructionAddress Address of the next byte to generate,
|
|
359
|
+
* Adresse du prochain octet à générer.
|
|
360
|
+
*/
|
|
286
361
|
generate(t) {
|
|
287
362
|
const n = E(this.label);
|
|
288
363
|
if (n == null)
|
|
@@ -825,20 +900,20 @@ const p = /* @__PURE__ */ new Map([
|
|
|
825
900
|
]);
|
|
826
901
|
function U(e, t) {
|
|
827
902
|
if (t >= "A" && t < "Z")
|
|
828
|
-
return t.charCodeAt(0) - 65 + 38;
|
|
903
|
+
return [t.charCodeAt(0) - 65 + 38];
|
|
829
904
|
if (t >= "a" && t < "z")
|
|
830
|
-
return t.charCodeAt(0) - 97 + 166;
|
|
905
|
+
return [t.charCodeAt(0) - 97 + 166];
|
|
831
906
|
if (t >= "0" && t < "9")
|
|
832
|
-
return t.charCodeAt(0) - 48 + 28;
|
|
907
|
+
return [t.charCodeAt(0) - 48 + 28];
|
|
833
908
|
if (!p.has(t))
|
|
834
909
|
throw new m(
|
|
835
910
|
h.fileName,
|
|
836
911
|
e,
|
|
837
912
|
`Invalid ZX81 character: ${t}`
|
|
838
913
|
);
|
|
839
|
-
return p.get(t);
|
|
914
|
+
return [p.get(t)];
|
|
840
915
|
}
|
|
841
|
-
var x = /* @__PURE__ */ ((e) => (e.start = "start", e.r_1 = "r_1", e.r_2 = "r_2", e.r_3 = "r_3", e.r_4 = "r_4", e.r_5 = "r_5", e.r_6 = "r_6", e.r_7 = "r_7", e.dd_1 = "dd_1", e.dd_2 = "dd_2", e.dd_3 = "dd_3", e.dd_4 = "dd_4", e.ss = "ss", e.qq_1 = "qq_1", e.qq_2 = "qq_2", e.qq_3 = "qq_3", e.qq_4 = "qq_4", e.pp_1 = "pp_1", e.pp_2 = "pp_2", e.pp_3 = "pp_3", e.pp_4 = "pp_4", e.rr_1 = "rr_1", e.rr_2 = "rr_2", e.rr_3 = "rr_3", e.rr_4 = "rr_4", e.n_1 = "n_1", e.n_2 = "n_2", e.n_3 = "n_3", e.n_4 = "n_4", e.nn_1 = "nn_1", e.nn_2 = "nn_2", e.nn_3 = "nn_3", e.nn_4 = "nn_4", e.decimal = "decimal", e.binary = "binary", e.binary_$0_1 = "binary_$0_1", e.binary_$0_2 = "binary_$0_2", e.octal_1 = "octal_1", e.octal_2 = "octal_2", e.octal_$0_1 = "octal_$0_1", e.octal_$0_2 = "octal_$0_2", e.octal_$1_1 = "octal_$1_1", e.octal_$1_2 = "octal_$1_2", e.hexadecimal_1 = "hexadecimal_1", e.hexadecimal_2 = "hexadecimal_2", e.hexadecimal_$0_1 = "hexadecimal_$0_1", e.hexadecimal_$0_2 = "hexadecimal_$0_2", e.hexadecimal_$0_3 = "hexadecimal_$0_3", e.d = "d", e.e = "e", e.p = "p", e.b = "b", e.cc_1 = "cc_1", e.cc_2 = "cc_2", e.cc_3 = "cc_3", e.cc_4 = "cc_4", e.cc_5 = "cc_5", e.cc_6 = "cc_6", e.cc_7 = "cc_7", e.cc_8 = "cc_8", e.cc_9 = "cc_9", e.jj_1 = "jj_1", e.jj_2 = "jj_2", e.jj_3 = "jj_3", e.jj_4 = "jj_4", e.__ = "__", e._ = "_", e.eos = "eos", e.eol = "eol", e.Lines = "Lines", e.Line_1 = "Line_1", e.Line_2 = "Line_2", e.LineEqual = "LineEqual", e.LineStatement = "LineStatement", e.Statement_1 = "Statement_1", e.Statement_2 = "Statement_2", e.Statement_3 = "Statement_3", e.EqualDirective = "EqualDirective", e.Directive_1 = "Directive_1", e.Directive_2 = "Directive_2", e.Directive_3 = "Directive_3", e.Directive_4 = "Directive_4", e.ForbiddenNames_1 = "ForbiddenNames_1", e.ForbiddenNames_2 = "ForbiddenNames_2", e.ForbiddenNames_3 = "ForbiddenNames_3", e.ForbiddenNames_4 = "ForbiddenNames_4", e.ForbiddenNames_5 = "ForbiddenNames_5", e.ForbiddenLabel = "ForbiddenLabel", e.Label = "Label", e.LabelDeclaration = "LabelDeclaration", e.Expression = "Expression", e.BitwiseOrExpression = "BitwiseOrExpression", e.BitwiseOrExpression_$0 = "BitwiseOrExpression_$0", e.BitwiseXOrExpression = "BitwiseXOrExpression", e.BitwiseXOrExpression_$0 = "BitwiseXOrExpression_$0", e.BitwiseAndExpression = "BitwiseAndExpression", e.BitwiseAndExpression_$0 = "BitwiseAndExpression_$0", e.ShiftExpression = "ShiftExpression", e.ShiftExpression_$0 = "ShiftExpression_$0", e.ShiftExpression_$0_$0_1 = "ShiftExpression_$0_$0_1", e.ShiftExpression_$0_$0_2 = "ShiftExpression_$0_$0_2", e.AdditiveExpression = "AdditiveExpression", e.AdditiveExpression_$0 = "AdditiveExpression_$0", e.AdditiveExpression_$0_$0_1 = "AdditiveExpression_$0_$0_1", e.AdditiveExpression_$0_$0_2 = "AdditiveExpression_$0_$0_2", e.MultiplicativeExpression = "MultiplicativeExpression", e.MultiplicativeExpression_$0 = "MultiplicativeExpression_$0", e.MultiplicativeExpression_$0_$0_1 = "MultiplicativeExpression_$0_$0_1", e.MultiplicativeExpression_$0_$0_2 = "MultiplicativeExpression_$0_$0_2", e.MultiplicativeExpression_$0_$0_3 = "MultiplicativeExpression_$0_$0_3", e.UnaryExpression_1 = "UnaryExpression_1", e.UnaryExpression_2 = "UnaryExpression_2", e.UnaryExpression_$0_1 = "UnaryExpression_$0_1", e.UnaryExpression_$0_2 = "UnaryExpression_$0_2", e.UnaryExpression_$0_3 = "UnaryExpression_$0_3", e.PrimaryExpression_1 = "PrimaryExpression_1", e.PrimaryExpression_2 = "PrimaryExpression_2", e.PrimaryExpression_3 = "PrimaryExpression_3", e.Reg8 = "Reg8", e.Instruction_1 = "Instruction_1", e.Instruction_2 = "Instruction_2", e.Instruction_3 = "Instruction_3", e.Instruction_4 = "Instruction_4", e.Instruction_5 = "Instruction_5", e.Instruction_6 = "Instruction_6", e.Instruction_7 = "Instruction_7", e.Instruction_8 = "Instruction_8", e.Instruction_9 = "Instruction_9", e.Instruction_10 = "Instruction_10", e.Instruction_11 = "Instruction_11", e.Instruction_12 = "Instruction_12", e.Instruction_13 = "Instruction_13", e.Instruction_14 = "Instruction_14", e.Instruction_15 = "Instruction_15", e.Instruction_16 = "Instruction_16", e.Load8Instruction_1 = "Load8Instruction_1", e.Load8Instruction_2 = "Load8Instruction_2", e.Load8Instruction_3 = "Load8Instruction_3", e.Load8Instruction_4 = "Load8Instruction_4", e.Load8Instruction_5 = "Load8Instruction_5", e.Load8Instruction_6 = "Load8Instruction_6", e.Load8Instruction_7 = "Load8Instruction_7", e.Load8Instruction_8 = "Load8Instruction_8", e.Load8Instruction_9 = "Load8Instruction_9", e.Load8Instruction_10 = "Load8Instruction_10", e.Load8Instruction_11 = "Load8Instruction_11", e.Load8Instruction_12 = "Load8Instruction_12", e.Load8Instruction_13 = "Load8Instruction_13", e.Load8Instruction_14 = "Load8Instruction_14", e.Load8Instruction_15 = "Load8Instruction_15", e.Load8Instruction_16 = "Load8Instruction_16", e.Load8Instruction_17 = "Load8Instruction_17", e.Load8Instruction_18 = "Load8Instruction_18", e.Load8Instruction_19 = "Load8Instruction_19", e.Load8Instruction_20 = "Load8Instruction_20", e.Load8Instruction_21 = "Load8Instruction_21", e.Load8Instruction_$0_1 = "Load8Instruction_$0_1", e.Load8Instruction_$0_2 = "Load8Instruction_$0_2", e.Load8Instruction_$1_1 = "Load8Instruction_$1_1", e.Load8Instruction_$1_2 = "Load8Instruction_$1_2", e.Load8Instruction_$2_1 = "Load8Instruction_$2_1", e.Load8Instruction_$2_2 = "Load8Instruction_$2_2", e.Load8Instruction_$3_1 = "Load8Instruction_$3_1", e.Load8Instruction_$3_2 = "Load8Instruction_$3_2", e.Load8Instruction_$4_1 = "Load8Instruction_$4_1", e.Load8Instruction_$4_2 = "Load8Instruction_$4_2", e.Load8Instruction_$5_1 = "Load8Instruction_$5_1", e.Load8Instruction_$5_2 = "Load8Instruction_$5_2", e.Load16Instruction_1 = "Load16Instruction_1", e.Load16Instruction_2 = "Load16Instruction_2", e.Load16Instruction_3 = "Load16Instruction_3", e.Load16Instruction_4 = "Load16Instruction_4", e.Load16Instruction_5 = "Load16Instruction_5", e.Load16Instruction_6 = "Load16Instruction_6", e.Load16Instruction_7 = "Load16Instruction_7", e.Load16Instruction_8 = "Load16Instruction_8", e.Load16Instruction_9 = "Load16Instruction_9", e.Load16Instruction_10 = "Load16Instruction_10", e.Load16Instruction_11 = "Load16Instruction_11", e.Load16Instruction_12 = "Load16Instruction_12", e.Load16Instruction_13 = "Load16Instruction_13", e.Load16Instruction_14 = "Load16Instruction_14", e.Load16Instruction_15 = "Load16Instruction_15", e.Load16Instruction_16 = "Load16Instruction_16", e.Load16Instruction_17 = "Load16Instruction_17", e.Load16Instruction_18 = "Load16Instruction_18", e.Load16Instruction_19 = "Load16Instruction_19", e.Load16Instruction_20 = "Load16Instruction_20", e.ExchangeInstruction_1 = "ExchangeInstruction_1", e.ExchangeInstruction_2 = "ExchangeInstruction_2", e.ExchangeInstruction_3 = "ExchangeInstruction_3", e.ExchangeInstruction_4 = "ExchangeInstruction_4", e.ExchangeInstruction_5 = "ExchangeInstruction_5", e.ExchangeInstruction_6 = "ExchangeInstruction_6", e.BlockInstruction_1 = "BlockInstruction_1", e.BlockInstruction_2 = "BlockInstruction_2", e.BlockInstruction_3 = "BlockInstruction_3", e.BlockInstruction_4 = "BlockInstruction_4", e.BlockInstruction_5 = "BlockInstruction_5", e.BlockInstruction_6 = "BlockInstruction_6", e.BlockInstruction_7 = "BlockInstruction_7", e.BlockInstruction_8 = "BlockInstruction_8", e.ArithmeticLogic8Instruction_1 = "ArithmeticLogic8Instruction_1", e.ArithmeticLogic8Instruction_2 = "ArithmeticLogic8Instruction_2", e.ArithmeticLogic8Instruction_3 = "ArithmeticLogic8Instruction_3", e.ArithmeticLogic8Instruction_4 = "ArithmeticLogic8Instruction_4", e.ArithmeticLogic8Instruction_5 = "ArithmeticLogic8Instruction_5", e.ArithmeticLogic8Instruction_6 = "ArithmeticLogic8Instruction_6", e.ArithmeticLogic8Instruction_7 = "ArithmeticLogic8Instruction_7", e.ArithmeticLogic8Instruction_8 = "ArithmeticLogic8Instruction_8", e.ArithmeticLogic8Instruction_9 = "ArithmeticLogic8Instruction_9", e.ArithmeticLogic8Instruction_10 = "ArithmeticLogic8Instruction_10", e.ArithmeticLogic8Instruction_11 = "ArithmeticLogic8Instruction_11", e.ArithmeticLogic8Instruction_12 = "ArithmeticLogic8Instruction_12", e.ArithmeticLogic8Instruction_13 = "ArithmeticLogic8Instruction_13", e.ArithmeticLogic8Instruction_14 = "ArithmeticLogic8Instruction_14", e.ArithmeticLogic8Instruction_15 = "ArithmeticLogic8Instruction_15", e.ArithmeticLogic8Instruction_16 = "ArithmeticLogic8Instruction_16", e.ArithmeticLogic8Instruction_17 = "ArithmeticLogic8Instruction_17", e.ArithmeticLogic8Instruction_18 = "ArithmeticLogic8Instruction_18", e.ArithmeticLogic8Instruction_19 = "ArithmeticLogic8Instruction_19", e.ArithmeticLogic8Instruction_20 = "ArithmeticLogic8Instruction_20", e.ArithmeticLogic8Instruction_21 = "ArithmeticLogic8Instruction_21", e.ArithmeticLogic8Instruction_22 = "ArithmeticLogic8Instruction_22", e.ArithmeticLogic8Instruction_23 = "ArithmeticLogic8Instruction_23", e.ArithmeticLogic8Instruction_24 = "ArithmeticLogic8Instruction_24", e.ArithmeticLogic8Instruction_25 = "ArithmeticLogic8Instruction_25", e.ArithmeticLogic8Instruction_26 = "ArithmeticLogic8Instruction_26", e.ArithmeticLogic8Instruction_27 = "ArithmeticLogic8Instruction_27", e.ArithmeticLogic8Instruction_28 = "ArithmeticLogic8Instruction_28", e.ArithmeticLogic8Instruction_29 = "ArithmeticLogic8Instruction_29", e.ArithmeticLogic8Instruction_30 = "ArithmeticLogic8Instruction_30", e.ArithmeticLogic8Instruction_31 = "ArithmeticLogic8Instruction_31", e.ArithmeticLogic8Instruction_32 = "ArithmeticLogic8Instruction_32", e.ArithmeticLogic8Instruction_33 = "ArithmeticLogic8Instruction_33", e.ArithmeticLogic8Instruction_34 = "ArithmeticLogic8Instruction_34", e.ArithmeticLogic8Instruction_35 = "ArithmeticLogic8Instruction_35", e.ArithmeticLogic8Instruction_36 = "ArithmeticLogic8Instruction_36", e.ArithmeticLogic8Instruction_37 = "ArithmeticLogic8Instruction_37", e.ArithmeticLogic8Instruction_38 = "ArithmeticLogic8Instruction_38", e.ArithmeticLogic8Instruction_39 = "ArithmeticLogic8Instruction_39", e.ArithmeticLogic8Instruction_40 = "ArithmeticLogic8Instruction_40", e.ArithmeticLogic8Instruction_$0 = "ArithmeticLogic8Instruction_$0", e.ArithmeticLogic8Instruction_$1 = "ArithmeticLogic8Instruction_$1", e.ArithmeticLogic8Instruction_$2 = "ArithmeticLogic8Instruction_$2", e.ArithmeticLogic8Instruction_$3 = "ArithmeticLogic8Instruction_$3", e.ArithmeticLogic8Instruction_$4_1 = "ArithmeticLogic8Instruction_$4_1", e.ArithmeticLogic8Instruction_$4_2 = "ArithmeticLogic8Instruction_$4_2", e.ArithmeticLogic8Instruction_$5 = "ArithmeticLogic8Instruction_$5", e.ArithmeticLogic8Instruction_$6_1 = "ArithmeticLogic8Instruction_$6_1", e.ArithmeticLogic8Instruction_$6_2 = "ArithmeticLogic8Instruction_$6_2", e.ArithmeticLogic8Instruction_$7 = "ArithmeticLogic8Instruction_$7", e.ArithmeticLogic8Instruction_$8 = "ArithmeticLogic8Instruction_$8", e.ArithmeticLogic8Instruction_$9 = "ArithmeticLogic8Instruction_$9", e.ArithmeticLogic8Instruction_$10 = "ArithmeticLogic8Instruction_$10", e.ArithmeticLogic8Instruction_$11_1 = "ArithmeticLogic8Instruction_$11_1", e.ArithmeticLogic8Instruction_$11_2 = "ArithmeticLogic8Instruction_$11_2", e.ArithmeticLogic8Instruction_$12 = "ArithmeticLogic8Instruction_$12", e.ArithmeticLogic8Instruction_$13_1 = "ArithmeticLogic8Instruction_$13_1", e.ArithmeticLogic8Instruction_$13_2 = "ArithmeticLogic8Instruction_$13_2", e.ArithmeticLogic8Instruction_$14 = "ArithmeticLogic8Instruction_$14", e.ArithmeticLogic8Instruction_$15 = "ArithmeticLogic8Instruction_$15", e.ArithmeticLogic8Instruction_$16 = "ArithmeticLogic8Instruction_$16", e.ArithmeticLogic8Instruction_$17 = "ArithmeticLogic8Instruction_$17", e.ArithmeticLogic8Instruction_$18_1 = "ArithmeticLogic8Instruction_$18_1", e.ArithmeticLogic8Instruction_$18_2 = "ArithmeticLogic8Instruction_$18_2", e.ArithmeticLogic8Instruction_$19 = "ArithmeticLogic8Instruction_$19", e.ArithmeticLogic8Instruction_$20_1 = "ArithmeticLogic8Instruction_$20_1", e.ArithmeticLogic8Instruction_$20_2 = "ArithmeticLogic8Instruction_$20_2", e.ArithmeticLogic8Instruction_$21 = "ArithmeticLogic8Instruction_$21", e.ArithmeticLogic8Instruction_$22 = "ArithmeticLogic8Instruction_$22", e.ArithmeticLogic8Instruction_$23 = "ArithmeticLogic8Instruction_$23", e.ArithmeticLogic8Instruction_$24 = "ArithmeticLogic8Instruction_$24", e.ArithmeticLogic8Instruction_$25_1 = "ArithmeticLogic8Instruction_$25_1", e.ArithmeticLogic8Instruction_$25_2 = "ArithmeticLogic8Instruction_$25_2", e.ArithmeticLogic8Instruction_$26 = "ArithmeticLogic8Instruction_$26", e.ArithmeticLogic8Instruction_$27_1 = "ArithmeticLogic8Instruction_$27_1", e.ArithmeticLogic8Instruction_$27_2 = "ArithmeticLogic8Instruction_$27_2", e.ArithmeticLogic8Instruction_$28 = "ArithmeticLogic8Instruction_$28", e.ArithmeticLogic8Instruction_$29 = "ArithmeticLogic8Instruction_$29", e.ArithmeticLogic8Instruction_$30 = "ArithmeticLogic8Instruction_$30", e.ArithmeticLogic8Instruction_$31 = "ArithmeticLogic8Instruction_$31", e.ArithmeticLogic8Instruction_$32_1 = "ArithmeticLogic8Instruction_$32_1", e.ArithmeticLogic8Instruction_$32_2 = "ArithmeticLogic8Instruction_$32_2", e.ArithmeticLogic8Instruction_$33 = "ArithmeticLogic8Instruction_$33", e.ArithmeticLogic8Instruction_$34_1 = "ArithmeticLogic8Instruction_$34_1", e.ArithmeticLogic8Instruction_$34_2 = "ArithmeticLogic8Instruction_$34_2", e.ArithmeticLogic8Instruction_$35 = "ArithmeticLogic8Instruction_$35", e.ArithmeticLogic8Instruction_$36 = "ArithmeticLogic8Instruction_$36", e.ArithmeticLogic8Instruction_$37 = "ArithmeticLogic8Instruction_$37", e.ArithmeticLogic8Instruction_$38 = "ArithmeticLogic8Instruction_$38", e.ArithmeticLogic8Instruction_$39_1 = "ArithmeticLogic8Instruction_$39_1", e.ArithmeticLogic8Instruction_$39_2 = "ArithmeticLogic8Instruction_$39_2", e.ArithmeticLogic8Instruction_$40 = "ArithmeticLogic8Instruction_$40", e.ArithmeticLogic8Instruction_$41_1 = "ArithmeticLogic8Instruction_$41_1", e.ArithmeticLogic8Instruction_$41_2 = "ArithmeticLogic8Instruction_$41_2", e.ArithmeticLogic8Instruction_$42 = "ArithmeticLogic8Instruction_$42", e.ArithmeticLogic8Instruction_$43 = "ArithmeticLogic8Instruction_$43", e.ArithmeticLogic8Instruction_$44 = "ArithmeticLogic8Instruction_$44", e.ArithmeticLogic8Instruction_$45 = "ArithmeticLogic8Instruction_$45", e.ArithmeticLogic8Instruction_$46_1 = "ArithmeticLogic8Instruction_$46_1", e.ArithmeticLogic8Instruction_$46_2 = "ArithmeticLogic8Instruction_$46_2", e.ArithmeticLogic8Instruction_$47 = "ArithmeticLogic8Instruction_$47", e.ArithmeticLogic8Instruction_$48_1 = "ArithmeticLogic8Instruction_$48_1", e.ArithmeticLogic8Instruction_$48_2 = "ArithmeticLogic8Instruction_$48_2", e.ArithmeticLogic8Instruction_$49 = "ArithmeticLogic8Instruction_$49", e.ArithmeticLogic8Instruction_$50 = "ArithmeticLogic8Instruction_$50", e.ArithmeticLogic8Instruction_$51 = "ArithmeticLogic8Instruction_$51", e.ArithmeticLogic8Instruction_$52 = "ArithmeticLogic8Instruction_$52", e.ArithmeticLogic8Instruction_$53_1 = "ArithmeticLogic8Instruction_$53_1", e.ArithmeticLogic8Instruction_$53_2 = "ArithmeticLogic8Instruction_$53_2", e.ArithmeticLogic8Instruction_$54 = "ArithmeticLogic8Instruction_$54", e.ArithmeticLogic8Instruction_$55_1 = "ArithmeticLogic8Instruction_$55_1", e.ArithmeticLogic8Instruction_$55_2 = "ArithmeticLogic8Instruction_$55_2", e.IncrementDecrement8Instruction_1 = "IncrementDecrement8Instruction_1", e.IncrementDecrement8Instruction_2 = "IncrementDecrement8Instruction_2", e.IncrementDecrement8Instruction_3 = "IncrementDecrement8Instruction_3", e.IncrementDecrement8Instruction_4 = "IncrementDecrement8Instruction_4", e.IncrementDecrement8Instruction_5 = "IncrementDecrement8Instruction_5", e.IncrementDecrement8Instruction_6 = "IncrementDecrement8Instruction_6", e.IncrementDecrement8Instruction_7 = "IncrementDecrement8Instruction_7", e.IncrementDecrement8Instruction_8 = "IncrementDecrement8Instruction_8", e.IncrementDecrement8Instruction_$0_1 = "IncrementDecrement8Instruction_$0_1", e.IncrementDecrement8Instruction_$0_2 = "IncrementDecrement8Instruction_$0_2", e.IncrementDecrement8Instruction_$1_1 = "IncrementDecrement8Instruction_$1_1", e.IncrementDecrement8Instruction_$1_2 = "IncrementDecrement8Instruction_$1_2", e.IncrementDecrement8Instruction_$2_1 = "IncrementDecrement8Instruction_$2_1", e.IncrementDecrement8Instruction_$2_2 = "IncrementDecrement8Instruction_$2_2", e.IncrementDecrement8Instruction_$3_1 = "IncrementDecrement8Instruction_$3_1", e.IncrementDecrement8Instruction_$3_2 = "IncrementDecrement8Instruction_$3_2", e.GeneralPurposeArithmeticInstruction_1 = "GeneralPurposeArithmeticInstruction_1", e.GeneralPurposeArithmeticInstruction_2 = "GeneralPurposeArithmeticInstruction_2", e.GeneralPurposeArithmeticInstruction_3 = "GeneralPurposeArithmeticInstruction_3", e.GeneralPurposeArithmeticInstruction_4 = "GeneralPurposeArithmeticInstruction_4", e.GeneralPurposeArithmeticInstruction_5 = "GeneralPurposeArithmeticInstruction_5", e.CpuControlGroupInstruction_1 = "CpuControlGroupInstruction_1", e.CpuControlGroupInstruction_2 = "CpuControlGroupInstruction_2", e.CpuControlGroupInstruction_3 = "CpuControlGroupInstruction_3", e.CpuControlGroupInstruction_4 = "CpuControlGroupInstruction_4", e.CpuControlGroupInstruction_5 = "CpuControlGroupInstruction_5", e.ArithmeticLogic16Instruction_1 = "ArithmeticLogic16Instruction_1", e.ArithmeticLogic16Instruction_2 = "ArithmeticLogic16Instruction_2", e.ArithmeticLogic16Instruction_3 = "ArithmeticLogic16Instruction_3", e.ArithmeticLogic16Instruction_4 = "ArithmeticLogic16Instruction_4", e.ArithmeticLogic16Instruction_5 = "ArithmeticLogic16Instruction_5", e.ArithmeticLogic16Instruction_6 = "ArithmeticLogic16Instruction_6", e.ArithmeticLogic16Instruction_7 = "ArithmeticLogic16Instruction_7", e.ArithmeticLogic16Instruction_8 = "ArithmeticLogic16Instruction_8", e.ArithmeticLogic16Instruction_9 = "ArithmeticLogic16Instruction_9", e.ArithmeticLogic16Instruction_10 = "ArithmeticLogic16Instruction_10", e.ArithmeticLogic16Instruction_11 = "ArithmeticLogic16Instruction_11", e.RotateShiftInstruction_1 = "RotateShiftInstruction_1", e.RotateShiftInstruction_2 = "RotateShiftInstruction_2", e.RotateShiftInstruction_3 = "RotateShiftInstruction_3", e.RotateShiftInstruction_4 = "RotateShiftInstruction_4", e.RotateShiftInstruction_5 = "RotateShiftInstruction_5", e.RotateShiftInstruction_6 = "RotateShiftInstruction_6", e.RotateShiftInstruction_7 = "RotateShiftInstruction_7", e.RotateShiftInstruction_8 = "RotateShiftInstruction_8", e.RotateShiftInstruction_9 = "RotateShiftInstruction_9", e.RotateShiftInstruction_10 = "RotateShiftInstruction_10", e.RotateShiftInstruction_11 = "RotateShiftInstruction_11", e.RotateShiftInstruction_12 = "RotateShiftInstruction_12", e.RotateShiftInstruction_13 = "RotateShiftInstruction_13", e.RotateShiftInstruction_14 = "RotateShiftInstruction_14", e.RotateShiftInstruction_15 = "RotateShiftInstruction_15", e.RotateShiftInstruction_16 = "RotateShiftInstruction_16", e.RotateShiftInstruction_17 = "RotateShiftInstruction_17", e.RotateShiftInstruction_18 = "RotateShiftInstruction_18", e.RotateShiftInstruction_19 = "RotateShiftInstruction_19", e.RotateShiftInstruction_20 = "RotateShiftInstruction_20", e.RotateShiftInstruction_21 = "RotateShiftInstruction_21", e.RotateShiftInstruction_22 = "RotateShiftInstruction_22", e.RotateShiftInstruction_23 = "RotateShiftInstruction_23", e.RotateShiftInstruction_24 = "RotateShiftInstruction_24", e.RotateShiftInstruction_25 = "RotateShiftInstruction_25", e.RotateShiftInstruction_26 = "RotateShiftInstruction_26", e.RotateShiftInstruction_27 = "RotateShiftInstruction_27", e.RotateShiftInstruction_28 = "RotateShiftInstruction_28", e.RotateShiftInstruction_29 = "RotateShiftInstruction_29", e.RotateShiftInstruction_30 = "RotateShiftInstruction_30", e.RotateShiftInstruction_31 = "RotateShiftInstruction_31", e.RotateShiftInstruction_32 = "RotateShiftInstruction_32", e.RotateShiftInstruction_33 = "RotateShiftInstruction_33", e.RotateShiftInstruction_34 = "RotateShiftInstruction_34", e.RotateShiftInstruction_$0_1 = "RotateShiftInstruction_$0_1", e.RotateShiftInstruction_$0_2 = "RotateShiftInstruction_$0_2", e.RotateShiftInstruction_$1_1 = "RotateShiftInstruction_$1_1", e.RotateShiftInstruction_$1_2 = "RotateShiftInstruction_$1_2", e.RotateShiftInstruction_$2_1 = "RotateShiftInstruction_$2_1", e.RotateShiftInstruction_$2_2 = "RotateShiftInstruction_$2_2", e.RotateShiftInstruction_$3_1 = "RotateShiftInstruction_$3_1", e.RotateShiftInstruction_$3_2 = "RotateShiftInstruction_$3_2", e.RotateShiftInstruction_$4_1 = "RotateShiftInstruction_$4_1", e.RotateShiftInstruction_$4_2 = "RotateShiftInstruction_$4_2", e.RotateShiftInstruction_$5_1 = "RotateShiftInstruction_$5_1", e.RotateShiftInstruction_$5_2 = "RotateShiftInstruction_$5_2", e.RotateShiftInstruction_$6_1 = "RotateShiftInstruction_$6_1", e.RotateShiftInstruction_$6_2 = "RotateShiftInstruction_$6_2", e.RotateShiftInstruction_$7_1 = "RotateShiftInstruction_$7_1", e.RotateShiftInstruction_$7_2 = "RotateShiftInstruction_$7_2", e.RotateShiftInstruction_$8_1 = "RotateShiftInstruction_$8_1", e.RotateShiftInstruction_$8_2 = "RotateShiftInstruction_$8_2", e.RotateShiftInstruction_$9_1 = "RotateShiftInstruction_$9_1", e.RotateShiftInstruction_$9_2 = "RotateShiftInstruction_$9_2", e.RotateShiftInstruction_$10_1 = "RotateShiftInstruction_$10_1", e.RotateShiftInstruction_$10_2 = "RotateShiftInstruction_$10_2", e.RotateShiftInstruction_$11_1 = "RotateShiftInstruction_$11_1", e.RotateShiftInstruction_$11_2 = "RotateShiftInstruction_$11_2", e.RotateShiftInstruction_$12_1 = "RotateShiftInstruction_$12_1", e.RotateShiftInstruction_$12_2 = "RotateShiftInstruction_$12_2", e.RotateShiftInstruction_$13_1 = "RotateShiftInstruction_$13_1", e.RotateShiftInstruction_$13_2 = "RotateShiftInstruction_$13_2", e.BitManipulationInstruction_1 = "BitManipulationInstruction_1", e.BitManipulationInstruction_2 = "BitManipulationInstruction_2", e.BitManipulationInstruction_3 = "BitManipulationInstruction_3", e.BitManipulationInstruction_4 = "BitManipulationInstruction_4", e.BitManipulationInstruction_5 = "BitManipulationInstruction_5", e.BitManipulationInstruction_6 = "BitManipulationInstruction_6", e.BitManipulationInstruction_7 = "BitManipulationInstruction_7", e.BitManipulationInstruction_8 = "BitManipulationInstruction_8", e.BitManipulationInstruction_9 = "BitManipulationInstruction_9", e.BitManipulationInstruction_10 = "BitManipulationInstruction_10", e.BitManipulationInstruction_11 = "BitManipulationInstruction_11", e.BitManipulationInstruction_12 = "BitManipulationInstruction_12", e.BitManipulationInstruction_$0_1 = "BitManipulationInstruction_$0_1", e.BitManipulationInstruction_$0_2 = "BitManipulationInstruction_$0_2", e.BitManipulationInstruction_$1_1 = "BitManipulationInstruction_$1_1", e.BitManipulationInstruction_$1_2 = "BitManipulationInstruction_$1_2", e.BitManipulationInstruction_$2_1 = "BitManipulationInstruction_$2_1", e.BitManipulationInstruction_$2_2 = "BitManipulationInstruction_$2_2", e.BitManipulationInstruction_$3_1 = "BitManipulationInstruction_$3_1", e.BitManipulationInstruction_$3_2 = "BitManipulationInstruction_$3_2", e.BitManipulationInstruction_$4_1 = "BitManipulationInstruction_$4_1", e.BitManipulationInstruction_$4_2 = "BitManipulationInstruction_$4_2", e.BitManipulationInstruction_$5_1 = "BitManipulationInstruction_$5_1", e.BitManipulationInstruction_$5_2 = "BitManipulationInstruction_$5_2", e.Offset_1 = "Offset_1", e.Offset_2 = "Offset_2", e.JumpInstruction_1 = "JumpInstruction_1", e.JumpInstruction_2 = "JumpInstruction_2", e.JumpInstruction_3 = "JumpInstruction_3", e.JumpInstruction_4 = "JumpInstruction_4", e.JumpInstruction_5 = "JumpInstruction_5", e.JumpInstruction_6 = "JumpInstruction_6", e.JumpInstruction_7 = "JumpInstruction_7", e.JumpInstruction_8 = "JumpInstruction_8", e.JumpInstruction_9 = "JumpInstruction_9", e.JumpInstruction_10 = "JumpInstruction_10", e.JumpInstruction_11 = "JumpInstruction_11", e.CallInstruction_1 = "CallInstruction_1", e.CallInstruction_2 = "CallInstruction_2", e.ReturnInstruction_1 = "ReturnInstruction_1", e.ReturnInstruction_2 = "ReturnInstruction_2", e.ReturnInstruction_3 = "ReturnInstruction_3", e.ReturnInstruction_4 = "ReturnInstruction_4", e.ReturnInstruction_5 = "ReturnInstruction_5", e.InputInstruction_1 = "InputInstruction_1", e.InputInstruction_2 = "InputInstruction_2", e.InputInstruction_3 = "InputInstruction_3", e.InputInstruction_4 = "InputInstruction_4", e.InputInstruction_5 = "InputInstruction_5", e.InputInstruction_6 = "InputInstruction_6", e.OutputInstruction_1 = "OutputInstruction_1", e.OutputInstruction_2 = "OutputInstruction_2", e.OutputInstruction_3 = "OutputInstruction_3", e.OutputInstruction_4 = "OutputInstruction_4", e.OutputInstruction_5 = "OutputInstruction_5", e.OutputInstruction_6 = "OutputInstruction_6", e.ByteDirective_1 = "ByteDirective_1", e.ByteDirective_2 = "ByteDirective_2", e.ByteDirective_3 = "ByteDirective_3", e.ByteDirective_4 = "ByteDirective_4", e.ByteDirective_5 = "ByteDirective_5", e.WordDirective_1 = "WordDirective_1", e.WordDirective_2 = "WordDirective_2", e.WordDirective_3 = "WordDirective_3", e.BlockDirective_1 = "BlockDirective_1", e.BlockDirective_2 = "BlockDirective_2", e.BlockDirective_3 = "BlockDirective_3", e.ByteValue_1 = "ByteValue_1", e.ByteValue_2 = "ByteValue_2", e.ByteValue_3 = "ByteValue_3", e.WordValue = "WordValue", e.DataDirective_1 = "DataDirective_1", e.DataDirective_2 = "DataDirective_2", e.DataDirective_3 = "DataDirective_3", e.DataDirective_$0 = "DataDirective_$0", e.DataDirective_$1 = "DataDirective_$1", e.DataDirective_$2 = "DataDirective_$2", e.EscapeSequence_1 = "EscapeSequence_1", e.EscapeSequence_2 = "EscapeSequence_2", e.EscapeSequence_3 = "EscapeSequence_3", e.SimpleEscapeSequence = "SimpleEscapeSequence", e.SimpleEscapeSequence_$0_1 = "SimpleEscapeSequence_$0_1", e.SimpleEscapeSequence_$0_2 = "SimpleEscapeSequence_$0_2", e.OctalEscapeSequence = "OctalEscapeSequence", e.HexadecimalEscapeSequence = "HexadecimalEscapeSequence", e.SimpleChar = "SimpleChar", e.StringChar = "StringChar", e.Char = "Char", e.Char_$0_1 = "Char_$0_1", e.Char_$0_2 = "Char_$0_2", e.Str = "Str", e.Str_$0_1 = "Str_$0_1", e.Str_$0_2 = "Str_$0_2", e.Comment = "Comment", e.OriginDirective = "OriginDirective", e.Filename_1 = "Filename_1", e.Filename_2 = "Filename_2", e.IncludeDirective = "IncludeDirective", e.OutputDirective = "OutputDirective", e.OutputDirective_$0 = "OutputDirective_$0", e.DeviceDirective = "DeviceDirective", e.$EOF = "$EOF", e))(x || {});
|
|
916
|
+
var x = /* @__PURE__ */ ((e) => (e.start = "start", e.r_1 = "r_1", e.r_2 = "r_2", e.r_3 = "r_3", e.r_4 = "r_4", e.r_5 = "r_5", e.r_6 = "r_6", e.r_7 = "r_7", e.dd_1 = "dd_1", e.dd_2 = "dd_2", e.dd_3 = "dd_3", e.dd_4 = "dd_4", e.ss = "ss", e.qq_1 = "qq_1", e.qq_2 = "qq_2", e.qq_3 = "qq_3", e.qq_4 = "qq_4", e.pp_1 = "pp_1", e.pp_2 = "pp_2", e.pp_3 = "pp_3", e.pp_4 = "pp_4", e.rr_1 = "rr_1", e.rr_2 = "rr_2", e.rr_3 = "rr_3", e.rr_4 = "rr_4", e.n_1 = "n_1", e.n_2 = "n_2", e.n_3 = "n_3", e.n_4 = "n_4", e.nn_1 = "nn_1", e.nn_2 = "nn_2", e.nn_3 = "nn_3", e.nn_4 = "nn_4", e.decimal = "decimal", e.binary = "binary", e.binary_$0_1 = "binary_$0_1", e.binary_$0_2 = "binary_$0_2", e.octal_1 = "octal_1", e.octal_2 = "octal_2", e.octal_$0_1 = "octal_$0_1", e.octal_$0_2 = "octal_$0_2", e.octal_$1_1 = "octal_$1_1", e.octal_$1_2 = "octal_$1_2", e.hexadecimal_1 = "hexadecimal_1", e.hexadecimal_2 = "hexadecimal_2", e.hexadecimal_$0_1 = "hexadecimal_$0_1", e.hexadecimal_$0_2 = "hexadecimal_$0_2", e.hexadecimal_$0_3 = "hexadecimal_$0_3", e.d = "d", e.e = "e", e.p = "p", e.b = "b", e.cc_1 = "cc_1", e.cc_2 = "cc_2", e.cc_3 = "cc_3", e.cc_4 = "cc_4", e.cc_5 = "cc_5", e.cc_6 = "cc_6", e.cc_7 = "cc_7", e.cc_8 = "cc_8", e.cc_9 = "cc_9", e.jj_1 = "jj_1", e.jj_2 = "jj_2", e.jj_3 = "jj_3", e.jj_4 = "jj_4", e.__ = "__", e._ = "_", e.eos = "eos", e.eol = "eol", e.Lines = "Lines", e.Line_1 = "Line_1", e.Line_2 = "Line_2", e.LineEqual = "LineEqual", e.LineStatement = "LineStatement", e.Statement_1 = "Statement_1", e.Statement_2 = "Statement_2", e.Statement_3 = "Statement_3", e.EqualDirective = "EqualDirective", e.Directive_1 = "Directive_1", e.Directive_2 = "Directive_2", e.Directive_3 = "Directive_3", e.Directive_4 = "Directive_4", e.ForbiddenNames_1 = "ForbiddenNames_1", e.ForbiddenNames_2 = "ForbiddenNames_2", e.ForbiddenNames_3 = "ForbiddenNames_3", e.ForbiddenNames_4 = "ForbiddenNames_4", e.ForbiddenNames_5 = "ForbiddenNames_5", e.ForbiddenLabel = "ForbiddenLabel", e.Label = "Label", e.LabelDeclaration = "LabelDeclaration", e.Expression = "Expression", e.BitwiseOrExpression = "BitwiseOrExpression", e.BitwiseOrExpression_$0 = "BitwiseOrExpression_$0", e.BitwiseXOrExpression = "BitwiseXOrExpression", e.BitwiseXOrExpression_$0 = "BitwiseXOrExpression_$0", e.BitwiseAndExpression = "BitwiseAndExpression", e.BitwiseAndExpression_$0 = "BitwiseAndExpression_$0", e.ShiftExpression = "ShiftExpression", e.ShiftExpression_$0 = "ShiftExpression_$0", e.ShiftExpression_$0_$0_1 = "ShiftExpression_$0_$0_1", e.ShiftExpression_$0_$0_2 = "ShiftExpression_$0_$0_2", e.AdditiveExpression = "AdditiveExpression", e.AdditiveExpression_$0 = "AdditiveExpression_$0", e.AdditiveExpression_$0_$0_1 = "AdditiveExpression_$0_$0_1", e.AdditiveExpression_$0_$0_2 = "AdditiveExpression_$0_$0_2", e.MultiplicativeExpression = "MultiplicativeExpression", e.MultiplicativeExpression_$0 = "MultiplicativeExpression_$0", e.MultiplicativeExpression_$0_$0_1 = "MultiplicativeExpression_$0_$0_1", e.MultiplicativeExpression_$0_$0_2 = "MultiplicativeExpression_$0_$0_2", e.MultiplicativeExpression_$0_$0_3 = "MultiplicativeExpression_$0_$0_3", e.UnaryExpression_1 = "UnaryExpression_1", e.UnaryExpression_2 = "UnaryExpression_2", e.UnaryExpression_$0_1 = "UnaryExpression_$0_1", e.UnaryExpression_$0_2 = "UnaryExpression_$0_2", e.UnaryExpression_$0_3 = "UnaryExpression_$0_3", e.PrimaryExpression_1 = "PrimaryExpression_1", e.PrimaryExpression_2 = "PrimaryExpression_2", e.PrimaryExpression_3 = "PrimaryExpression_3", e.Reg8 = "Reg8", e.Instruction_1 = "Instruction_1", e.Instruction_2 = "Instruction_2", e.Instruction_3 = "Instruction_3", e.Instruction_4 = "Instruction_4", e.Instruction_5 = "Instruction_5", e.Instruction_6 = "Instruction_6", e.Instruction_7 = "Instruction_7", e.Instruction_8 = "Instruction_8", e.Instruction_9 = "Instruction_9", e.Instruction_10 = "Instruction_10", e.Instruction_11 = "Instruction_11", e.Instruction_12 = "Instruction_12", e.Instruction_13 = "Instruction_13", e.Instruction_14 = "Instruction_14", e.Instruction_15 = "Instruction_15", e.Instruction_16 = "Instruction_16", e.Load8Instruction_1 = "Load8Instruction_1", e.Load8Instruction_2 = "Load8Instruction_2", e.Load8Instruction_3 = "Load8Instruction_3", e.Load8Instruction_4 = "Load8Instruction_4", e.Load8Instruction_5 = "Load8Instruction_5", e.Load8Instruction_6 = "Load8Instruction_6", e.Load8Instruction_7 = "Load8Instruction_7", e.Load8Instruction_8 = "Load8Instruction_8", e.Load8Instruction_9 = "Load8Instruction_9", e.Load8Instruction_10 = "Load8Instruction_10", e.Load8Instruction_11 = "Load8Instruction_11", e.Load8Instruction_12 = "Load8Instruction_12", e.Load8Instruction_13 = "Load8Instruction_13", e.Load8Instruction_14 = "Load8Instruction_14", e.Load8Instruction_15 = "Load8Instruction_15", e.Load8Instruction_16 = "Load8Instruction_16", e.Load8Instruction_17 = "Load8Instruction_17", e.Load8Instruction_18 = "Load8Instruction_18", e.Load8Instruction_19 = "Load8Instruction_19", e.Load8Instruction_20 = "Load8Instruction_20", e.Load8Instruction_21 = "Load8Instruction_21", e.Load8Instruction_$0_1 = "Load8Instruction_$0_1", e.Load8Instruction_$0_2 = "Load8Instruction_$0_2", e.Load8Instruction_$1_1 = "Load8Instruction_$1_1", e.Load8Instruction_$1_2 = "Load8Instruction_$1_2", e.Load8Instruction_$2_1 = "Load8Instruction_$2_1", e.Load8Instruction_$2_2 = "Load8Instruction_$2_2", e.Load8Instruction_$3_1 = "Load8Instruction_$3_1", e.Load8Instruction_$3_2 = "Load8Instruction_$3_2", e.Load8Instruction_$4_1 = "Load8Instruction_$4_1", e.Load8Instruction_$4_2 = "Load8Instruction_$4_2", e.Load8Instruction_$5_1 = "Load8Instruction_$5_1", e.Load8Instruction_$5_2 = "Load8Instruction_$5_2", e.Load16Instruction_1 = "Load16Instruction_1", e.Load16Instruction_2 = "Load16Instruction_2", e.Load16Instruction_3 = "Load16Instruction_3", e.Load16Instruction_4 = "Load16Instruction_4", e.Load16Instruction_5 = "Load16Instruction_5", e.Load16Instruction_6 = "Load16Instruction_6", e.Load16Instruction_7 = "Load16Instruction_7", e.Load16Instruction_8 = "Load16Instruction_8", e.Load16Instruction_9 = "Load16Instruction_9", e.Load16Instruction_10 = "Load16Instruction_10", e.Load16Instruction_11 = "Load16Instruction_11", e.Load16Instruction_12 = "Load16Instruction_12", e.Load16Instruction_13 = "Load16Instruction_13", e.Load16Instruction_14 = "Load16Instruction_14", e.Load16Instruction_15 = "Load16Instruction_15", e.Load16Instruction_16 = "Load16Instruction_16", e.Load16Instruction_17 = "Load16Instruction_17", e.Load16Instruction_18 = "Load16Instruction_18", e.Load16Instruction_19 = "Load16Instruction_19", e.Load16Instruction_20 = "Load16Instruction_20", e.ExchangeInstruction_1 = "ExchangeInstruction_1", e.ExchangeInstruction_2 = "ExchangeInstruction_2", e.ExchangeInstruction_3 = "ExchangeInstruction_3", e.ExchangeInstruction_4 = "ExchangeInstruction_4", e.ExchangeInstruction_5 = "ExchangeInstruction_5", e.ExchangeInstruction_6 = "ExchangeInstruction_6", e.BlockInstruction_1 = "BlockInstruction_1", e.BlockInstruction_2 = "BlockInstruction_2", e.BlockInstruction_3 = "BlockInstruction_3", e.BlockInstruction_4 = "BlockInstruction_4", e.BlockInstruction_5 = "BlockInstruction_5", e.BlockInstruction_6 = "BlockInstruction_6", e.BlockInstruction_7 = "BlockInstruction_7", e.BlockInstruction_8 = "BlockInstruction_8", e.ArithmeticLogic8Instruction_1 = "ArithmeticLogic8Instruction_1", e.ArithmeticLogic8Instruction_2 = "ArithmeticLogic8Instruction_2", e.ArithmeticLogic8Instruction_3 = "ArithmeticLogic8Instruction_3", e.ArithmeticLogic8Instruction_4 = "ArithmeticLogic8Instruction_4", e.ArithmeticLogic8Instruction_5 = "ArithmeticLogic8Instruction_5", e.ArithmeticLogic8Instruction_6 = "ArithmeticLogic8Instruction_6", e.ArithmeticLogic8Instruction_7 = "ArithmeticLogic8Instruction_7", e.ArithmeticLogic8Instruction_8 = "ArithmeticLogic8Instruction_8", e.ArithmeticLogic8Instruction_9 = "ArithmeticLogic8Instruction_9", e.ArithmeticLogic8Instruction_10 = "ArithmeticLogic8Instruction_10", e.ArithmeticLogic8Instruction_11 = "ArithmeticLogic8Instruction_11", e.ArithmeticLogic8Instruction_12 = "ArithmeticLogic8Instruction_12", e.ArithmeticLogic8Instruction_13 = "ArithmeticLogic8Instruction_13", e.ArithmeticLogic8Instruction_14 = "ArithmeticLogic8Instruction_14", e.ArithmeticLogic8Instruction_15 = "ArithmeticLogic8Instruction_15", e.ArithmeticLogic8Instruction_16 = "ArithmeticLogic8Instruction_16", e.ArithmeticLogic8Instruction_17 = "ArithmeticLogic8Instruction_17", e.ArithmeticLogic8Instruction_18 = "ArithmeticLogic8Instruction_18", e.ArithmeticLogic8Instruction_19 = "ArithmeticLogic8Instruction_19", e.ArithmeticLogic8Instruction_20 = "ArithmeticLogic8Instruction_20", e.ArithmeticLogic8Instruction_21 = "ArithmeticLogic8Instruction_21", e.ArithmeticLogic8Instruction_22 = "ArithmeticLogic8Instruction_22", e.ArithmeticLogic8Instruction_23 = "ArithmeticLogic8Instruction_23", e.ArithmeticLogic8Instruction_24 = "ArithmeticLogic8Instruction_24", e.ArithmeticLogic8Instruction_25 = "ArithmeticLogic8Instruction_25", e.ArithmeticLogic8Instruction_26 = "ArithmeticLogic8Instruction_26", e.ArithmeticLogic8Instruction_27 = "ArithmeticLogic8Instruction_27", e.ArithmeticLogic8Instruction_28 = "ArithmeticLogic8Instruction_28", e.ArithmeticLogic8Instruction_29 = "ArithmeticLogic8Instruction_29", e.ArithmeticLogic8Instruction_30 = "ArithmeticLogic8Instruction_30", e.ArithmeticLogic8Instruction_31 = "ArithmeticLogic8Instruction_31", e.ArithmeticLogic8Instruction_32 = "ArithmeticLogic8Instruction_32", e.ArithmeticLogic8Instruction_33 = "ArithmeticLogic8Instruction_33", e.ArithmeticLogic8Instruction_34 = "ArithmeticLogic8Instruction_34", e.ArithmeticLogic8Instruction_35 = "ArithmeticLogic8Instruction_35", e.ArithmeticLogic8Instruction_36 = "ArithmeticLogic8Instruction_36", e.ArithmeticLogic8Instruction_37 = "ArithmeticLogic8Instruction_37", e.ArithmeticLogic8Instruction_38 = "ArithmeticLogic8Instruction_38", e.ArithmeticLogic8Instruction_39 = "ArithmeticLogic8Instruction_39", e.ArithmeticLogic8Instruction_40 = "ArithmeticLogic8Instruction_40", e.ArithmeticLogic8Instruction_$0 = "ArithmeticLogic8Instruction_$0", e.ArithmeticLogic8Instruction_$1 = "ArithmeticLogic8Instruction_$1", e.ArithmeticLogic8Instruction_$2_1 = "ArithmeticLogic8Instruction_$2_1", e.ArithmeticLogic8Instruction_$2_2 = "ArithmeticLogic8Instruction_$2_2", e.ArithmeticLogic8Instruction_$3 = "ArithmeticLogic8Instruction_$3", e.ArithmeticLogic8Instruction_$4_1 = "ArithmeticLogic8Instruction_$4_1", e.ArithmeticLogic8Instruction_$4_2 = "ArithmeticLogic8Instruction_$4_2", e.ArithmeticLogic8Instruction_$5 = "ArithmeticLogic8Instruction_$5", e.ArithmeticLogic8Instruction_$6 = "ArithmeticLogic8Instruction_$6", e.ArithmeticLogic8Instruction_$7 = "ArithmeticLogic8Instruction_$7", e.ArithmeticLogic8Instruction_$8 = "ArithmeticLogic8Instruction_$8", e.ArithmeticLogic8Instruction_$9_1 = "ArithmeticLogic8Instruction_$9_1", e.ArithmeticLogic8Instruction_$9_2 = "ArithmeticLogic8Instruction_$9_2", e.ArithmeticLogic8Instruction_$10 = "ArithmeticLogic8Instruction_$10", e.ArithmeticLogic8Instruction_$11_1 = "ArithmeticLogic8Instruction_$11_1", e.ArithmeticLogic8Instruction_$11_2 = "ArithmeticLogic8Instruction_$11_2", e.ArithmeticLogic8Instruction_$12 = "ArithmeticLogic8Instruction_$12", e.ArithmeticLogic8Instruction_$13 = "ArithmeticLogic8Instruction_$13", e.ArithmeticLogic8Instruction_$14 = "ArithmeticLogic8Instruction_$14", e.ArithmeticLogic8Instruction_$15 = "ArithmeticLogic8Instruction_$15", e.ArithmeticLogic8Instruction_$16_1 = "ArithmeticLogic8Instruction_$16_1", e.ArithmeticLogic8Instruction_$16_2 = "ArithmeticLogic8Instruction_$16_2", e.ArithmeticLogic8Instruction_$17 = "ArithmeticLogic8Instruction_$17", e.ArithmeticLogic8Instruction_$18_1 = "ArithmeticLogic8Instruction_$18_1", e.ArithmeticLogic8Instruction_$18_2 = "ArithmeticLogic8Instruction_$18_2", e.ArithmeticLogic8Instruction_$19 = "ArithmeticLogic8Instruction_$19", e.ArithmeticLogic8Instruction_$20 = "ArithmeticLogic8Instruction_$20", e.ArithmeticLogic8Instruction_$21 = "ArithmeticLogic8Instruction_$21", e.ArithmeticLogic8Instruction_$22 = "ArithmeticLogic8Instruction_$22", e.ArithmeticLogic8Instruction_$23_1 = "ArithmeticLogic8Instruction_$23_1", e.ArithmeticLogic8Instruction_$23_2 = "ArithmeticLogic8Instruction_$23_2", e.ArithmeticLogic8Instruction_$24 = "ArithmeticLogic8Instruction_$24", e.ArithmeticLogic8Instruction_$25_1 = "ArithmeticLogic8Instruction_$25_1", e.ArithmeticLogic8Instruction_$25_2 = "ArithmeticLogic8Instruction_$25_2", e.ArithmeticLogic8Instruction_$26 = "ArithmeticLogic8Instruction_$26", e.ArithmeticLogic8Instruction_$27 = "ArithmeticLogic8Instruction_$27", e.ArithmeticLogic8Instruction_$28 = "ArithmeticLogic8Instruction_$28", e.ArithmeticLogic8Instruction_$29 = "ArithmeticLogic8Instruction_$29", e.ArithmeticLogic8Instruction_$30_1 = "ArithmeticLogic8Instruction_$30_1", e.ArithmeticLogic8Instruction_$30_2 = "ArithmeticLogic8Instruction_$30_2", e.ArithmeticLogic8Instruction_$31 = "ArithmeticLogic8Instruction_$31", e.ArithmeticLogic8Instruction_$32_1 = "ArithmeticLogic8Instruction_$32_1", e.ArithmeticLogic8Instruction_$32_2 = "ArithmeticLogic8Instruction_$32_2", e.ArithmeticLogic8Instruction_$33 = "ArithmeticLogic8Instruction_$33", e.ArithmeticLogic8Instruction_$34 = "ArithmeticLogic8Instruction_$34", e.ArithmeticLogic8Instruction_$35 = "ArithmeticLogic8Instruction_$35", e.ArithmeticLogic8Instruction_$36 = "ArithmeticLogic8Instruction_$36", e.ArithmeticLogic8Instruction_$37_1 = "ArithmeticLogic8Instruction_$37_1", e.ArithmeticLogic8Instruction_$37_2 = "ArithmeticLogic8Instruction_$37_2", e.ArithmeticLogic8Instruction_$38 = "ArithmeticLogic8Instruction_$38", e.ArithmeticLogic8Instruction_$39_1 = "ArithmeticLogic8Instruction_$39_1", e.ArithmeticLogic8Instruction_$39_2 = "ArithmeticLogic8Instruction_$39_2", e.ArithmeticLogic8Instruction_$40 = "ArithmeticLogic8Instruction_$40", e.ArithmeticLogic8Instruction_$41 = "ArithmeticLogic8Instruction_$41", e.ArithmeticLogic8Instruction_$42 = "ArithmeticLogic8Instruction_$42", e.ArithmeticLogic8Instruction_$43 = "ArithmeticLogic8Instruction_$43", e.ArithmeticLogic8Instruction_$44_1 = "ArithmeticLogic8Instruction_$44_1", e.ArithmeticLogic8Instruction_$44_2 = "ArithmeticLogic8Instruction_$44_2", e.ArithmeticLogic8Instruction_$45 = "ArithmeticLogic8Instruction_$45", e.ArithmeticLogic8Instruction_$46_1 = "ArithmeticLogic8Instruction_$46_1", e.ArithmeticLogic8Instruction_$46_2 = "ArithmeticLogic8Instruction_$46_2", e.ArithmeticLogic8Instruction_$47 = "ArithmeticLogic8Instruction_$47", e.ArithmeticLogic8Instruction_$48 = "ArithmeticLogic8Instruction_$48", e.ArithmeticLogic8Instruction_$49 = "ArithmeticLogic8Instruction_$49", e.ArithmeticLogic8Instruction_$50 = "ArithmeticLogic8Instruction_$50", e.ArithmeticLogic8Instruction_$51_1 = "ArithmeticLogic8Instruction_$51_1", e.ArithmeticLogic8Instruction_$51_2 = "ArithmeticLogic8Instruction_$51_2", e.ArithmeticLogic8Instruction_$52 = "ArithmeticLogic8Instruction_$52", e.ArithmeticLogic8Instruction_$53_1 = "ArithmeticLogic8Instruction_$53_1", e.ArithmeticLogic8Instruction_$53_2 = "ArithmeticLogic8Instruction_$53_2", e.ArithmeticLogic8Instruction_$54 = "ArithmeticLogic8Instruction_$54", e.ArithmeticLogic8Instruction_$55 = "ArithmeticLogic8Instruction_$55", e.IncrementDecrement8Instruction_1 = "IncrementDecrement8Instruction_1", e.IncrementDecrement8Instruction_2 = "IncrementDecrement8Instruction_2", e.IncrementDecrement8Instruction_3 = "IncrementDecrement8Instruction_3", e.IncrementDecrement8Instruction_4 = "IncrementDecrement8Instruction_4", e.IncrementDecrement8Instruction_5 = "IncrementDecrement8Instruction_5", e.IncrementDecrement8Instruction_6 = "IncrementDecrement8Instruction_6", e.IncrementDecrement8Instruction_7 = "IncrementDecrement8Instruction_7", e.IncrementDecrement8Instruction_8 = "IncrementDecrement8Instruction_8", e.IncrementDecrement8Instruction_$0_1 = "IncrementDecrement8Instruction_$0_1", e.IncrementDecrement8Instruction_$0_2 = "IncrementDecrement8Instruction_$0_2", e.IncrementDecrement8Instruction_$1_1 = "IncrementDecrement8Instruction_$1_1", e.IncrementDecrement8Instruction_$1_2 = "IncrementDecrement8Instruction_$1_2", e.IncrementDecrement8Instruction_$2_1 = "IncrementDecrement8Instruction_$2_1", e.IncrementDecrement8Instruction_$2_2 = "IncrementDecrement8Instruction_$2_2", e.IncrementDecrement8Instruction_$3_1 = "IncrementDecrement8Instruction_$3_1", e.IncrementDecrement8Instruction_$3_2 = "IncrementDecrement8Instruction_$3_2", e.GeneralPurposeArithmeticInstruction_1 = "GeneralPurposeArithmeticInstruction_1", e.GeneralPurposeArithmeticInstruction_2 = "GeneralPurposeArithmeticInstruction_2", e.GeneralPurposeArithmeticInstruction_3 = "GeneralPurposeArithmeticInstruction_3", e.GeneralPurposeArithmeticInstruction_4 = "GeneralPurposeArithmeticInstruction_4", e.GeneralPurposeArithmeticInstruction_5 = "GeneralPurposeArithmeticInstruction_5", e.CpuControlGroupInstruction_1 = "CpuControlGroupInstruction_1", e.CpuControlGroupInstruction_2 = "CpuControlGroupInstruction_2", e.CpuControlGroupInstruction_3 = "CpuControlGroupInstruction_3", e.CpuControlGroupInstruction_4 = "CpuControlGroupInstruction_4", e.CpuControlGroupInstruction_5 = "CpuControlGroupInstruction_5", e.ArithmeticLogic16Instruction_1 = "ArithmeticLogic16Instruction_1", e.ArithmeticLogic16Instruction_2 = "ArithmeticLogic16Instruction_2", e.ArithmeticLogic16Instruction_3 = "ArithmeticLogic16Instruction_3", e.ArithmeticLogic16Instruction_4 = "ArithmeticLogic16Instruction_4", e.ArithmeticLogic16Instruction_5 = "ArithmeticLogic16Instruction_5", e.ArithmeticLogic16Instruction_6 = "ArithmeticLogic16Instruction_6", e.ArithmeticLogic16Instruction_7 = "ArithmeticLogic16Instruction_7", e.ArithmeticLogic16Instruction_8 = "ArithmeticLogic16Instruction_8", e.ArithmeticLogic16Instruction_9 = "ArithmeticLogic16Instruction_9", e.ArithmeticLogic16Instruction_10 = "ArithmeticLogic16Instruction_10", e.ArithmeticLogic16Instruction_11 = "ArithmeticLogic16Instruction_11", e.RotateShiftInstruction_1 = "RotateShiftInstruction_1", e.RotateShiftInstruction_2 = "RotateShiftInstruction_2", e.RotateShiftInstruction_3 = "RotateShiftInstruction_3", e.RotateShiftInstruction_4 = "RotateShiftInstruction_4", e.RotateShiftInstruction_5 = "RotateShiftInstruction_5", e.RotateShiftInstruction_6 = "RotateShiftInstruction_6", e.RotateShiftInstruction_7 = "RotateShiftInstruction_7", e.RotateShiftInstruction_8 = "RotateShiftInstruction_8", e.RotateShiftInstruction_9 = "RotateShiftInstruction_9", e.RotateShiftInstruction_10 = "RotateShiftInstruction_10", e.RotateShiftInstruction_11 = "RotateShiftInstruction_11", e.RotateShiftInstruction_12 = "RotateShiftInstruction_12", e.RotateShiftInstruction_13 = "RotateShiftInstruction_13", e.RotateShiftInstruction_14 = "RotateShiftInstruction_14", e.RotateShiftInstruction_15 = "RotateShiftInstruction_15", e.RotateShiftInstruction_16 = "RotateShiftInstruction_16", e.RotateShiftInstruction_17 = "RotateShiftInstruction_17", e.RotateShiftInstruction_18 = "RotateShiftInstruction_18", e.RotateShiftInstruction_19 = "RotateShiftInstruction_19", e.RotateShiftInstruction_20 = "RotateShiftInstruction_20", e.RotateShiftInstruction_21 = "RotateShiftInstruction_21", e.RotateShiftInstruction_22 = "RotateShiftInstruction_22", e.RotateShiftInstruction_23 = "RotateShiftInstruction_23", e.RotateShiftInstruction_24 = "RotateShiftInstruction_24", e.RotateShiftInstruction_25 = "RotateShiftInstruction_25", e.RotateShiftInstruction_26 = "RotateShiftInstruction_26", e.RotateShiftInstruction_27 = "RotateShiftInstruction_27", e.RotateShiftInstruction_28 = "RotateShiftInstruction_28", e.RotateShiftInstruction_29 = "RotateShiftInstruction_29", e.RotateShiftInstruction_30 = "RotateShiftInstruction_30", e.RotateShiftInstruction_31 = "RotateShiftInstruction_31", e.RotateShiftInstruction_32 = "RotateShiftInstruction_32", e.RotateShiftInstruction_33 = "RotateShiftInstruction_33", e.RotateShiftInstruction_34 = "RotateShiftInstruction_34", e.RotateShiftInstruction_$0_1 = "RotateShiftInstruction_$0_1", e.RotateShiftInstruction_$0_2 = "RotateShiftInstruction_$0_2", e.RotateShiftInstruction_$1_1 = "RotateShiftInstruction_$1_1", e.RotateShiftInstruction_$1_2 = "RotateShiftInstruction_$1_2", e.RotateShiftInstruction_$2_1 = "RotateShiftInstruction_$2_1", e.RotateShiftInstruction_$2_2 = "RotateShiftInstruction_$2_2", e.RotateShiftInstruction_$3_1 = "RotateShiftInstruction_$3_1", e.RotateShiftInstruction_$3_2 = "RotateShiftInstruction_$3_2", e.RotateShiftInstruction_$4_1 = "RotateShiftInstruction_$4_1", e.RotateShiftInstruction_$4_2 = "RotateShiftInstruction_$4_2", e.RotateShiftInstruction_$5_1 = "RotateShiftInstruction_$5_1", e.RotateShiftInstruction_$5_2 = "RotateShiftInstruction_$5_2", e.RotateShiftInstruction_$6_1 = "RotateShiftInstruction_$6_1", e.RotateShiftInstruction_$6_2 = "RotateShiftInstruction_$6_2", e.RotateShiftInstruction_$7_1 = "RotateShiftInstruction_$7_1", e.RotateShiftInstruction_$7_2 = "RotateShiftInstruction_$7_2", e.RotateShiftInstruction_$8_1 = "RotateShiftInstruction_$8_1", e.RotateShiftInstruction_$8_2 = "RotateShiftInstruction_$8_2", e.RotateShiftInstruction_$9_1 = "RotateShiftInstruction_$9_1", e.RotateShiftInstruction_$9_2 = "RotateShiftInstruction_$9_2", e.RotateShiftInstruction_$10_1 = "RotateShiftInstruction_$10_1", e.RotateShiftInstruction_$10_2 = "RotateShiftInstruction_$10_2", e.RotateShiftInstruction_$11_1 = "RotateShiftInstruction_$11_1", e.RotateShiftInstruction_$11_2 = "RotateShiftInstruction_$11_2", e.RotateShiftInstruction_$12_1 = "RotateShiftInstruction_$12_1", e.RotateShiftInstruction_$12_2 = "RotateShiftInstruction_$12_2", e.RotateShiftInstruction_$13_1 = "RotateShiftInstruction_$13_1", e.RotateShiftInstruction_$13_2 = "RotateShiftInstruction_$13_2", e.BitManipulationInstruction_1 = "BitManipulationInstruction_1", e.BitManipulationInstruction_2 = "BitManipulationInstruction_2", e.BitManipulationInstruction_3 = "BitManipulationInstruction_3", e.BitManipulationInstruction_4 = "BitManipulationInstruction_4", e.BitManipulationInstruction_5 = "BitManipulationInstruction_5", e.BitManipulationInstruction_6 = "BitManipulationInstruction_6", e.BitManipulationInstruction_7 = "BitManipulationInstruction_7", e.BitManipulationInstruction_8 = "BitManipulationInstruction_8", e.BitManipulationInstruction_9 = "BitManipulationInstruction_9", e.BitManipulationInstruction_10 = "BitManipulationInstruction_10", e.BitManipulationInstruction_11 = "BitManipulationInstruction_11", e.BitManipulationInstruction_12 = "BitManipulationInstruction_12", e.BitManipulationInstruction_$0_1 = "BitManipulationInstruction_$0_1", e.BitManipulationInstruction_$0_2 = "BitManipulationInstruction_$0_2", e.BitManipulationInstruction_$1_1 = "BitManipulationInstruction_$1_1", e.BitManipulationInstruction_$1_2 = "BitManipulationInstruction_$1_2", e.BitManipulationInstruction_$2_1 = "BitManipulationInstruction_$2_1", e.BitManipulationInstruction_$2_2 = "BitManipulationInstruction_$2_2", e.BitManipulationInstruction_$3_1 = "BitManipulationInstruction_$3_1", e.BitManipulationInstruction_$3_2 = "BitManipulationInstruction_$3_2", e.BitManipulationInstruction_$4_1 = "BitManipulationInstruction_$4_1", e.BitManipulationInstruction_$4_2 = "BitManipulationInstruction_$4_2", e.BitManipulationInstruction_$5_1 = "BitManipulationInstruction_$5_1", e.BitManipulationInstruction_$5_2 = "BitManipulationInstruction_$5_2", e.Offset_1 = "Offset_1", e.Offset_2 = "Offset_2", e.JumpInstruction_1 = "JumpInstruction_1", e.JumpInstruction_2 = "JumpInstruction_2", e.JumpInstruction_3 = "JumpInstruction_3", e.JumpInstruction_4 = "JumpInstruction_4", e.JumpInstruction_5 = "JumpInstruction_5", e.JumpInstruction_6 = "JumpInstruction_6", e.JumpInstruction_7 = "JumpInstruction_7", e.JumpInstruction_8 = "JumpInstruction_8", e.JumpInstruction_9 = "JumpInstruction_9", e.JumpInstruction_10 = "JumpInstruction_10", e.JumpInstruction_11 = "JumpInstruction_11", e.CallInstruction_1 = "CallInstruction_1", e.CallInstruction_2 = "CallInstruction_2", e.ReturnInstruction_1 = "ReturnInstruction_1", e.ReturnInstruction_2 = "ReturnInstruction_2", e.ReturnInstruction_3 = "ReturnInstruction_3", e.ReturnInstruction_4 = "ReturnInstruction_4", e.ReturnInstruction_5 = "ReturnInstruction_5", e.InputInstruction_1 = "InputInstruction_1", e.InputInstruction_2 = "InputInstruction_2", e.InputInstruction_3 = "InputInstruction_3", e.InputInstruction_4 = "InputInstruction_4", e.InputInstruction_5 = "InputInstruction_5", e.InputInstruction_6 = "InputInstruction_6", e.OutputInstruction_1 = "OutputInstruction_1", e.OutputInstruction_2 = "OutputInstruction_2", e.OutputInstruction_3 = "OutputInstruction_3", e.OutputInstruction_4 = "OutputInstruction_4", e.OutputInstruction_5 = "OutputInstruction_5", e.OutputInstruction_6 = "OutputInstruction_6", e.ByteDirective_1 = "ByteDirective_1", e.ByteDirective_2 = "ByteDirective_2", e.ByteDirective_3 = "ByteDirective_3", e.ByteDirective_4 = "ByteDirective_4", e.ByteDirective_5 = "ByteDirective_5", e.WordDirective_1 = "WordDirective_1", e.WordDirective_2 = "WordDirective_2", e.WordDirective_3 = "WordDirective_3", e.BlockDirective_1 = "BlockDirective_1", e.BlockDirective_2 = "BlockDirective_2", e.BlockDirective_3 = "BlockDirective_3", e.ByteValue_1 = "ByteValue_1", e.ByteValue_2 = "ByteValue_2", e.ByteValue_3 = "ByteValue_3", e.WordValue = "WordValue", e.DataDirective_1 = "DataDirective_1", e.DataDirective_2 = "DataDirective_2", e.DataDirective_3 = "DataDirective_3", e.DataDirective_$0 = "DataDirective_$0", e.DataDirective_$1 = "DataDirective_$1", e.DataDirective_$2 = "DataDirective_$2", e.EscapeSequence_1 = "EscapeSequence_1", e.EscapeSequence_2 = "EscapeSequence_2", e.EscapeSequence_3 = "EscapeSequence_3", e.SimpleEscapeSequence = "SimpleEscapeSequence", e.SimpleEscapeSequence_$0_1 = "SimpleEscapeSequence_$0_1", e.SimpleEscapeSequence_$0_2 = "SimpleEscapeSequence_$0_2", e.OctalEscapeSequence = "OctalEscapeSequence", e.HexadecimalEscapeSequence = "HexadecimalEscapeSequence", e.SimpleChar = "SimpleChar", e.StringChar = "StringChar", e.Char = "Char", e.Char_$0_1 = "Char_$0_1", e.Char_$0_2 = "Char_$0_2", e.Str = "Str", e.Str_$0_1 = "Str_$0_1", e.Str_$0_2 = "Str_$0_2", e.Comment = "Comment", e.OriginDirective = "OriginDirective", e.Filename_1 = "Filename_1", e.Filename_2 = "Filename_2", e.IncludeDirective = "IncludeDirective", e.OutputDirective = "OutputDirective", e.OutputDirective_$0 = "OutputDirective_$0", e.DeviceDirective = "DeviceDirective", e.$EOF = "$EOF", e))(x || {});
|
|
842
917
|
class jt {
|
|
843
918
|
constructor(t, n) {
|
|
844
919
|
this.kind = "n_1", this.pos = t, this.binary = n, this.value = (() => S(t, n.raw, 2, 1))();
|
|
@@ -1086,32 +1161,32 @@ class Nn {
|
|
|
1086
1161
|
}
|
|
1087
1162
|
class Vn {
|
|
1088
1163
|
constructor(t, n) {
|
|
1089
|
-
this.kind = "Load16Instruction_1", this.pos = t, this.ee = n, this.elements = (() => [221,
|
|
1164
|
+
this.kind = "Load16Instruction_1", this.pos = t, this.ee = n, this.elements = (() => [221, 42, I(t, n)])();
|
|
1090
1165
|
}
|
|
1091
1166
|
}
|
|
1092
1167
|
class Jn {
|
|
1093
1168
|
constructor(t, n) {
|
|
1094
|
-
this.kind = "Load16Instruction_2", this.pos = t, this.ee = n, this.elements = (() => [253,
|
|
1169
|
+
this.kind = "Load16Instruction_2", this.pos = t, this.ee = n, this.elements = (() => [253, 42, I(t, n)])();
|
|
1095
1170
|
}
|
|
1096
1171
|
}
|
|
1097
1172
|
class Gn {
|
|
1098
1173
|
constructor(t, n) {
|
|
1099
|
-
this.kind = "Load16Instruction_3", this.pos = t, this.ee = n, this.elements = (() => [
|
|
1174
|
+
this.kind = "Load16Instruction_3", this.pos = t, this.ee = n, this.elements = (() => [221, 33, I(t, n)])();
|
|
1100
1175
|
}
|
|
1101
1176
|
}
|
|
1102
1177
|
class Fn {
|
|
1103
|
-
constructor(t, n
|
|
1104
|
-
this.kind = "Load16Instruction_4", this.
|
|
1178
|
+
constructor(t, n) {
|
|
1179
|
+
this.kind = "Load16Instruction_4", this.pos = t, this.ee = n, this.elements = (() => [253, 33, I(t, n)])();
|
|
1105
1180
|
}
|
|
1106
1181
|
}
|
|
1107
1182
|
class jn {
|
|
1108
1183
|
constructor(t, n) {
|
|
1109
|
-
this.kind = "Load16Instruction_5", this.pos = t, this.ee = n, this.elements = (() => [
|
|
1184
|
+
this.kind = "Load16Instruction_5", this.pos = t, this.ee = n, this.elements = (() => [42, I(t, n)])();
|
|
1110
1185
|
}
|
|
1111
1186
|
}
|
|
1112
1187
|
class Un {
|
|
1113
|
-
constructor(t, n) {
|
|
1114
|
-
this.kind = "Load16Instruction_6", this.
|
|
1188
|
+
constructor(t, n, i) {
|
|
1189
|
+
this.kind = "Load16Instruction_6", this.dd = t, this.pos = n, this.ee = i, this.elements = (() => [237, 75 | v(t, 4), I(n, i)])();
|
|
1115
1190
|
}
|
|
1116
1191
|
}
|
|
1117
1192
|
class zn {
|
|
@@ -1255,203 +1330,203 @@ class wi {
|
|
|
1255
1330
|
}
|
|
1256
1331
|
}
|
|
1257
1332
|
class xi {
|
|
1258
|
-
constructor(
|
|
1259
|
-
this.kind = "ArithmeticLogic8Instruction_1", this.
|
|
1333
|
+
constructor() {
|
|
1334
|
+
this.kind = "ArithmeticLogic8Instruction_1", this.elements = (() => [134])();
|
|
1260
1335
|
}
|
|
1261
1336
|
}
|
|
1262
1337
|
class Ai {
|
|
1263
|
-
constructor(t, n) {
|
|
1264
|
-
this.kind = "ArithmeticLogic8Instruction_2", this.
|
|
1338
|
+
constructor(t, n, i) {
|
|
1339
|
+
this.kind = "ArithmeticLogic8Instruction_2", this.s = t, this.pos = n, this.d = i, this.elements = (() => [221, 134, l(n, t, i)])();
|
|
1265
1340
|
}
|
|
1266
1341
|
}
|
|
1267
1342
|
class Li {
|
|
1268
|
-
constructor() {
|
|
1269
|
-
this.kind = "ArithmeticLogic8Instruction_3", this.elements = (() => [134])();
|
|
1343
|
+
constructor(t, n, i) {
|
|
1344
|
+
this.kind = "ArithmeticLogic8Instruction_3", this.s = t, this.pos = n, this.d = i, this.elements = (() => [253, 134, l(n, t, i)])();
|
|
1270
1345
|
}
|
|
1271
1346
|
}
|
|
1272
1347
|
class fi {
|
|
1273
|
-
constructor(t
|
|
1274
|
-
this.kind = "ArithmeticLogic8Instruction_4", this.
|
|
1348
|
+
constructor(t) {
|
|
1349
|
+
this.kind = "ArithmeticLogic8Instruction_4", this.r = t, this.elements = (() => [128 | _(t)])();
|
|
1275
1350
|
}
|
|
1276
1351
|
}
|
|
1277
1352
|
class Si {
|
|
1278
|
-
constructor(t, n
|
|
1279
|
-
this.kind = "ArithmeticLogic8Instruction_5", this.
|
|
1353
|
+
constructor(t, n) {
|
|
1354
|
+
this.kind = "ArithmeticLogic8Instruction_5", this.pos = t, this.n = n, this.elements = (() => [198, A(t, n)])();
|
|
1280
1355
|
}
|
|
1281
1356
|
}
|
|
1282
1357
|
class ki {
|
|
1283
|
-
constructor(
|
|
1284
|
-
this.kind = "ArithmeticLogic8Instruction_6", this.
|
|
1358
|
+
constructor() {
|
|
1359
|
+
this.kind = "ArithmeticLogic8Instruction_6", this.elements = (() => [142])();
|
|
1285
1360
|
}
|
|
1286
1361
|
}
|
|
1287
1362
|
class Ri {
|
|
1288
|
-
constructor(t, n) {
|
|
1289
|
-
this.kind = "ArithmeticLogic8Instruction_7", this.
|
|
1363
|
+
constructor(t, n, i) {
|
|
1364
|
+
this.kind = "ArithmeticLogic8Instruction_7", this.s = t, this.pos = n, this.d = i, this.elements = (() => [221, 142, l(n, t, i)])();
|
|
1290
1365
|
}
|
|
1291
1366
|
}
|
|
1292
1367
|
class Ei {
|
|
1293
|
-
constructor() {
|
|
1294
|
-
this.kind = "ArithmeticLogic8Instruction_8", this.elements = (() => [142])();
|
|
1368
|
+
constructor(t, n, i) {
|
|
1369
|
+
this.kind = "ArithmeticLogic8Instruction_8", this.s = t, this.pos = n, this.d = i, this.elements = (() => [253, 142, l(n, t, i)])();
|
|
1295
1370
|
}
|
|
1296
1371
|
}
|
|
1297
1372
|
class vi {
|
|
1298
|
-
constructor(t
|
|
1299
|
-
this.kind = "ArithmeticLogic8Instruction_9", this.
|
|
1373
|
+
constructor(t) {
|
|
1374
|
+
this.kind = "ArithmeticLogic8Instruction_9", this.r = t, this.elements = (() => [136 | _(t)])();
|
|
1300
1375
|
}
|
|
1301
1376
|
}
|
|
1302
1377
|
class Ci {
|
|
1303
|
-
constructor(t, n
|
|
1304
|
-
this.kind = "ArithmeticLogic8Instruction_10", this.
|
|
1378
|
+
constructor(t, n) {
|
|
1379
|
+
this.kind = "ArithmeticLogic8Instruction_10", this.pos = t, this.n = n, this.elements = (() => [206, A(t, n)])();
|
|
1305
1380
|
}
|
|
1306
1381
|
}
|
|
1307
1382
|
class bi {
|
|
1308
|
-
constructor(
|
|
1309
|
-
this.kind = "ArithmeticLogic8Instruction_11", this.
|
|
1383
|
+
constructor() {
|
|
1384
|
+
this.kind = "ArithmeticLogic8Instruction_11", this.elements = (() => [150])();
|
|
1310
1385
|
}
|
|
1311
1386
|
}
|
|
1312
1387
|
class Di {
|
|
1313
|
-
constructor(t, n) {
|
|
1314
|
-
this.kind = "ArithmeticLogic8Instruction_12", this.
|
|
1388
|
+
constructor(t, n, i) {
|
|
1389
|
+
this.kind = "ArithmeticLogic8Instruction_12", this.s = t, this.pos = n, this.d = i, this.elements = (() => [221, 150, l(n, t, i)])();
|
|
1315
1390
|
}
|
|
1316
1391
|
}
|
|
1317
1392
|
class Bi {
|
|
1318
|
-
constructor() {
|
|
1319
|
-
this.kind = "ArithmeticLogic8Instruction_13", this.elements = (() => [150])();
|
|
1393
|
+
constructor(t, n, i) {
|
|
1394
|
+
this.kind = "ArithmeticLogic8Instruction_13", this.s = t, this.pos = n, this.d = i, this.elements = (() => [253, 150, l(n, t, i)])();
|
|
1320
1395
|
}
|
|
1321
1396
|
}
|
|
1322
1397
|
class qi {
|
|
1323
|
-
constructor(t
|
|
1324
|
-
this.kind = "ArithmeticLogic8Instruction_14", this.
|
|
1398
|
+
constructor(t) {
|
|
1399
|
+
this.kind = "ArithmeticLogic8Instruction_14", this.r = t, this.elements = (() => [144 | _(t)])();
|
|
1325
1400
|
}
|
|
1326
1401
|
}
|
|
1327
1402
|
class yi {
|
|
1328
|
-
constructor(t, n
|
|
1329
|
-
this.kind = "ArithmeticLogic8Instruction_15", this.
|
|
1403
|
+
constructor(t, n) {
|
|
1404
|
+
this.kind = "ArithmeticLogic8Instruction_15", this.pos = t, this.n = n, this.elements = (() => [214, A(t, n)])();
|
|
1330
1405
|
}
|
|
1331
1406
|
}
|
|
1332
1407
|
class pi {
|
|
1333
|
-
constructor(
|
|
1334
|
-
this.kind = "ArithmeticLogic8Instruction_16", this.
|
|
1408
|
+
constructor() {
|
|
1409
|
+
this.kind = "ArithmeticLogic8Instruction_16", this.elements = (() => [158])();
|
|
1335
1410
|
}
|
|
1336
1411
|
}
|
|
1337
1412
|
class Mi {
|
|
1338
|
-
constructor(t, n) {
|
|
1339
|
-
this.kind = "ArithmeticLogic8Instruction_17", this.
|
|
1413
|
+
constructor(t, n, i) {
|
|
1414
|
+
this.kind = "ArithmeticLogic8Instruction_17", this.s = t, this.pos = n, this.d = i, this.elements = (() => [221, 158, l(n, t, i)])();
|
|
1340
1415
|
}
|
|
1341
1416
|
}
|
|
1342
1417
|
class Oi {
|
|
1343
|
-
constructor() {
|
|
1344
|
-
this.kind = "ArithmeticLogic8Instruction_18", this.elements = (() => [158])();
|
|
1418
|
+
constructor(t, n, i) {
|
|
1419
|
+
this.kind = "ArithmeticLogic8Instruction_18", this.s = t, this.pos = n, this.d = i, this.elements = (() => [253, 158, l(n, t, i)])();
|
|
1345
1420
|
}
|
|
1346
1421
|
}
|
|
1347
1422
|
class Pi {
|
|
1348
|
-
constructor(t
|
|
1349
|
-
this.kind = "ArithmeticLogic8Instruction_19", this.
|
|
1423
|
+
constructor(t) {
|
|
1424
|
+
this.kind = "ArithmeticLogic8Instruction_19", this.r = t, this.elements = (() => [152 | _(t)])();
|
|
1350
1425
|
}
|
|
1351
1426
|
}
|
|
1352
1427
|
class Ni {
|
|
1353
|
-
constructor(t, n
|
|
1354
|
-
this.kind = "ArithmeticLogic8Instruction_20", this.
|
|
1428
|
+
constructor(t, n) {
|
|
1429
|
+
this.kind = "ArithmeticLogic8Instruction_20", this.pos = t, this.n = n, this.elements = (() => [222, A(t, n)])();
|
|
1355
1430
|
}
|
|
1356
1431
|
}
|
|
1357
1432
|
class Vi {
|
|
1358
|
-
constructor(
|
|
1359
|
-
this.kind = "ArithmeticLogic8Instruction_21", this.
|
|
1433
|
+
constructor() {
|
|
1434
|
+
this.kind = "ArithmeticLogic8Instruction_21", this.elements = (() => [166])();
|
|
1360
1435
|
}
|
|
1361
1436
|
}
|
|
1362
1437
|
class Ji {
|
|
1363
|
-
constructor(t, n) {
|
|
1364
|
-
this.kind = "ArithmeticLogic8Instruction_22", this.
|
|
1438
|
+
constructor(t, n, i) {
|
|
1439
|
+
this.kind = "ArithmeticLogic8Instruction_22", this.s = t, this.pos = n, this.d = i, this.elements = (() => [221, 166, l(n, t, i)])();
|
|
1365
1440
|
}
|
|
1366
1441
|
}
|
|
1367
1442
|
class Gi {
|
|
1368
|
-
constructor() {
|
|
1369
|
-
this.kind = "ArithmeticLogic8Instruction_23", this.elements = (() => [166])();
|
|
1443
|
+
constructor(t, n, i) {
|
|
1444
|
+
this.kind = "ArithmeticLogic8Instruction_23", this.s = t, this.pos = n, this.d = i, this.elements = (() => [253, 166, l(n, t, i)])();
|
|
1370
1445
|
}
|
|
1371
1446
|
}
|
|
1372
1447
|
class Fi {
|
|
1373
|
-
constructor(t
|
|
1374
|
-
this.kind = "ArithmeticLogic8Instruction_24", this.
|
|
1448
|
+
constructor(t) {
|
|
1449
|
+
this.kind = "ArithmeticLogic8Instruction_24", this.r = t, this.elements = (() => [160 | _(t)])();
|
|
1375
1450
|
}
|
|
1376
1451
|
}
|
|
1377
1452
|
class ji {
|
|
1378
|
-
constructor(t, n
|
|
1379
|
-
this.kind = "ArithmeticLogic8Instruction_25", this.
|
|
1453
|
+
constructor(t, n) {
|
|
1454
|
+
this.kind = "ArithmeticLogic8Instruction_25", this.pos = t, this.n = n, this.elements = (() => [230, A(t, n)])();
|
|
1380
1455
|
}
|
|
1381
1456
|
}
|
|
1382
1457
|
class Ui {
|
|
1383
|
-
constructor(
|
|
1384
|
-
this.kind = "ArithmeticLogic8Instruction_26", this.
|
|
1458
|
+
constructor() {
|
|
1459
|
+
this.kind = "ArithmeticLogic8Instruction_26", this.elements = (() => [182])();
|
|
1385
1460
|
}
|
|
1386
1461
|
}
|
|
1387
1462
|
class zi {
|
|
1388
|
-
constructor(t, n) {
|
|
1389
|
-
this.kind = "ArithmeticLogic8Instruction_27", this.
|
|
1463
|
+
constructor(t, n, i) {
|
|
1464
|
+
this.kind = "ArithmeticLogic8Instruction_27", this.s = t, this.pos = n, this.d = i, this.elements = (() => [221, 182, l(n, t, i)])();
|
|
1390
1465
|
}
|
|
1391
1466
|
}
|
|
1392
1467
|
class Wi {
|
|
1393
|
-
constructor() {
|
|
1394
|
-
this.kind = "ArithmeticLogic8Instruction_28", this.elements = (() => [182])();
|
|
1468
|
+
constructor(t, n, i) {
|
|
1469
|
+
this.kind = "ArithmeticLogic8Instruction_28", this.s = t, this.pos = n, this.d = i, this.elements = (() => [253, 182, l(n, t, i)])();
|
|
1395
1470
|
}
|
|
1396
1471
|
}
|
|
1397
1472
|
class Xi {
|
|
1398
|
-
constructor(t
|
|
1399
|
-
this.kind = "ArithmeticLogic8Instruction_29", this.
|
|
1473
|
+
constructor(t) {
|
|
1474
|
+
this.kind = "ArithmeticLogic8Instruction_29", this.r = t, this.elements = (() => [176 | _(t)])();
|
|
1400
1475
|
}
|
|
1401
1476
|
}
|
|
1402
1477
|
class Hi {
|
|
1403
|
-
constructor(t, n
|
|
1404
|
-
this.kind = "ArithmeticLogic8Instruction_30", this.
|
|
1478
|
+
constructor(t, n) {
|
|
1479
|
+
this.kind = "ArithmeticLogic8Instruction_30", this.pos = t, this.n = n, this.elements = (() => [246, A(t, n)])();
|
|
1405
1480
|
}
|
|
1406
1481
|
}
|
|
1407
1482
|
class Qi {
|
|
1408
|
-
constructor(
|
|
1409
|
-
this.kind = "ArithmeticLogic8Instruction_31", this.
|
|
1483
|
+
constructor() {
|
|
1484
|
+
this.kind = "ArithmeticLogic8Instruction_31", this.elements = (() => [174])();
|
|
1410
1485
|
}
|
|
1411
1486
|
}
|
|
1412
1487
|
class Zi {
|
|
1413
|
-
constructor(t, n) {
|
|
1414
|
-
this.kind = "ArithmeticLogic8Instruction_32", this.
|
|
1488
|
+
constructor(t, n, i) {
|
|
1489
|
+
this.kind = "ArithmeticLogic8Instruction_32", this.s = t, this.pos = n, this.d = i, this.elements = (() => [221, 174, l(n, t, i)])();
|
|
1415
1490
|
}
|
|
1416
1491
|
}
|
|
1417
1492
|
class Yi {
|
|
1418
|
-
constructor() {
|
|
1419
|
-
this.kind = "ArithmeticLogic8Instruction_33", this.elements = (() => [174])();
|
|
1493
|
+
constructor(t, n, i) {
|
|
1494
|
+
this.kind = "ArithmeticLogic8Instruction_33", this.s = t, this.pos = n, this.d = i, this.elements = (() => [253, 174, l(n, t, i)])();
|
|
1420
1495
|
}
|
|
1421
1496
|
}
|
|
1422
1497
|
class Ti {
|
|
1423
|
-
constructor(t
|
|
1424
|
-
this.kind = "ArithmeticLogic8Instruction_34", this.
|
|
1498
|
+
constructor(t) {
|
|
1499
|
+
this.kind = "ArithmeticLogic8Instruction_34", this.r = t, this.elements = (() => [168 | _(t)])();
|
|
1425
1500
|
}
|
|
1426
1501
|
}
|
|
1427
1502
|
class Ki {
|
|
1428
|
-
constructor(t, n
|
|
1429
|
-
this.kind = "ArithmeticLogic8Instruction_35", this.
|
|
1503
|
+
constructor(t, n) {
|
|
1504
|
+
this.kind = "ArithmeticLogic8Instruction_35", this.pos = t, this.n = n, this.elements = (() => [238, A(t, n)])();
|
|
1430
1505
|
}
|
|
1431
1506
|
}
|
|
1432
1507
|
class di {
|
|
1433
|
-
constructor(
|
|
1434
|
-
this.kind = "ArithmeticLogic8Instruction_36", this.
|
|
1508
|
+
constructor() {
|
|
1509
|
+
this.kind = "ArithmeticLogic8Instruction_36", this.elements = (() => [190])();
|
|
1435
1510
|
}
|
|
1436
1511
|
}
|
|
1437
1512
|
class $i {
|
|
1438
|
-
constructor(t, n) {
|
|
1439
|
-
this.kind = "ArithmeticLogic8Instruction_37", this.
|
|
1513
|
+
constructor(t, n, i) {
|
|
1514
|
+
this.kind = "ArithmeticLogic8Instruction_37", this.s = t, this.pos = n, this.d = i, this.elements = (() => [221, 190, l(n, t, i)])();
|
|
1440
1515
|
}
|
|
1441
1516
|
}
|
|
1442
1517
|
class te {
|
|
1443
|
-
constructor() {
|
|
1444
|
-
this.kind = "ArithmeticLogic8Instruction_38", this.elements = (() => [190])();
|
|
1518
|
+
constructor(t, n, i) {
|
|
1519
|
+
this.kind = "ArithmeticLogic8Instruction_38", this.s = t, this.pos = n, this.d = i, this.elements = (() => [253, 190, l(n, t, i)])();
|
|
1445
1520
|
}
|
|
1446
1521
|
}
|
|
1447
1522
|
class ne {
|
|
1448
|
-
constructor(t
|
|
1449
|
-
this.kind = "ArithmeticLogic8Instruction_39", this.
|
|
1523
|
+
constructor(t) {
|
|
1524
|
+
this.kind = "ArithmeticLogic8Instruction_39", this.r = t, this.elements = (() => [184 | _(t)])();
|
|
1450
1525
|
}
|
|
1451
1526
|
}
|
|
1452
1527
|
class ie {
|
|
1453
|
-
constructor(t, n
|
|
1454
|
-
this.kind = "ArithmeticLogic8Instruction_40", this.
|
|
1528
|
+
constructor(t, n) {
|
|
1529
|
+
this.kind = "ArithmeticLogic8Instruction_40", this.pos = t, this.n = n, this.elements = (() => [254, A(t, n)])();
|
|
1455
1530
|
}
|
|
1456
1531
|
}
|
|
1457
1532
|
class ee {
|
|
@@ -1840,48 +1915,48 @@ class vs {
|
|
|
1840
1915
|
}
|
|
1841
1916
|
}
|
|
1842
1917
|
class Cs {
|
|
1843
|
-
constructor(
|
|
1844
|
-
this.kind = "JumpInstruction_1", this.
|
|
1918
|
+
constructor() {
|
|
1919
|
+
this.kind = "JumpInstruction_1", this.elements = (() => [233])();
|
|
1845
1920
|
}
|
|
1846
1921
|
}
|
|
1847
1922
|
class bs {
|
|
1848
|
-
constructor(
|
|
1849
|
-
this.kind = "JumpInstruction_2", this.
|
|
1923
|
+
constructor() {
|
|
1924
|
+
this.kind = "JumpInstruction_2", this.elements = (() => [221, 233])();
|
|
1850
1925
|
}
|
|
1851
1926
|
}
|
|
1852
1927
|
class Ds {
|
|
1853
|
-
constructor(
|
|
1854
|
-
this.kind = "JumpInstruction_3", this.
|
|
1928
|
+
constructor() {
|
|
1929
|
+
this.kind = "JumpInstruction_3", this.elements = (() => [253, 233])();
|
|
1855
1930
|
}
|
|
1856
1931
|
}
|
|
1857
1932
|
class Bs {
|
|
1858
1933
|
constructor(t, n) {
|
|
1859
|
-
this.kind = "JumpInstruction_4", this.pos = t, this.
|
|
1934
|
+
this.kind = "JumpInstruction_4", this.pos = t, this.ee = n, this.elements = (() => [195, I(t, n)])();
|
|
1860
1935
|
}
|
|
1861
1936
|
}
|
|
1862
1937
|
class qs {
|
|
1863
1938
|
constructor(t, n, i) {
|
|
1864
|
-
this.kind = "JumpInstruction_5", this.
|
|
1939
|
+
this.kind = "JumpInstruction_5", this.cc = t, this.pos = n, this.ee = i, this.elements = (() => [194 | C(t, 3), I(n, i)])();
|
|
1865
1940
|
}
|
|
1866
1941
|
}
|
|
1867
1942
|
class ys {
|
|
1868
|
-
constructor(t, n
|
|
1869
|
-
this.kind = "JumpInstruction_6", this.
|
|
1943
|
+
constructor(t, n) {
|
|
1944
|
+
this.kind = "JumpInstruction_6", this.pos = t, this.label = n, this.elements = (() => [R(), q(t, n.name)])();
|
|
1870
1945
|
}
|
|
1871
1946
|
}
|
|
1872
1947
|
class ps {
|
|
1873
|
-
constructor() {
|
|
1874
|
-
this.kind = "JumpInstruction_7", this.elements = (() => [
|
|
1948
|
+
constructor(t, n) {
|
|
1949
|
+
this.kind = "JumpInstruction_7", this.pos = t, this.e = n, this.elements = (() => [R(), B(t, n)])();
|
|
1875
1950
|
}
|
|
1876
1951
|
}
|
|
1877
1952
|
class Ms {
|
|
1878
|
-
constructor() {
|
|
1879
|
-
this.kind = "JumpInstruction_8", this.elements = (() => [
|
|
1953
|
+
constructor(t, n, i) {
|
|
1954
|
+
this.kind = "JumpInstruction_8", this.jj = t, this.pos = n, this.label = i, this.elements = (() => [R(t), q(n, i.name)])();
|
|
1880
1955
|
}
|
|
1881
1956
|
}
|
|
1882
1957
|
class Os {
|
|
1883
|
-
constructor() {
|
|
1884
|
-
this.kind = "JumpInstruction_9", this.elements = (() => [
|
|
1958
|
+
constructor(t, n, i) {
|
|
1959
|
+
this.kind = "JumpInstruction_9", this.jj = t, this.pos = n, this.e = i, this.elements = (() => [R(t), B(n, i)])();
|
|
1885
1960
|
}
|
|
1886
1961
|
}
|
|
1887
1962
|
class Ps {
|
|
@@ -2690,7 +2765,7 @@ class Lr {
|
|
|
2690
2765
|
t,
|
|
2691
2766
|
() => {
|
|
2692
2767
|
let i, s = null;
|
|
2693
|
-
return
|
|
2768
|
+
return (i = this.matchBitwiseOrExpression(t + 1, n)) !== null && (s = new sn(i)), s;
|
|
2694
2769
|
}
|
|
2695
2770
|
);
|
|
2696
2771
|
}
|
|
@@ -3386,7 +3461,7 @@ class Lr {
|
|
|
3386
3461
|
t,
|
|
3387
3462
|
() => {
|
|
3388
3463
|
let i, s, r = null;
|
|
3389
|
-
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 && (i = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Vn(i, s)), r;
|
|
3464
|
+
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 && (i = 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 Vn(i, s)), r;
|
|
3390
3465
|
}
|
|
3391
3466
|
);
|
|
3392
3467
|
}
|
|
@@ -3395,7 +3470,7 @@ class Lr {
|
|
|
3395
3470
|
t,
|
|
3396
3471
|
() => {
|
|
3397
3472
|
let i, s, r = null;
|
|
3398
|
-
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 && (i = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Jn(i, s)), r;
|
|
3473
|
+
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 && (i = 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(i, s)), r;
|
|
3399
3474
|
}
|
|
3400
3475
|
);
|
|
3401
3476
|
}
|
|
@@ -3404,7 +3479,7 @@ class Lr {
|
|
|
3404
3479
|
t,
|
|
3405
3480
|
() => {
|
|
3406
3481
|
let i, s, r = null;
|
|
3407
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:
|
|
3482
|
+
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 && (i = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Gn(i, s)), r;
|
|
3408
3483
|
}
|
|
3409
3484
|
);
|
|
3410
3485
|
}
|
|
@@ -3412,8 +3487,8 @@ class Lr {
|
|
|
3412
3487
|
return this.run(
|
|
3413
3488
|
t,
|
|
3414
3489
|
() => {
|
|
3415
|
-
let i, s, r
|
|
3416
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null &&
|
|
3490
|
+
let i, s, r = null;
|
|
3491
|
+
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 && (i = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Fn(i, s)), r;
|
|
3417
3492
|
}
|
|
3418
3493
|
);
|
|
3419
3494
|
}
|
|
@@ -3422,7 +3497,7 @@ class Lr {
|
|
|
3422
3497
|
t,
|
|
3423
3498
|
() => {
|
|
3424
3499
|
let i, s, r = null;
|
|
3425
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.regexAccept(String.raw`(?:
|
|
3500
|
+
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 && (i = 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(i, s)), r;
|
|
3426
3501
|
}
|
|
3427
3502
|
);
|
|
3428
3503
|
}
|
|
@@ -3430,8 +3505,8 @@ class Lr {
|
|
|
3430
3505
|
return this.run(
|
|
3431
3506
|
t,
|
|
3432
3507
|
() => {
|
|
3433
|
-
let i, s, r = null;
|
|
3434
|
-
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && this.
|
|
3508
|
+
let i, s, r, c = null;
|
|
3509
|
+
return this.regexAccept(String.raw`(?:ld)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (i = 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 && (c = new Un(i, s, r)), c;
|
|
3435
3510
|
}
|
|
3436
3511
|
);
|
|
3437
3512
|
}
|
|
@@ -3757,8 +3832,8 @@ class Lr {
|
|
|
3757
3832
|
return this.run(
|
|
3758
3833
|
t,
|
|
3759
3834
|
() => {
|
|
3760
|
-
let i
|
|
3761
|
-
return this.regexAccept(String.raw`(?:add)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$0(t + 1, n) || !0) && (
|
|
3835
|
+
let i = null;
|
|
3836
|
+
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 && (i = new xi()), i;
|
|
3762
3837
|
}
|
|
3763
3838
|
);
|
|
3764
3839
|
}
|
|
@@ -3766,8 +3841,8 @@ class Lr {
|
|
|
3766
3841
|
return this.run(
|
|
3767
3842
|
t,
|
|
3768
3843
|
() => {
|
|
3769
|
-
let i, s, r = null;
|
|
3770
|
-
return this.regexAccept(String.raw`(?:add)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$1(t + 1, n) || !0) && (i = this.
|
|
3844
|
+
let i, s, r, c = null;
|
|
3845
|
+
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 && this.regexAccept(String.raw`(?:ix)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (i = this.matchArithmeticLogic8Instruction_$2(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 && (c = new Ai(i, s, r)), c;
|
|
3771
3846
|
}
|
|
3772
3847
|
);
|
|
3773
3848
|
}
|
|
@@ -3775,8 +3850,8 @@ class Lr {
|
|
|
3775
3850
|
return this.run(
|
|
3776
3851
|
t,
|
|
3777
3852
|
() => {
|
|
3778
|
-
let i = null;
|
|
3779
|
-
return this.regexAccept(String.raw`(?:add)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$
|
|
3853
|
+
let i, s, r, c = null;
|
|
3854
|
+
return this.regexAccept(String.raw`(?:add)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$3(t + 1, n) || !0) && 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 && (i = this.matchArithmeticLogic8Instruction_$4(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 && (c = new Li(i, s, r)), c;
|
|
3780
3855
|
}
|
|
3781
3856
|
);
|
|
3782
3857
|
}
|
|
@@ -3784,8 +3859,8 @@ class Lr {
|
|
|
3784
3859
|
return this.run(
|
|
3785
3860
|
t,
|
|
3786
3861
|
() => {
|
|
3787
|
-
let i, s
|
|
3788
|
-
return this.regexAccept(String.raw`(?:add)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$
|
|
3862
|
+
let i, s = null;
|
|
3863
|
+
return this.regexAccept(String.raw`(?:add)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$5(t + 1, n) || !0) && (i = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new fi(i)), s;
|
|
3789
3864
|
}
|
|
3790
3865
|
);
|
|
3791
3866
|
}
|
|
@@ -3793,8 +3868,8 @@ class Lr {
|
|
|
3793
3868
|
return this.run(
|
|
3794
3869
|
t,
|
|
3795
3870
|
() => {
|
|
3796
|
-
let i, s, r
|
|
3797
|
-
return this.regexAccept(String.raw`(?:add)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$
|
|
3871
|
+
let i, s, r = null;
|
|
3872
|
+
return this.regexAccept(String.raw`(?:add)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$6(t + 1, n) || !0) && (i = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Si(i, s)), r;
|
|
3798
3873
|
}
|
|
3799
3874
|
);
|
|
3800
3875
|
}
|
|
@@ -3802,8 +3877,8 @@ class Lr {
|
|
|
3802
3877
|
return this.run(
|
|
3803
3878
|
t,
|
|
3804
3879
|
() => {
|
|
3805
|
-
let i
|
|
3806
|
-
return this.regexAccept(String.raw`(?:adc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$7(t + 1, n) || !0) && (
|
|
3880
|
+
let i = null;
|
|
3881
|
+
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 && 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 && (i = new ki()), i;
|
|
3807
3882
|
}
|
|
3808
3883
|
);
|
|
3809
3884
|
}
|
|
@@ -3811,8 +3886,8 @@ class Lr {
|
|
|
3811
3886
|
return this.run(
|
|
3812
3887
|
t,
|
|
3813
3888
|
() => {
|
|
3814
|
-
let i, s, r = null;
|
|
3815
|
-
return this.regexAccept(String.raw`(?:adc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$8(t + 1, n) || !0) && (i = this.
|
|
3889
|
+
let i, s, r, c = null;
|
|
3890
|
+
return this.regexAccept(String.raw`(?:adc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$8(t + 1, n) || !0) && 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 && (i = this.matchArithmeticLogic8Instruction_$9(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 && (c = new Ri(i, s, r)), c;
|
|
3816
3891
|
}
|
|
3817
3892
|
);
|
|
3818
3893
|
}
|
|
@@ -3820,8 +3895,8 @@ class Lr {
|
|
|
3820
3895
|
return this.run(
|
|
3821
3896
|
t,
|
|
3822
3897
|
() => {
|
|
3823
|
-
let i = null;
|
|
3824
|
-
return this.regexAccept(String.raw`(?:adc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$
|
|
3898
|
+
let i, s, r, c = null;
|
|
3899
|
+
return this.regexAccept(String.raw`(?:adc)`, 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`(?:iy)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (i = this.matchArithmeticLogic8Instruction_$11(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 && (c = new Ei(i, s, r)), c;
|
|
3825
3900
|
}
|
|
3826
3901
|
);
|
|
3827
3902
|
}
|
|
@@ -3829,8 +3904,8 @@ class Lr {
|
|
|
3829
3904
|
return this.run(
|
|
3830
3905
|
t,
|
|
3831
3906
|
() => {
|
|
3832
|
-
let i, s
|
|
3833
|
-
return this.regexAccept(String.raw`(?:adc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$
|
|
3907
|
+
let i, s = null;
|
|
3908
|
+
return this.regexAccept(String.raw`(?:adc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$12(t + 1, n) || !0) && (i = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new vi(i)), s;
|
|
3834
3909
|
}
|
|
3835
3910
|
);
|
|
3836
3911
|
}
|
|
@@ -3838,8 +3913,8 @@ class Lr {
|
|
|
3838
3913
|
return this.run(
|
|
3839
3914
|
t,
|
|
3840
3915
|
() => {
|
|
3841
|
-
let i, s, r
|
|
3842
|
-
return this.regexAccept(String.raw`(?:adc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$
|
|
3916
|
+
let i, s, r = null;
|
|
3917
|
+
return this.regexAccept(String.raw`(?:adc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$13(t + 1, n) || !0) && (i = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Ci(i, s)), r;
|
|
3843
3918
|
}
|
|
3844
3919
|
);
|
|
3845
3920
|
}
|
|
@@ -3847,8 +3922,8 @@ class Lr {
|
|
|
3847
3922
|
return this.run(
|
|
3848
3923
|
t,
|
|
3849
3924
|
() => {
|
|
3850
|
-
let i
|
|
3851
|
-
return this.regexAccept(String.raw`(?:sub)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$14(t + 1, n) || !0) && (
|
|
3925
|
+
let i = null;
|
|
3926
|
+
return this.regexAccept(String.raw`(?:sub)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$14(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 && (i = new bi()), i;
|
|
3852
3927
|
}
|
|
3853
3928
|
);
|
|
3854
3929
|
}
|
|
@@ -3856,8 +3931,8 @@ class Lr {
|
|
|
3856
3931
|
return this.run(
|
|
3857
3932
|
t,
|
|
3858
3933
|
() => {
|
|
3859
|
-
let i, s, r = null;
|
|
3860
|
-
return this.regexAccept(String.raw`(?:sub)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$15(t + 1, n) || !0) && (i = this.
|
|
3934
|
+
let i, s, r, c = null;
|
|
3935
|
+
return this.regexAccept(String.raw`(?:sub)`, 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`(?:ix)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (i = this.matchArithmeticLogic8Instruction_$16(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 && (c = new Di(i, s, r)), c;
|
|
3861
3936
|
}
|
|
3862
3937
|
);
|
|
3863
3938
|
}
|
|
@@ -3865,8 +3940,8 @@ class Lr {
|
|
|
3865
3940
|
return this.run(
|
|
3866
3941
|
t,
|
|
3867
3942
|
() => {
|
|
3868
|
-
let i = null;
|
|
3869
|
-
return this.regexAccept(String.raw`(?:sub)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$
|
|
3943
|
+
let i, s, r, c = null;
|
|
3944
|
+
return this.regexAccept(String.raw`(?:sub)`, 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 && this.regexAccept(String.raw`(?:iy)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (i = this.matchArithmeticLogic8Instruction_$18(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 && (c = new Bi(i, s, r)), c;
|
|
3870
3945
|
}
|
|
3871
3946
|
);
|
|
3872
3947
|
}
|
|
@@ -3874,8 +3949,8 @@ class Lr {
|
|
|
3874
3949
|
return this.run(
|
|
3875
3950
|
t,
|
|
3876
3951
|
() => {
|
|
3877
|
-
let i, s
|
|
3878
|
-
return this.regexAccept(String.raw`(?:sub)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$
|
|
3952
|
+
let i, s = null;
|
|
3953
|
+
return this.regexAccept(String.raw`(?:sub)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$19(t + 1, n) || !0) && (i = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new qi(i)), s;
|
|
3879
3954
|
}
|
|
3880
3955
|
);
|
|
3881
3956
|
}
|
|
@@ -3883,8 +3958,8 @@ class Lr {
|
|
|
3883
3958
|
return this.run(
|
|
3884
3959
|
t,
|
|
3885
3960
|
() => {
|
|
3886
|
-
let i, s, r
|
|
3887
|
-
return this.regexAccept(String.raw`(?:sub)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$
|
|
3961
|
+
let i, s, r = null;
|
|
3962
|
+
return this.regexAccept(String.raw`(?:sub)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$20(t + 1, n) || !0) && (i = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new yi(i, s)), r;
|
|
3888
3963
|
}
|
|
3889
3964
|
);
|
|
3890
3965
|
}
|
|
@@ -3892,8 +3967,8 @@ class Lr {
|
|
|
3892
3967
|
return this.run(
|
|
3893
3968
|
t,
|
|
3894
3969
|
() => {
|
|
3895
|
-
let i
|
|
3896
|
-
return this.regexAccept(String.raw`(?:sbc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$21(t + 1, n) || !0) && (
|
|
3970
|
+
let i = null;
|
|
3971
|
+
return this.regexAccept(String.raw`(?:sbc)`, 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 && 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 && (i = new pi()), i;
|
|
3897
3972
|
}
|
|
3898
3973
|
);
|
|
3899
3974
|
}
|
|
@@ -3901,8 +3976,8 @@ class Lr {
|
|
|
3901
3976
|
return this.run(
|
|
3902
3977
|
t,
|
|
3903
3978
|
() => {
|
|
3904
|
-
let i, s, r = null;
|
|
3905
|
-
return this.regexAccept(String.raw`(?:sbc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$22(t + 1, n) || !0) && (i = this.
|
|
3979
|
+
let i, s, r, c = null;
|
|
3980
|
+
return this.regexAccept(String.raw`(?:sbc)`, 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 && this.regexAccept(String.raw`(?:ix)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (i = this.matchArithmeticLogic8Instruction_$23(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 && (c = new Mi(i, s, r)), c;
|
|
3906
3981
|
}
|
|
3907
3982
|
);
|
|
3908
3983
|
}
|
|
@@ -3910,8 +3985,8 @@ class Lr {
|
|
|
3910
3985
|
return this.run(
|
|
3911
3986
|
t,
|
|
3912
3987
|
() => {
|
|
3913
|
-
let i = null;
|
|
3914
|
-
return this.regexAccept(String.raw`(?:sbc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$
|
|
3988
|
+
let i, s, r, c = null;
|
|
3989
|
+
return this.regexAccept(String.raw`(?:sbc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$24(t + 1, n) || !0) && 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 && (i = this.matchArithmeticLogic8Instruction_$25(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 && (c = new Oi(i, s, r)), c;
|
|
3915
3990
|
}
|
|
3916
3991
|
);
|
|
3917
3992
|
}
|
|
@@ -3919,8 +3994,8 @@ class Lr {
|
|
|
3919
3994
|
return this.run(
|
|
3920
3995
|
t,
|
|
3921
3996
|
() => {
|
|
3922
|
-
let i, s
|
|
3923
|
-
return this.regexAccept(String.raw`(?:sbc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$
|
|
3997
|
+
let i, s = null;
|
|
3998
|
+
return this.regexAccept(String.raw`(?:sbc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$26(t + 1, n) || !0) && (i = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Pi(i)), s;
|
|
3924
3999
|
}
|
|
3925
4000
|
);
|
|
3926
4001
|
}
|
|
@@ -3928,8 +4003,8 @@ class Lr {
|
|
|
3928
4003
|
return this.run(
|
|
3929
4004
|
t,
|
|
3930
4005
|
() => {
|
|
3931
|
-
let i, s, r
|
|
3932
|
-
return this.regexAccept(String.raw`(?:sbc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$
|
|
4006
|
+
let i, s, r = null;
|
|
4007
|
+
return this.regexAccept(String.raw`(?:sbc)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$27(t + 1, n) || !0) && (i = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Ni(i, s)), r;
|
|
3933
4008
|
}
|
|
3934
4009
|
);
|
|
3935
4010
|
}
|
|
@@ -3937,8 +4012,8 @@ class Lr {
|
|
|
3937
4012
|
return this.run(
|
|
3938
4013
|
t,
|
|
3939
4014
|
() => {
|
|
3940
|
-
let i
|
|
3941
|
-
return this.regexAccept(String.raw`(?:and)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$28(t + 1, n) || !0) && (
|
|
4015
|
+
let i = null;
|
|
4016
|
+
return this.regexAccept(String.raw`(?:and)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$28(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 && (i = new Vi()), i;
|
|
3942
4017
|
}
|
|
3943
4018
|
);
|
|
3944
4019
|
}
|
|
@@ -3946,8 +4021,8 @@ class Lr {
|
|
|
3946
4021
|
return this.run(
|
|
3947
4022
|
t,
|
|
3948
4023
|
() => {
|
|
3949
|
-
let i, s, r = null;
|
|
3950
|
-
return this.regexAccept(String.raw`(?:and)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$29(t + 1, n) || !0) && (i = this.
|
|
4024
|
+
let i, s, r, c = null;
|
|
4025
|
+
return this.regexAccept(String.raw`(?:and)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$29(t + 1, n) || !0) && 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 && (i = this.matchArithmeticLogic8Instruction_$30(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 && (c = new Ji(i, s, r)), c;
|
|
3951
4026
|
}
|
|
3952
4027
|
);
|
|
3953
4028
|
}
|
|
@@ -3955,8 +4030,8 @@ class Lr {
|
|
|
3955
4030
|
return this.run(
|
|
3956
4031
|
t,
|
|
3957
4032
|
() => {
|
|
3958
|
-
let i = null;
|
|
3959
|
-
return this.regexAccept(String.raw`(?:and)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$
|
|
4033
|
+
let i, s, r, c = null;
|
|
4034
|
+
return this.regexAccept(String.raw`(?:and)`, 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 && this.regexAccept(String.raw`(?:iy)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (i = this.matchArithmeticLogic8Instruction_$32(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 && (c = new Gi(i, s, r)), c;
|
|
3960
4035
|
}
|
|
3961
4036
|
);
|
|
3962
4037
|
}
|
|
@@ -3964,8 +4039,8 @@ class Lr {
|
|
|
3964
4039
|
return this.run(
|
|
3965
4040
|
t,
|
|
3966
4041
|
() => {
|
|
3967
|
-
let i, s
|
|
3968
|
-
return this.regexAccept(String.raw`(?:and)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$
|
|
4042
|
+
let i, s = null;
|
|
4043
|
+
return this.regexAccept(String.raw`(?:and)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$33(t + 1, n) || !0) && (i = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Fi(i)), s;
|
|
3969
4044
|
}
|
|
3970
4045
|
);
|
|
3971
4046
|
}
|
|
@@ -3973,8 +4048,8 @@ class Lr {
|
|
|
3973
4048
|
return this.run(
|
|
3974
4049
|
t,
|
|
3975
4050
|
() => {
|
|
3976
|
-
let i, s, r
|
|
3977
|
-
return this.regexAccept(String.raw`(?:and)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$
|
|
4051
|
+
let i, s, r = null;
|
|
4052
|
+
return this.regexAccept(String.raw`(?:and)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$34(t + 1, n) || !0) && (i = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new ji(i, s)), r;
|
|
3978
4053
|
}
|
|
3979
4054
|
);
|
|
3980
4055
|
}
|
|
@@ -3982,8 +4057,8 @@ class Lr {
|
|
|
3982
4057
|
return this.run(
|
|
3983
4058
|
t,
|
|
3984
4059
|
() => {
|
|
3985
|
-
let i
|
|
3986
|
-
return this.regexAccept(String.raw`(?:or)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$35(t + 1, n) || !0) && (
|
|
4060
|
+
let i = null;
|
|
4061
|
+
return this.regexAccept(String.raw`(?:or)`, 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 && (i = new Ui()), i;
|
|
3987
4062
|
}
|
|
3988
4063
|
);
|
|
3989
4064
|
}
|
|
@@ -3991,8 +4066,8 @@ class Lr {
|
|
|
3991
4066
|
return this.run(
|
|
3992
4067
|
t,
|
|
3993
4068
|
() => {
|
|
3994
|
-
let i, s, r = null;
|
|
3995
|
-
return this.regexAccept(String.raw`(?:or)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$36(t + 1, n) || !0) && (i = this.
|
|
4069
|
+
let i, s, r, c = null;
|
|
4070
|
+
return this.regexAccept(String.raw`(?:or)`, 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 && this.regexAccept(String.raw`(?:ix)`, t + 1, n) !== null && this.match_(t + 1, n) !== null && (i = this.matchArithmeticLogic8Instruction_$37(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 && (c = new zi(i, s, r)), c;
|
|
3996
4071
|
}
|
|
3997
4072
|
);
|
|
3998
4073
|
}
|
|
@@ -4000,8 +4075,8 @@ class Lr {
|
|
|
4000
4075
|
return this.run(
|
|
4001
4076
|
t,
|
|
4002
4077
|
() => {
|
|
4003
|
-
let i = null;
|
|
4004
|
-
return this.regexAccept(String.raw`(?:or)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$
|
|
4078
|
+
let i, s, r, c = null;
|
|
4079
|
+
return this.regexAccept(String.raw`(?:or)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$38(t + 1, n) || !0) && 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 && (i = this.matchArithmeticLogic8Instruction_$39(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 && (c = new Wi(i, s, r)), c;
|
|
4005
4080
|
}
|
|
4006
4081
|
);
|
|
4007
4082
|
}
|
|
@@ -4009,8 +4084,8 @@ class Lr {
|
|
|
4009
4084
|
return this.run(
|
|
4010
4085
|
t,
|
|
4011
4086
|
() => {
|
|
4012
|
-
let i, s
|
|
4013
|
-
return this.regexAccept(String.raw`(?:or)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$
|
|
4087
|
+
let i, s = null;
|
|
4088
|
+
return this.regexAccept(String.raw`(?:or)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$40(t + 1, n) || !0) && (i = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Xi(i)), s;
|
|
4014
4089
|
}
|
|
4015
4090
|
);
|
|
4016
4091
|
}
|
|
@@ -4018,8 +4093,8 @@ class Lr {
|
|
|
4018
4093
|
return this.run(
|
|
4019
4094
|
t,
|
|
4020
4095
|
() => {
|
|
4021
|
-
let i, s, r
|
|
4022
|
-
return this.regexAccept(String.raw`(?:or)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$
|
|
4096
|
+
let i, s, r = null;
|
|
4097
|
+
return this.regexAccept(String.raw`(?:or)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$41(t + 1, n) || !0) && (i = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Hi(i, s)), r;
|
|
4023
4098
|
}
|
|
4024
4099
|
);
|
|
4025
4100
|
}
|
|
@@ -4027,8 +4102,8 @@ class Lr {
|
|
|
4027
4102
|
return this.run(
|
|
4028
4103
|
t,
|
|
4029
4104
|
() => {
|
|
4030
|
-
let i
|
|
4031
|
-
return this.regexAccept(String.raw`(?:xor)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$42(t + 1, n) || !0) && (
|
|
4105
|
+
let i = null;
|
|
4106
|
+
return this.regexAccept(String.raw`(?:xor)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$42(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 && (i = new Qi()), i;
|
|
4032
4107
|
}
|
|
4033
4108
|
);
|
|
4034
4109
|
}
|
|
@@ -4036,8 +4111,8 @@ class Lr {
|
|
|
4036
4111
|
return this.run(
|
|
4037
4112
|
t,
|
|
4038
4113
|
() => {
|
|
4039
|
-
let i, s, r = null;
|
|
4040
|
-
return this.regexAccept(String.raw`(?:xor)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$43(t + 1, n) || !0) && (i = this.
|
|
4114
|
+
let i, s, r, c = null;
|
|
4115
|
+
return this.regexAccept(String.raw`(?:xor)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$43(t + 1, n) || !0) && 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 && (i = this.matchArithmeticLogic8Instruction_$44(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 && (c = new Zi(i, s, r)), c;
|
|
4041
4116
|
}
|
|
4042
4117
|
);
|
|
4043
4118
|
}
|
|
@@ -4045,8 +4120,8 @@ class Lr {
|
|
|
4045
4120
|
return this.run(
|
|
4046
4121
|
t,
|
|
4047
4122
|
() => {
|
|
4048
|
-
let i = null;
|
|
4049
|
-
return this.regexAccept(String.raw`(?:xor)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$
|
|
4123
|
+
let i, s, r, c = null;
|
|
4124
|
+
return this.regexAccept(String.raw`(?:xor)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$45(t + 1, n) || !0) && 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 && (i = this.matchArithmeticLogic8Instruction_$46(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 && (c = new Yi(i, s, r)), c;
|
|
4050
4125
|
}
|
|
4051
4126
|
);
|
|
4052
4127
|
}
|
|
@@ -4054,8 +4129,8 @@ class Lr {
|
|
|
4054
4129
|
return this.run(
|
|
4055
4130
|
t,
|
|
4056
4131
|
() => {
|
|
4057
|
-
let i, s
|
|
4058
|
-
return this.regexAccept(String.raw`(?:xor)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$
|
|
4132
|
+
let i, s = null;
|
|
4133
|
+
return this.regexAccept(String.raw`(?:xor)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$47(t + 1, n) || !0) && (i = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new Ti(i)), s;
|
|
4059
4134
|
}
|
|
4060
4135
|
);
|
|
4061
4136
|
}
|
|
@@ -4063,8 +4138,8 @@ class Lr {
|
|
|
4063
4138
|
return this.run(
|
|
4064
4139
|
t,
|
|
4065
4140
|
() => {
|
|
4066
|
-
let i, s, r
|
|
4067
|
-
return this.regexAccept(String.raw`(?:xor)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$
|
|
4141
|
+
let i, s, r = null;
|
|
4142
|
+
return this.regexAccept(String.raw`(?:xor)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$48(t + 1, n) || !0) && (i = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Ki(i, s)), r;
|
|
4068
4143
|
}
|
|
4069
4144
|
);
|
|
4070
4145
|
}
|
|
@@ -4072,8 +4147,8 @@ class Lr {
|
|
|
4072
4147
|
return this.run(
|
|
4073
4148
|
t,
|
|
4074
4149
|
() => {
|
|
4075
|
-
let i
|
|
4076
|
-
return this.regexAccept(String.raw`(?:cp)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$49(t + 1, n) || !0) && (
|
|
4150
|
+
let i = null;
|
|
4151
|
+
return this.regexAccept(String.raw`(?:cp)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$49(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 && (i = new di()), i;
|
|
4077
4152
|
}
|
|
4078
4153
|
);
|
|
4079
4154
|
}
|
|
@@ -4081,8 +4156,8 @@ class Lr {
|
|
|
4081
4156
|
return this.run(
|
|
4082
4157
|
t,
|
|
4083
4158
|
() => {
|
|
4084
|
-
let i, s, r = null;
|
|
4085
|
-
return this.regexAccept(String.raw`(?:cp)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$50(t + 1, n) || !0) && (i = this.
|
|
4159
|
+
let i, s, r, c = null;
|
|
4160
|
+
return this.regexAccept(String.raw`(?:cp)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$50(t + 1, n) || !0) && 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 && (i = this.matchArithmeticLogic8Instruction_$51(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 && (c = new $i(i, s, r)), c;
|
|
4086
4161
|
}
|
|
4087
4162
|
);
|
|
4088
4163
|
}
|
|
@@ -4090,8 +4165,8 @@ class Lr {
|
|
|
4090
4165
|
return this.run(
|
|
4091
4166
|
t,
|
|
4092
4167
|
() => {
|
|
4093
|
-
let i = null;
|
|
4094
|
-
return this.regexAccept(String.raw`(?:cp)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$
|
|
4168
|
+
let i, s, r, c = null;
|
|
4169
|
+
return this.regexAccept(String.raw`(?:cp)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$52(t + 1, n) || !0) && 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 && (i = this.matchArithmeticLogic8Instruction_$53(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 && (c = new te(i, s, r)), c;
|
|
4095
4170
|
}
|
|
4096
4171
|
);
|
|
4097
4172
|
}
|
|
@@ -4099,8 +4174,8 @@ class Lr {
|
|
|
4099
4174
|
return this.run(
|
|
4100
4175
|
t,
|
|
4101
4176
|
() => {
|
|
4102
|
-
let i, s
|
|
4103
|
-
return this.regexAccept(String.raw`(?:cp)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$
|
|
4177
|
+
let i, s = null;
|
|
4178
|
+
return this.regexAccept(String.raw`(?:cp)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$54(t + 1, n) || !0) && (i = this.matchr(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (s = new ne(i)), s;
|
|
4104
4179
|
}
|
|
4105
4180
|
);
|
|
4106
4181
|
}
|
|
@@ -4108,8 +4183,8 @@ class Lr {
|
|
|
4108
4183
|
return this.run(
|
|
4109
4184
|
t,
|
|
4110
4185
|
() => {
|
|
4111
|
-
let i, s, r
|
|
4112
|
-
return this.regexAccept(String.raw`(?:cp)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$
|
|
4186
|
+
let i, s, r = null;
|
|
4187
|
+
return this.regexAccept(String.raw`(?:cp)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (this.matchArithmeticLogic8Instruction_$55(t + 1, n) || !0) && (i = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new ie(i, s)), r;
|
|
4113
4188
|
}
|
|
4114
4189
|
);
|
|
4115
4190
|
}
|
|
@@ -4138,16 +4213,16 @@ class Lr {
|
|
|
4138
4213
|
);
|
|
4139
4214
|
}
|
|
4140
4215
|
matchArithmeticLogic8Instruction_$2(t, n) {
|
|
4141
|
-
return this.
|
|
4142
|
-
t,
|
|
4143
|
-
() =>
|
|
4144
|
-
|
|
4145
|
-
|
|
4146
|
-
|
|
4147
|
-
|
|
4148
|
-
|
|
4149
|
-
|
|
4150
|
-
);
|
|
4216
|
+
return this.choice([
|
|
4217
|
+
() => this.matchArithmeticLogic8Instruction_$2_1(t + 1, n),
|
|
4218
|
+
() => this.matchArithmeticLogic8Instruction_$2_2(t + 1, n)
|
|
4219
|
+
]);
|
|
4220
|
+
}
|
|
4221
|
+
matchArithmeticLogic8Instruction_$2_1(t, n) {
|
|
4222
|
+
return this.regexAccept(String.raw`(?:\+)`, t + 1, n);
|
|
4223
|
+
}
|
|
4224
|
+
matchArithmeticLogic8Instruction_$2_2(t, n) {
|
|
4225
|
+
return this.regexAccept(String.raw`(?:\-)`, t + 1, n);
|
|
4151
4226
|
}
|
|
4152
4227
|
matchArithmeticLogic8Instruction_$3(t, n) {
|
|
4153
4228
|
return this.run(
|
|
@@ -4186,53 +4261,53 @@ class Lr {
|
|
|
4186
4261
|
);
|
|
4187
4262
|
}
|
|
4188
4263
|
matchArithmeticLogic8Instruction_$6(t, n) {
|
|
4189
|
-
return this.choice([
|
|
4190
|
-
() => this.matchArithmeticLogic8Instruction_$6_1(t + 1, n),
|
|
4191
|
-
() => this.matchArithmeticLogic8Instruction_$6_2(t + 1, n)
|
|
4192
|
-
]);
|
|
4193
|
-
}
|
|
4194
|
-
matchArithmeticLogic8Instruction_$6_1(t, n) {
|
|
4195
|
-
return this.regexAccept(String.raw`(?:\+)`, t + 1, n);
|
|
4196
|
-
}
|
|
4197
|
-
matchArithmeticLogic8Instruction_$6_2(t, n) {
|
|
4198
|
-
return this.regexAccept(String.raw`(?:\-)`, t + 1, n);
|
|
4199
|
-
}
|
|
4200
|
-
matchArithmeticLogic8Instruction_$7(t, n) {
|
|
4201
4264
|
return this.run(
|
|
4202
4265
|
t,
|
|
4203
4266
|
() => {
|
|
4204
4267
|
let i = null;
|
|
4205
4268
|
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 && (i = {
|
|
4206
|
-
kind: "ArithmeticLogic8Instruction_$
|
|
4207
|
-
/* ArithmeticLogic8Instruction_$
|
|
4269
|
+
kind: "ArithmeticLogic8Instruction_$6"
|
|
4270
|
+
/* ArithmeticLogic8Instruction_$6 */
|
|
4208
4271
|
}), i;
|
|
4209
4272
|
}
|
|
4210
4273
|
);
|
|
4211
4274
|
}
|
|
4212
|
-
matchArithmeticLogic8Instruction_$
|
|
4275
|
+
matchArithmeticLogic8Instruction_$7(t, n) {
|
|
4213
4276
|
return this.run(
|
|
4214
4277
|
t,
|
|
4215
4278
|
() => {
|
|
4216
4279
|
let i = null;
|
|
4217
4280
|
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 && (i = {
|
|
4218
|
-
kind: "ArithmeticLogic8Instruction_$
|
|
4219
|
-
/* ArithmeticLogic8Instruction_$
|
|
4281
|
+
kind: "ArithmeticLogic8Instruction_$7"
|
|
4282
|
+
/* ArithmeticLogic8Instruction_$7 */
|
|
4220
4283
|
}), i;
|
|
4221
4284
|
}
|
|
4222
4285
|
);
|
|
4223
4286
|
}
|
|
4224
|
-
matchArithmeticLogic8Instruction_$
|
|
4287
|
+
matchArithmeticLogic8Instruction_$8(t, n) {
|
|
4225
4288
|
return this.run(
|
|
4226
4289
|
t,
|
|
4227
4290
|
() => {
|
|
4228
4291
|
let i = null;
|
|
4229
4292
|
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 && (i = {
|
|
4230
|
-
kind: "ArithmeticLogic8Instruction_$
|
|
4231
|
-
/* ArithmeticLogic8Instruction_$
|
|
4293
|
+
kind: "ArithmeticLogic8Instruction_$8"
|
|
4294
|
+
/* ArithmeticLogic8Instruction_$8 */
|
|
4232
4295
|
}), i;
|
|
4233
4296
|
}
|
|
4234
4297
|
);
|
|
4235
4298
|
}
|
|
4299
|
+
matchArithmeticLogic8Instruction_$9(t, n) {
|
|
4300
|
+
return this.choice([
|
|
4301
|
+
() => this.matchArithmeticLogic8Instruction_$9_1(t + 1, n),
|
|
4302
|
+
() => this.matchArithmeticLogic8Instruction_$9_2(t + 1, n)
|
|
4303
|
+
]);
|
|
4304
|
+
}
|
|
4305
|
+
matchArithmeticLogic8Instruction_$9_1(t, n) {
|
|
4306
|
+
return this.regexAccept(String.raw`(?:\+)`, t + 1, n);
|
|
4307
|
+
}
|
|
4308
|
+
matchArithmeticLogic8Instruction_$9_2(t, n) {
|
|
4309
|
+
return this.regexAccept(String.raw`(?:\-)`, t + 1, n);
|
|
4310
|
+
}
|
|
4236
4311
|
matchArithmeticLogic8Instruction_$10(t, n) {
|
|
4237
4312
|
return this.run(
|
|
4238
4313
|
t,
|
|
@@ -4270,53 +4345,53 @@ class Lr {
|
|
|
4270
4345
|
);
|
|
4271
4346
|
}
|
|
4272
4347
|
matchArithmeticLogic8Instruction_$13(t, n) {
|
|
4273
|
-
return this.choice([
|
|
4274
|
-
() => this.matchArithmeticLogic8Instruction_$13_1(t + 1, n),
|
|
4275
|
-
() => this.matchArithmeticLogic8Instruction_$13_2(t + 1, n)
|
|
4276
|
-
]);
|
|
4277
|
-
}
|
|
4278
|
-
matchArithmeticLogic8Instruction_$13_1(t, n) {
|
|
4279
|
-
return this.regexAccept(String.raw`(?:\+)`, t + 1, n);
|
|
4280
|
-
}
|
|
4281
|
-
matchArithmeticLogic8Instruction_$13_2(t, n) {
|
|
4282
|
-
return this.regexAccept(String.raw`(?:\-)`, t + 1, n);
|
|
4283
|
-
}
|
|
4284
|
-
matchArithmeticLogic8Instruction_$14(t, n) {
|
|
4285
4348
|
return this.run(
|
|
4286
4349
|
t,
|
|
4287
4350
|
() => {
|
|
4288
4351
|
let i = null;
|
|
4289
4352
|
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 && (i = {
|
|
4290
|
-
kind: "ArithmeticLogic8Instruction_$
|
|
4291
|
-
/* ArithmeticLogic8Instruction_$
|
|
4353
|
+
kind: "ArithmeticLogic8Instruction_$13"
|
|
4354
|
+
/* ArithmeticLogic8Instruction_$13 */
|
|
4292
4355
|
}), i;
|
|
4293
4356
|
}
|
|
4294
4357
|
);
|
|
4295
4358
|
}
|
|
4296
|
-
matchArithmeticLogic8Instruction_$
|
|
4359
|
+
matchArithmeticLogic8Instruction_$14(t, n) {
|
|
4297
4360
|
return this.run(
|
|
4298
4361
|
t,
|
|
4299
4362
|
() => {
|
|
4300
4363
|
let i = null;
|
|
4301
4364
|
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 && (i = {
|
|
4302
|
-
kind: "ArithmeticLogic8Instruction_$
|
|
4303
|
-
/* ArithmeticLogic8Instruction_$
|
|
4365
|
+
kind: "ArithmeticLogic8Instruction_$14"
|
|
4366
|
+
/* ArithmeticLogic8Instruction_$14 */
|
|
4304
4367
|
}), i;
|
|
4305
4368
|
}
|
|
4306
4369
|
);
|
|
4307
4370
|
}
|
|
4308
|
-
matchArithmeticLogic8Instruction_$
|
|
4371
|
+
matchArithmeticLogic8Instruction_$15(t, n) {
|
|
4309
4372
|
return this.run(
|
|
4310
4373
|
t,
|
|
4311
4374
|
() => {
|
|
4312
4375
|
let i = null;
|
|
4313
4376
|
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 && (i = {
|
|
4314
|
-
kind: "ArithmeticLogic8Instruction_$
|
|
4315
|
-
/* ArithmeticLogic8Instruction_$
|
|
4377
|
+
kind: "ArithmeticLogic8Instruction_$15"
|
|
4378
|
+
/* ArithmeticLogic8Instruction_$15 */
|
|
4316
4379
|
}), i;
|
|
4317
4380
|
}
|
|
4318
4381
|
);
|
|
4319
4382
|
}
|
|
4383
|
+
matchArithmeticLogic8Instruction_$16(t, n) {
|
|
4384
|
+
return this.choice([
|
|
4385
|
+
() => this.matchArithmeticLogic8Instruction_$16_1(t + 1, n),
|
|
4386
|
+
() => this.matchArithmeticLogic8Instruction_$16_2(t + 1, n)
|
|
4387
|
+
]);
|
|
4388
|
+
}
|
|
4389
|
+
matchArithmeticLogic8Instruction_$16_1(t, n) {
|
|
4390
|
+
return this.regexAccept(String.raw`(?:\+)`, t + 1, n);
|
|
4391
|
+
}
|
|
4392
|
+
matchArithmeticLogic8Instruction_$16_2(t, n) {
|
|
4393
|
+
return this.regexAccept(String.raw`(?:\-)`, t + 1, n);
|
|
4394
|
+
}
|
|
4320
4395
|
matchArithmeticLogic8Instruction_$17(t, n) {
|
|
4321
4396
|
return this.run(
|
|
4322
4397
|
t,
|
|
@@ -4354,53 +4429,53 @@ class Lr {
|
|
|
4354
4429
|
);
|
|
4355
4430
|
}
|
|
4356
4431
|
matchArithmeticLogic8Instruction_$20(t, n) {
|
|
4357
|
-
return this.choice([
|
|
4358
|
-
() => this.matchArithmeticLogic8Instruction_$20_1(t + 1, n),
|
|
4359
|
-
() => this.matchArithmeticLogic8Instruction_$20_2(t + 1, n)
|
|
4360
|
-
]);
|
|
4361
|
-
}
|
|
4362
|
-
matchArithmeticLogic8Instruction_$20_1(t, n) {
|
|
4363
|
-
return this.regexAccept(String.raw`(?:\+)`, t + 1, n);
|
|
4364
|
-
}
|
|
4365
|
-
matchArithmeticLogic8Instruction_$20_2(t, n) {
|
|
4366
|
-
return this.regexAccept(String.raw`(?:\-)`, t + 1, n);
|
|
4367
|
-
}
|
|
4368
|
-
matchArithmeticLogic8Instruction_$21(t, n) {
|
|
4369
4432
|
return this.run(
|
|
4370
4433
|
t,
|
|
4371
4434
|
() => {
|
|
4372
4435
|
let i = null;
|
|
4373
4436
|
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 && (i = {
|
|
4374
|
-
kind: "ArithmeticLogic8Instruction_$
|
|
4375
|
-
/* ArithmeticLogic8Instruction_$
|
|
4437
|
+
kind: "ArithmeticLogic8Instruction_$20"
|
|
4438
|
+
/* ArithmeticLogic8Instruction_$20 */
|
|
4376
4439
|
}), i;
|
|
4377
4440
|
}
|
|
4378
4441
|
);
|
|
4379
4442
|
}
|
|
4380
|
-
matchArithmeticLogic8Instruction_$
|
|
4443
|
+
matchArithmeticLogic8Instruction_$21(t, n) {
|
|
4381
4444
|
return this.run(
|
|
4382
4445
|
t,
|
|
4383
4446
|
() => {
|
|
4384
4447
|
let i = null;
|
|
4385
4448
|
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 && (i = {
|
|
4386
|
-
kind: "ArithmeticLogic8Instruction_$
|
|
4387
|
-
/* ArithmeticLogic8Instruction_$
|
|
4449
|
+
kind: "ArithmeticLogic8Instruction_$21"
|
|
4450
|
+
/* ArithmeticLogic8Instruction_$21 */
|
|
4388
4451
|
}), i;
|
|
4389
4452
|
}
|
|
4390
4453
|
);
|
|
4391
4454
|
}
|
|
4392
|
-
matchArithmeticLogic8Instruction_$
|
|
4455
|
+
matchArithmeticLogic8Instruction_$22(t, n) {
|
|
4393
4456
|
return this.run(
|
|
4394
4457
|
t,
|
|
4395
4458
|
() => {
|
|
4396
4459
|
let i = null;
|
|
4397
4460
|
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 && (i = {
|
|
4398
|
-
kind: "ArithmeticLogic8Instruction_$
|
|
4399
|
-
/* ArithmeticLogic8Instruction_$
|
|
4461
|
+
kind: "ArithmeticLogic8Instruction_$22"
|
|
4462
|
+
/* ArithmeticLogic8Instruction_$22 */
|
|
4400
4463
|
}), i;
|
|
4401
4464
|
}
|
|
4402
4465
|
);
|
|
4403
4466
|
}
|
|
4467
|
+
matchArithmeticLogic8Instruction_$23(t, n) {
|
|
4468
|
+
return this.choice([
|
|
4469
|
+
() => this.matchArithmeticLogic8Instruction_$23_1(t + 1, n),
|
|
4470
|
+
() => this.matchArithmeticLogic8Instruction_$23_2(t + 1, n)
|
|
4471
|
+
]);
|
|
4472
|
+
}
|
|
4473
|
+
matchArithmeticLogic8Instruction_$23_1(t, n) {
|
|
4474
|
+
return this.regexAccept(String.raw`(?:\+)`, t + 1, n);
|
|
4475
|
+
}
|
|
4476
|
+
matchArithmeticLogic8Instruction_$23_2(t, n) {
|
|
4477
|
+
return this.regexAccept(String.raw`(?:\-)`, t + 1, n);
|
|
4478
|
+
}
|
|
4404
4479
|
matchArithmeticLogic8Instruction_$24(t, n) {
|
|
4405
4480
|
return this.run(
|
|
4406
4481
|
t,
|
|
@@ -4438,53 +4513,53 @@ class Lr {
|
|
|
4438
4513
|
);
|
|
4439
4514
|
}
|
|
4440
4515
|
matchArithmeticLogic8Instruction_$27(t, n) {
|
|
4441
|
-
return this.choice([
|
|
4442
|
-
() => this.matchArithmeticLogic8Instruction_$27_1(t + 1, n),
|
|
4443
|
-
() => this.matchArithmeticLogic8Instruction_$27_2(t + 1, n)
|
|
4444
|
-
]);
|
|
4445
|
-
}
|
|
4446
|
-
matchArithmeticLogic8Instruction_$27_1(t, n) {
|
|
4447
|
-
return this.regexAccept(String.raw`(?:\+)`, t + 1, n);
|
|
4448
|
-
}
|
|
4449
|
-
matchArithmeticLogic8Instruction_$27_2(t, n) {
|
|
4450
|
-
return this.regexAccept(String.raw`(?:\-)`, t + 1, n);
|
|
4451
|
-
}
|
|
4452
|
-
matchArithmeticLogic8Instruction_$28(t, n) {
|
|
4453
4516
|
return this.run(
|
|
4454
4517
|
t,
|
|
4455
4518
|
() => {
|
|
4456
4519
|
let i = null;
|
|
4457
4520
|
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 && (i = {
|
|
4458
|
-
kind: "ArithmeticLogic8Instruction_$
|
|
4459
|
-
/* ArithmeticLogic8Instruction_$
|
|
4521
|
+
kind: "ArithmeticLogic8Instruction_$27"
|
|
4522
|
+
/* ArithmeticLogic8Instruction_$27 */
|
|
4460
4523
|
}), i;
|
|
4461
4524
|
}
|
|
4462
4525
|
);
|
|
4463
4526
|
}
|
|
4464
|
-
matchArithmeticLogic8Instruction_$
|
|
4527
|
+
matchArithmeticLogic8Instruction_$28(t, n) {
|
|
4465
4528
|
return this.run(
|
|
4466
4529
|
t,
|
|
4467
4530
|
() => {
|
|
4468
4531
|
let i = null;
|
|
4469
4532
|
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 && (i = {
|
|
4470
|
-
kind: "ArithmeticLogic8Instruction_$
|
|
4471
|
-
/* ArithmeticLogic8Instruction_$
|
|
4533
|
+
kind: "ArithmeticLogic8Instruction_$28"
|
|
4534
|
+
/* ArithmeticLogic8Instruction_$28 */
|
|
4472
4535
|
}), i;
|
|
4473
4536
|
}
|
|
4474
4537
|
);
|
|
4475
4538
|
}
|
|
4476
|
-
matchArithmeticLogic8Instruction_$
|
|
4539
|
+
matchArithmeticLogic8Instruction_$29(t, n) {
|
|
4477
4540
|
return this.run(
|
|
4478
4541
|
t,
|
|
4479
4542
|
() => {
|
|
4480
4543
|
let i = null;
|
|
4481
4544
|
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 && (i = {
|
|
4482
|
-
kind: "ArithmeticLogic8Instruction_$
|
|
4483
|
-
/* ArithmeticLogic8Instruction_$
|
|
4545
|
+
kind: "ArithmeticLogic8Instruction_$29"
|
|
4546
|
+
/* ArithmeticLogic8Instruction_$29 */
|
|
4484
4547
|
}), i;
|
|
4485
4548
|
}
|
|
4486
4549
|
);
|
|
4487
4550
|
}
|
|
4551
|
+
matchArithmeticLogic8Instruction_$30(t, n) {
|
|
4552
|
+
return this.choice([
|
|
4553
|
+
() => this.matchArithmeticLogic8Instruction_$30_1(t + 1, n),
|
|
4554
|
+
() => this.matchArithmeticLogic8Instruction_$30_2(t + 1, n)
|
|
4555
|
+
]);
|
|
4556
|
+
}
|
|
4557
|
+
matchArithmeticLogic8Instruction_$30_1(t, n) {
|
|
4558
|
+
return this.regexAccept(String.raw`(?:\+)`, t + 1, n);
|
|
4559
|
+
}
|
|
4560
|
+
matchArithmeticLogic8Instruction_$30_2(t, n) {
|
|
4561
|
+
return this.regexAccept(String.raw`(?:\-)`, t + 1, n);
|
|
4562
|
+
}
|
|
4488
4563
|
matchArithmeticLogic8Instruction_$31(t, n) {
|
|
4489
4564
|
return this.run(
|
|
4490
4565
|
t,
|
|
@@ -4522,53 +4597,53 @@ class Lr {
|
|
|
4522
4597
|
);
|
|
4523
4598
|
}
|
|
4524
4599
|
matchArithmeticLogic8Instruction_$34(t, n) {
|
|
4525
|
-
return this.choice([
|
|
4526
|
-
() => this.matchArithmeticLogic8Instruction_$34_1(t + 1, n),
|
|
4527
|
-
() => this.matchArithmeticLogic8Instruction_$34_2(t + 1, n)
|
|
4528
|
-
]);
|
|
4529
|
-
}
|
|
4530
|
-
matchArithmeticLogic8Instruction_$34_1(t, n) {
|
|
4531
|
-
return this.regexAccept(String.raw`(?:\+)`, t + 1, n);
|
|
4532
|
-
}
|
|
4533
|
-
matchArithmeticLogic8Instruction_$34_2(t, n) {
|
|
4534
|
-
return this.regexAccept(String.raw`(?:\-)`, t + 1, n);
|
|
4535
|
-
}
|
|
4536
|
-
matchArithmeticLogic8Instruction_$35(t, n) {
|
|
4537
4600
|
return this.run(
|
|
4538
4601
|
t,
|
|
4539
4602
|
() => {
|
|
4540
4603
|
let i = null;
|
|
4541
4604
|
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 && (i = {
|
|
4542
|
-
kind: "ArithmeticLogic8Instruction_$
|
|
4543
|
-
/* ArithmeticLogic8Instruction_$
|
|
4605
|
+
kind: "ArithmeticLogic8Instruction_$34"
|
|
4606
|
+
/* ArithmeticLogic8Instruction_$34 */
|
|
4544
4607
|
}), i;
|
|
4545
4608
|
}
|
|
4546
4609
|
);
|
|
4547
4610
|
}
|
|
4548
|
-
matchArithmeticLogic8Instruction_$
|
|
4611
|
+
matchArithmeticLogic8Instruction_$35(t, n) {
|
|
4549
4612
|
return this.run(
|
|
4550
4613
|
t,
|
|
4551
4614
|
() => {
|
|
4552
4615
|
let i = null;
|
|
4553
4616
|
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 && (i = {
|
|
4554
|
-
kind: "ArithmeticLogic8Instruction_$
|
|
4555
|
-
/* ArithmeticLogic8Instruction_$
|
|
4617
|
+
kind: "ArithmeticLogic8Instruction_$35"
|
|
4618
|
+
/* ArithmeticLogic8Instruction_$35 */
|
|
4556
4619
|
}), i;
|
|
4557
4620
|
}
|
|
4558
4621
|
);
|
|
4559
4622
|
}
|
|
4560
|
-
matchArithmeticLogic8Instruction_$
|
|
4623
|
+
matchArithmeticLogic8Instruction_$36(t, n) {
|
|
4561
4624
|
return this.run(
|
|
4562
4625
|
t,
|
|
4563
4626
|
() => {
|
|
4564
4627
|
let i = null;
|
|
4565
4628
|
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 && (i = {
|
|
4566
|
-
kind: "ArithmeticLogic8Instruction_$
|
|
4567
|
-
/* ArithmeticLogic8Instruction_$
|
|
4629
|
+
kind: "ArithmeticLogic8Instruction_$36"
|
|
4630
|
+
/* ArithmeticLogic8Instruction_$36 */
|
|
4568
4631
|
}), i;
|
|
4569
4632
|
}
|
|
4570
4633
|
);
|
|
4571
4634
|
}
|
|
4635
|
+
matchArithmeticLogic8Instruction_$37(t, n) {
|
|
4636
|
+
return this.choice([
|
|
4637
|
+
() => this.matchArithmeticLogic8Instruction_$37_1(t + 1, n),
|
|
4638
|
+
() => this.matchArithmeticLogic8Instruction_$37_2(t + 1, n)
|
|
4639
|
+
]);
|
|
4640
|
+
}
|
|
4641
|
+
matchArithmeticLogic8Instruction_$37_1(t, n) {
|
|
4642
|
+
return this.regexAccept(String.raw`(?:\+)`, t + 1, n);
|
|
4643
|
+
}
|
|
4644
|
+
matchArithmeticLogic8Instruction_$37_2(t, n) {
|
|
4645
|
+
return this.regexAccept(String.raw`(?:\-)`, t + 1, n);
|
|
4646
|
+
}
|
|
4572
4647
|
matchArithmeticLogic8Instruction_$38(t, n) {
|
|
4573
4648
|
return this.run(
|
|
4574
4649
|
t,
|
|
@@ -4606,53 +4681,53 @@ class Lr {
|
|
|
4606
4681
|
);
|
|
4607
4682
|
}
|
|
4608
4683
|
matchArithmeticLogic8Instruction_$41(t, n) {
|
|
4609
|
-
return this.choice([
|
|
4610
|
-
() => this.matchArithmeticLogic8Instruction_$41_1(t + 1, n),
|
|
4611
|
-
() => this.matchArithmeticLogic8Instruction_$41_2(t + 1, n)
|
|
4612
|
-
]);
|
|
4613
|
-
}
|
|
4614
|
-
matchArithmeticLogic8Instruction_$41_1(t, n) {
|
|
4615
|
-
return this.regexAccept(String.raw`(?:\+)`, t + 1, n);
|
|
4616
|
-
}
|
|
4617
|
-
matchArithmeticLogic8Instruction_$41_2(t, n) {
|
|
4618
|
-
return this.regexAccept(String.raw`(?:\-)`, t + 1, n);
|
|
4619
|
-
}
|
|
4620
|
-
matchArithmeticLogic8Instruction_$42(t, n) {
|
|
4621
4684
|
return this.run(
|
|
4622
4685
|
t,
|
|
4623
4686
|
() => {
|
|
4624
4687
|
let i = null;
|
|
4625
4688
|
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 && (i = {
|
|
4626
|
-
kind: "ArithmeticLogic8Instruction_$
|
|
4627
|
-
/* ArithmeticLogic8Instruction_$
|
|
4689
|
+
kind: "ArithmeticLogic8Instruction_$41"
|
|
4690
|
+
/* ArithmeticLogic8Instruction_$41 */
|
|
4628
4691
|
}), i;
|
|
4629
4692
|
}
|
|
4630
4693
|
);
|
|
4631
4694
|
}
|
|
4632
|
-
matchArithmeticLogic8Instruction_$
|
|
4695
|
+
matchArithmeticLogic8Instruction_$42(t, n) {
|
|
4633
4696
|
return this.run(
|
|
4634
4697
|
t,
|
|
4635
4698
|
() => {
|
|
4636
4699
|
let i = null;
|
|
4637
4700
|
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 && (i = {
|
|
4638
|
-
kind: "ArithmeticLogic8Instruction_$
|
|
4639
|
-
/* ArithmeticLogic8Instruction_$
|
|
4701
|
+
kind: "ArithmeticLogic8Instruction_$42"
|
|
4702
|
+
/* ArithmeticLogic8Instruction_$42 */
|
|
4640
4703
|
}), i;
|
|
4641
4704
|
}
|
|
4642
4705
|
);
|
|
4643
4706
|
}
|
|
4644
|
-
matchArithmeticLogic8Instruction_$
|
|
4707
|
+
matchArithmeticLogic8Instruction_$43(t, n) {
|
|
4645
4708
|
return this.run(
|
|
4646
4709
|
t,
|
|
4647
4710
|
() => {
|
|
4648
4711
|
let i = null;
|
|
4649
4712
|
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 && (i = {
|
|
4650
|
-
kind: "ArithmeticLogic8Instruction_$
|
|
4651
|
-
/* ArithmeticLogic8Instruction_$
|
|
4713
|
+
kind: "ArithmeticLogic8Instruction_$43"
|
|
4714
|
+
/* ArithmeticLogic8Instruction_$43 */
|
|
4652
4715
|
}), i;
|
|
4653
4716
|
}
|
|
4654
4717
|
);
|
|
4655
4718
|
}
|
|
4719
|
+
matchArithmeticLogic8Instruction_$44(t, n) {
|
|
4720
|
+
return this.choice([
|
|
4721
|
+
() => this.matchArithmeticLogic8Instruction_$44_1(t + 1, n),
|
|
4722
|
+
() => this.matchArithmeticLogic8Instruction_$44_2(t + 1, n)
|
|
4723
|
+
]);
|
|
4724
|
+
}
|
|
4725
|
+
matchArithmeticLogic8Instruction_$44_1(t, n) {
|
|
4726
|
+
return this.regexAccept(String.raw`(?:\+)`, t + 1, n);
|
|
4727
|
+
}
|
|
4728
|
+
matchArithmeticLogic8Instruction_$44_2(t, n) {
|
|
4729
|
+
return this.regexAccept(String.raw`(?:\-)`, t + 1, n);
|
|
4730
|
+
}
|
|
4656
4731
|
matchArithmeticLogic8Instruction_$45(t, n) {
|
|
4657
4732
|
return this.run(
|
|
4658
4733
|
t,
|
|
@@ -4690,53 +4765,53 @@ class Lr {
|
|
|
4690
4765
|
);
|
|
4691
4766
|
}
|
|
4692
4767
|
matchArithmeticLogic8Instruction_$48(t, n) {
|
|
4693
|
-
return this.choice([
|
|
4694
|
-
() => this.matchArithmeticLogic8Instruction_$48_1(t + 1, n),
|
|
4695
|
-
() => this.matchArithmeticLogic8Instruction_$48_2(t + 1, n)
|
|
4696
|
-
]);
|
|
4697
|
-
}
|
|
4698
|
-
matchArithmeticLogic8Instruction_$48_1(t, n) {
|
|
4699
|
-
return this.regexAccept(String.raw`(?:\+)`, t + 1, n);
|
|
4700
|
-
}
|
|
4701
|
-
matchArithmeticLogic8Instruction_$48_2(t, n) {
|
|
4702
|
-
return this.regexAccept(String.raw`(?:\-)`, t + 1, n);
|
|
4703
|
-
}
|
|
4704
|
-
matchArithmeticLogic8Instruction_$49(t, n) {
|
|
4705
4768
|
return this.run(
|
|
4706
4769
|
t,
|
|
4707
4770
|
() => {
|
|
4708
4771
|
let i = null;
|
|
4709
4772
|
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 && (i = {
|
|
4710
|
-
kind: "ArithmeticLogic8Instruction_$
|
|
4711
|
-
/* ArithmeticLogic8Instruction_$
|
|
4773
|
+
kind: "ArithmeticLogic8Instruction_$48"
|
|
4774
|
+
/* ArithmeticLogic8Instruction_$48 */
|
|
4712
4775
|
}), i;
|
|
4713
4776
|
}
|
|
4714
4777
|
);
|
|
4715
4778
|
}
|
|
4716
|
-
matchArithmeticLogic8Instruction_$
|
|
4779
|
+
matchArithmeticLogic8Instruction_$49(t, n) {
|
|
4717
4780
|
return this.run(
|
|
4718
4781
|
t,
|
|
4719
4782
|
() => {
|
|
4720
4783
|
let i = null;
|
|
4721
4784
|
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 && (i = {
|
|
4722
|
-
kind: "ArithmeticLogic8Instruction_$
|
|
4723
|
-
/* ArithmeticLogic8Instruction_$
|
|
4785
|
+
kind: "ArithmeticLogic8Instruction_$49"
|
|
4786
|
+
/* ArithmeticLogic8Instruction_$49 */
|
|
4724
4787
|
}), i;
|
|
4725
4788
|
}
|
|
4726
4789
|
);
|
|
4727
4790
|
}
|
|
4728
|
-
matchArithmeticLogic8Instruction_$
|
|
4791
|
+
matchArithmeticLogic8Instruction_$50(t, n) {
|
|
4729
4792
|
return this.run(
|
|
4730
4793
|
t,
|
|
4731
4794
|
() => {
|
|
4732
4795
|
let i = null;
|
|
4733
4796
|
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 && (i = {
|
|
4734
|
-
kind: "ArithmeticLogic8Instruction_$
|
|
4735
|
-
/* ArithmeticLogic8Instruction_$
|
|
4797
|
+
kind: "ArithmeticLogic8Instruction_$50"
|
|
4798
|
+
/* ArithmeticLogic8Instruction_$50 */
|
|
4736
4799
|
}), i;
|
|
4737
4800
|
}
|
|
4738
4801
|
);
|
|
4739
4802
|
}
|
|
4803
|
+
matchArithmeticLogic8Instruction_$51(t, n) {
|
|
4804
|
+
return this.choice([
|
|
4805
|
+
() => this.matchArithmeticLogic8Instruction_$51_1(t + 1, n),
|
|
4806
|
+
() => this.matchArithmeticLogic8Instruction_$51_2(t + 1, n)
|
|
4807
|
+
]);
|
|
4808
|
+
}
|
|
4809
|
+
matchArithmeticLogic8Instruction_$51_1(t, n) {
|
|
4810
|
+
return this.regexAccept(String.raw`(?:\+)`, t + 1, n);
|
|
4811
|
+
}
|
|
4812
|
+
matchArithmeticLogic8Instruction_$51_2(t, n) {
|
|
4813
|
+
return this.regexAccept(String.raw`(?:\-)`, t + 1, n);
|
|
4814
|
+
}
|
|
4740
4815
|
matchArithmeticLogic8Instruction_$52(t, n) {
|
|
4741
4816
|
return this.run(
|
|
4742
4817
|
t,
|
|
@@ -4774,16 +4849,16 @@ class Lr {
|
|
|
4774
4849
|
);
|
|
4775
4850
|
}
|
|
4776
4851
|
matchArithmeticLogic8Instruction_$55(t, n) {
|
|
4777
|
-
return this.
|
|
4778
|
-
|
|
4779
|
-
() =>
|
|
4780
|
-
|
|
4781
|
-
|
|
4782
|
-
|
|
4783
|
-
|
|
4784
|
-
|
|
4785
|
-
|
|
4786
|
-
|
|
4852
|
+
return this.run(
|
|
4853
|
+
t,
|
|
4854
|
+
() => {
|
|
4855
|
+
let i = null;
|
|
4856
|
+
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 && (i = {
|
|
4857
|
+
kind: "ArithmeticLogic8Instruction_$55"
|
|
4858
|
+
/* ArithmeticLogic8Instruction_$55 */
|
|
4859
|
+
}), i;
|
|
4860
|
+
}
|
|
4861
|
+
);
|
|
4787
4862
|
}
|
|
4788
4863
|
matchIncrementDecrement8Instruction(t, n) {
|
|
4789
4864
|
return this.choice([
|
|
@@ -5890,8 +5965,8 @@ class Lr {
|
|
|
5890
5965
|
return this.run(
|
|
5891
5966
|
t,
|
|
5892
5967
|
() => {
|
|
5893
|
-
let i
|
|
5894
|
-
return this.regexAccept(String.raw`(?:jp)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (
|
|
5968
|
+
let i = null;
|
|
5969
|
+
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 && (i = new Cs()), i;
|
|
5895
5970
|
}
|
|
5896
5971
|
);
|
|
5897
5972
|
}
|
|
@@ -5899,8 +5974,8 @@ class Lr {
|
|
|
5899
5974
|
return this.run(
|
|
5900
5975
|
t,
|
|
5901
5976
|
() => {
|
|
5902
|
-
let i
|
|
5903
|
-
return this.regexAccept(String.raw`(?:jp)`, t + 1, n) !== null && this.match__(t + 1, n) !== null &&
|
|
5977
|
+
let i = null;
|
|
5978
|
+
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 && (i = new bs()), i;
|
|
5904
5979
|
}
|
|
5905
5980
|
);
|
|
5906
5981
|
}
|
|
@@ -5908,8 +5983,8 @@ class Lr {
|
|
|
5908
5983
|
return this.run(
|
|
5909
5984
|
t,
|
|
5910
5985
|
() => {
|
|
5911
|
-
let i
|
|
5912
|
-
return this.regexAccept(String.raw`(?:
|
|
5986
|
+
let i = null;
|
|
5987
|
+
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 && (i = new Ds()), i;
|
|
5913
5988
|
}
|
|
5914
5989
|
);
|
|
5915
5990
|
}
|
|
@@ -5918,7 +5993,7 @@ class Lr {
|
|
|
5918
5993
|
t,
|
|
5919
5994
|
() => {
|
|
5920
5995
|
let i, s, r = null;
|
|
5921
|
-
return this.regexAccept(String.raw`(?:
|
|
5996
|
+
return this.regexAccept(String.raw`(?:jp)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (i = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new Bs(i, s)), r;
|
|
5922
5997
|
}
|
|
5923
5998
|
);
|
|
5924
5999
|
}
|
|
@@ -5927,7 +6002,7 @@ class Lr {
|
|
|
5927
6002
|
t,
|
|
5928
6003
|
() => {
|
|
5929
6004
|
let i, s, r, c = null;
|
|
5930
|
-
return this.regexAccept(String.raw`(?:
|
|
6005
|
+
return this.regexAccept(String.raw`(?:jp)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (i = 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 && (c = new qs(i, s, r)), c;
|
|
5931
6006
|
}
|
|
5932
6007
|
);
|
|
5933
6008
|
}
|
|
@@ -5935,8 +6010,8 @@ class Lr {
|
|
|
5935
6010
|
return this.run(
|
|
5936
6011
|
t,
|
|
5937
6012
|
() => {
|
|
5938
|
-
let i, s, r
|
|
5939
|
-
return this.regexAccept(String.raw`(?:jr)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (i = this.
|
|
6013
|
+
let i, s, r = null;
|
|
6014
|
+
return this.regexAccept(String.raw`(?:jr)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (i = this.mark()) !== null && (s = this.matchLabel(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new ys(i, s)), r;
|
|
5940
6015
|
}
|
|
5941
6016
|
);
|
|
5942
6017
|
}
|
|
@@ -5944,8 +6019,8 @@ class Lr {
|
|
|
5944
6019
|
return this.run(
|
|
5945
6020
|
t,
|
|
5946
6021
|
() => {
|
|
5947
|
-
let i = null;
|
|
5948
|
-
return this.regexAccept(String.raw`(?:
|
|
6022
|
+
let i, s, r = null;
|
|
6023
|
+
return this.regexAccept(String.raw`(?:jr)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (i = this.mark()) !== null && (s = this.matchExpression(t + 1, n)) !== null && this.noConsume(() => this.matcheos(t + 1, n)) !== null && (r = new ps(i, s)), r;
|
|
5949
6024
|
}
|
|
5950
6025
|
);
|
|
5951
6026
|
}
|
|
@@ -5953,8 +6028,8 @@ class Lr {
|
|
|
5953
6028
|
return this.run(
|
|
5954
6029
|
t,
|
|
5955
6030
|
() => {
|
|
5956
|
-
let i = null;
|
|
5957
|
-
return this.regexAccept(String.raw`(?:
|
|
6031
|
+
let i, s, r, c = null;
|
|
6032
|
+
return this.regexAccept(String.raw`(?:jr)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (i = 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 && (c = new Ms(i, s, r)), c;
|
|
5958
6033
|
}
|
|
5959
6034
|
);
|
|
5960
6035
|
}
|
|
@@ -5962,8 +6037,8 @@ class Lr {
|
|
|
5962
6037
|
return this.run(
|
|
5963
6038
|
t,
|
|
5964
6039
|
() => {
|
|
5965
|
-
let i = null;
|
|
5966
|
-
return this.regexAccept(String.raw`(?:
|
|
6040
|
+
let i, s, r, c = null;
|
|
6041
|
+
return this.regexAccept(String.raw`(?:jr)`, t + 1, n) !== null && this.match__(t + 1, n) !== null && (i = 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 && (c = new Os(i, s, r)), c;
|
|
5967
6042
|
}
|
|
5968
6043
|
);
|
|
5969
6044
|
}
|
|
@@ -6656,22 +6731,29 @@ class fr {
|
|
|
6656
6731
|
class m extends Error {
|
|
6657
6732
|
/**
|
|
6658
6733
|
* Constructor.
|
|
6734
|
+
* Constructeur.
|
|
6659
6735
|
* @param filename Filename where the error occurred.
|
|
6660
|
-
*
|
|
6736
|
+
* Fichier où s'est produite l'erreur.
|
|
6737
|
+
* @param pos Position (line, offset) where the error occurred.
|
|
6738
|
+
* Position (line, décalage) où s'est produite l'erreur.
|
|
6661
6739
|
* @param message Description of the error.
|
|
6740
|
+
* Description de l'erreur.
|
|
6662
6741
|
*/
|
|
6663
6742
|
constructor(t, n, i) {
|
|
6664
6743
|
super(i), this.filename = t, this.pos = n;
|
|
6665
6744
|
}
|
|
6666
6745
|
/**
|
|
6667
6746
|
* Format the error.
|
|
6747
|
+
* Formate l'erreur.
|
|
6668
6748
|
*/
|
|
6669
6749
|
toString() {
|
|
6670
6750
|
return `File '${this.filename}', Line ${this.pos.line}:${this.pos.offset + 1} - ${this.message}`;
|
|
6671
6751
|
}
|
|
6672
6752
|
/**
|
|
6673
|
-
* Format internal MatchAttempt
|
|
6753
|
+
* Format internal MatchAttempt.
|
|
6754
|
+
* Formate le MatchAttempt interne.
|
|
6674
6755
|
* @param match The MatchAttempt to format.
|
|
6756
|
+
* Le MatchAttempt à formater.
|
|
6675
6757
|
* @private
|
|
6676
6758
|
*/
|
|
6677
6759
|
static formatMatch(t) {
|
|
@@ -6682,7 +6764,9 @@ class m extends Error {
|
|
|
6682
6764
|
}
|
|
6683
6765
|
/**
|
|
6684
6766
|
* Format a syntax error.
|
|
6767
|
+
* Formate une erreur de syntaxe.
|
|
6685
6768
|
* @param err a syntax error.
|
|
6769
|
+
* L'erreur de syntaxe.
|
|
6686
6770
|
* @private
|
|
6687
6771
|
*/
|
|
6688
6772
|
static formatError(t) {
|
|
@@ -6694,30 +6778,40 @@ class m extends Error {
|
|
|
6694
6778
|
}
|
|
6695
6779
|
/**
|
|
6696
6780
|
* Create a compilation error from a syntax error.
|
|
6781
|
+
* Crée une erreur de compilation depuis une erreur de syntaxe.
|
|
6697
6782
|
* @param filename Filename where the error occurred.
|
|
6783
|
+
* Fichier où s'est produite l'erreur.
|
|
6698
6784
|
* @param e Syntax error.
|
|
6785
|
+
* L'erreur de syntaxe.
|
|
6699
6786
|
*/
|
|
6700
6787
|
static fromSyntaxErr(t, n) {
|
|
6701
6788
|
return new m(t, n.pos, this.formatError(n));
|
|
6702
6789
|
}
|
|
6703
6790
|
/**
|
|
6704
6791
|
* Create a compilation error from different errors.
|
|
6792
|
+
* Crée une erreur de compilation depuis différents types d'erreur.
|
|
6705
6793
|
* @param filename Filename where the error occurred.
|
|
6794
|
+
* Fichier où s'est produite l'erreur.
|
|
6706
6795
|
* @param e The error
|
|
6796
|
+
* L'erreur.
|
|
6707
6797
|
*/
|
|
6708
6798
|
static fromAny(t, n) {
|
|
6709
6799
|
return n instanceof m ? n : n instanceof z ? this.fromSyntaxErr(t, n) : new m(t, { line: 1, offset: 0, overallPos: 0 }, n.toString());
|
|
6710
6800
|
}
|
|
6711
6801
|
/**
|
|
6712
|
-
* Check if an error is a compilation error (and cast the
|
|
6713
|
-
*
|
|
6802
|
+
* Check if an error is a compilation error (and cast the error in this case).
|
|
6803
|
+
* Vérifie si une erreur est une erreur de compilation (and convertit le type de l'erreur dans ce cas).
|
|
6804
|
+
* @param err The error to check.
|
|
6805
|
+
* L'erreur à vérifier.
|
|
6714
6806
|
*/
|
|
6715
6807
|
static is(t) {
|
|
6716
6808
|
return t.filename !== void 0;
|
|
6717
6809
|
}
|
|
6718
6810
|
/**
|
|
6719
|
-
* Check if an error is an array of compilation errors (and cast the
|
|
6720
|
-
*
|
|
6811
|
+
* Check if an error is an array of compilation errors (and cast the type in this case).
|
|
6812
|
+
* Vérifie si une erreur est un tableau d'erreurs de compilation (and convertit le type dans ce cas).
|
|
6813
|
+
* @param err The error to check.
|
|
6814
|
+
* L'erreur à vérifier.
|
|
6721
6815
|
*/
|
|
6722
6816
|
static isArray(t) {
|
|
6723
6817
|
const n = t;
|