@andrivet/z80-assembler 1.3.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -1
- package/index.d.ts +2 -2
- package/index.js +91 -28
- package/index.mjs +1650 -2479
- package/lib/compiler/Assets.d.ts +0 -9
- package/lib/compiler/Ast.d.ts +0 -53
- package/lib/compiler/Compiler.d.ts +0 -25
- package/lib/compiler/Formatter.d.ts +0 -13
- package/lib/compiler/Generator.d.ts +0 -1
- package/lib/compiler/Labels.d.ts +1 -25
- package/lib/grammar/LowLevel.d.ts +0 -37
- package/lib/grammar/Parse.d.ts +0 -29
- package/lib/grammar/z80.d.ts +207 -873
- package/lib/types/Error.d.ts +0 -28
- package/lib/types/Types.d.ts +0 -15
- package/package.json +2 -2
package/lib/grammar/z80.d.ts
CHANGED
|
@@ -39,13 +39,15 @@ export declare enum ASTKinds {
|
|
|
39
39
|
nn_3 = "nn_3",
|
|
40
40
|
nn_4 = "nn_4",
|
|
41
41
|
decimal = "decimal",
|
|
42
|
-
|
|
42
|
+
binary_1 = "binary_1",
|
|
43
|
+
binary_2 = "binary_2",
|
|
43
44
|
binary_$0_1 = "binary_$0_1",
|
|
44
45
|
binary_$0_2 = "binary_$0_2",
|
|
45
46
|
octal_1 = "octal_1",
|
|
46
47
|
octal_2 = "octal_2",
|
|
47
48
|
octal_$0_1 = "octal_$0_1",
|
|
48
49
|
octal_$0_2 = "octal_$0_2",
|
|
50
|
+
octal_$0_3 = "octal_$0_3",
|
|
49
51
|
octal_$1_1 = "octal_$1_1",
|
|
50
52
|
octal_$1_2 = "octal_$1_2",
|
|
51
53
|
hexadecimal_1 = "hexadecimal_1",
|
|
@@ -87,6 +89,7 @@ export declare enum ASTKinds {
|
|
|
87
89
|
Directive_2 = "Directive_2",
|
|
88
90
|
Directive_3 = "Directive_3",
|
|
89
91
|
Directive_4 = "Directive_4",
|
|
92
|
+
Directive_5 = "Directive_5",
|
|
90
93
|
ForbiddenNames_1 = "ForbiddenNames_1",
|
|
91
94
|
ForbiddenNames_2 = "ForbiddenNames_2",
|
|
92
95
|
ForbiddenNames_3 = "ForbiddenNames_3",
|
|
@@ -124,6 +127,14 @@ export declare enum ASTKinds {
|
|
|
124
127
|
PrimaryExpression_2 = "PrimaryExpression_2",
|
|
125
128
|
PrimaryExpression_3 = "PrimaryExpression_3",
|
|
126
129
|
Reg8 = "Reg8",
|
|
130
|
+
IX = "IX",
|
|
131
|
+
IX_$0 = "IX_$0",
|
|
132
|
+
IX_$0_$0_1 = "IX_$0_$0_1",
|
|
133
|
+
IX_$0_$0_2 = "IX_$0_$0_2",
|
|
134
|
+
IY = "IY",
|
|
135
|
+
IY_$0 = "IY_$0",
|
|
136
|
+
IY_$0_$0_1 = "IY_$0_$0_1",
|
|
137
|
+
IY_$0_$0_2 = "IY_$0_$0_2",
|
|
127
138
|
Instruction_1 = "Instruction_1",
|
|
128
139
|
Instruction_2 = "Instruction_2",
|
|
129
140
|
Instruction_3 = "Instruction_3",
|
|
@@ -161,24 +172,6 @@ export declare enum ASTKinds {
|
|
|
161
172
|
Load8Instruction_19 = "Load8Instruction_19",
|
|
162
173
|
Load8Instruction_20 = "Load8Instruction_20",
|
|
163
174
|
Load8Instruction_21 = "Load8Instruction_21",
|
|
164
|
-
Load8Instruction_$0 = "Load8Instruction_$0",
|
|
165
|
-
Load8Instruction_$0_$0_1 = "Load8Instruction_$0_$0_1",
|
|
166
|
-
Load8Instruction_$0_$0_2 = "Load8Instruction_$0_$0_2",
|
|
167
|
-
Load8Instruction_$1 = "Load8Instruction_$1",
|
|
168
|
-
Load8Instruction_$1_$0_1 = "Load8Instruction_$1_$0_1",
|
|
169
|
-
Load8Instruction_$1_$0_2 = "Load8Instruction_$1_$0_2",
|
|
170
|
-
Load8Instruction_$2 = "Load8Instruction_$2",
|
|
171
|
-
Load8Instruction_$2_$0_1 = "Load8Instruction_$2_$0_1",
|
|
172
|
-
Load8Instruction_$2_$0_2 = "Load8Instruction_$2_$0_2",
|
|
173
|
-
Load8Instruction_$3 = "Load8Instruction_$3",
|
|
174
|
-
Load8Instruction_$3_$0_1 = "Load8Instruction_$3_$0_1",
|
|
175
|
-
Load8Instruction_$3_$0_2 = "Load8Instruction_$3_$0_2",
|
|
176
|
-
Load8Instruction_$4 = "Load8Instruction_$4",
|
|
177
|
-
Load8Instruction_$4_$0_1 = "Load8Instruction_$4_$0_1",
|
|
178
|
-
Load8Instruction_$4_$0_2 = "Load8Instruction_$4_$0_2",
|
|
179
|
-
Load8Instruction_$5 = "Load8Instruction_$5",
|
|
180
|
-
Load8Instruction_$5_$0_1 = "Load8Instruction_$5_$0_1",
|
|
181
|
-
Load8Instruction_$5_$0_2 = "Load8Instruction_$5_$0_2",
|
|
182
175
|
Load16Instruction_1 = "Load16Instruction_1",
|
|
183
176
|
Load16Instruction_2 = "Load16Instruction_2",
|
|
184
177
|
Load16Instruction_3 = "Load16Instruction_3",
|
|
@@ -256,91 +249,43 @@ export declare enum ASTKinds {
|
|
|
256
249
|
ArithmeticLogic8Instruction_$0 = "ArithmeticLogic8Instruction_$0",
|
|
257
250
|
ArithmeticLogic8Instruction_$1 = "ArithmeticLogic8Instruction_$1",
|
|
258
251
|
ArithmeticLogic8Instruction_$2 = "ArithmeticLogic8Instruction_$2",
|
|
259
|
-
ArithmeticLogic8Instruction_$2_$0_1 = "ArithmeticLogic8Instruction_$2_$0_1",
|
|
260
|
-
ArithmeticLogic8Instruction_$2_$0_2 = "ArithmeticLogic8Instruction_$2_$0_2",
|
|
261
252
|
ArithmeticLogic8Instruction_$3 = "ArithmeticLogic8Instruction_$3",
|
|
262
253
|
ArithmeticLogic8Instruction_$4 = "ArithmeticLogic8Instruction_$4",
|
|
263
|
-
ArithmeticLogic8Instruction_$4_$0_1 = "ArithmeticLogic8Instruction_$4_$0_1",
|
|
264
|
-
ArithmeticLogic8Instruction_$4_$0_2 = "ArithmeticLogic8Instruction_$4_$0_2",
|
|
265
254
|
ArithmeticLogic8Instruction_$5 = "ArithmeticLogic8Instruction_$5",
|
|
266
255
|
ArithmeticLogic8Instruction_$6 = "ArithmeticLogic8Instruction_$6",
|
|
267
256
|
ArithmeticLogic8Instruction_$7 = "ArithmeticLogic8Instruction_$7",
|
|
268
257
|
ArithmeticLogic8Instruction_$8 = "ArithmeticLogic8Instruction_$8",
|
|
269
258
|
ArithmeticLogic8Instruction_$9 = "ArithmeticLogic8Instruction_$9",
|
|
270
|
-
ArithmeticLogic8Instruction_$9_$0_1 = "ArithmeticLogic8Instruction_$9_$0_1",
|
|
271
|
-
ArithmeticLogic8Instruction_$9_$0_2 = "ArithmeticLogic8Instruction_$9_$0_2",
|
|
272
259
|
ArithmeticLogic8Instruction_$10 = "ArithmeticLogic8Instruction_$10",
|
|
273
260
|
ArithmeticLogic8Instruction_$11 = "ArithmeticLogic8Instruction_$11",
|
|
274
|
-
ArithmeticLogic8Instruction_$11_$0_1 = "ArithmeticLogic8Instruction_$11_$0_1",
|
|
275
|
-
ArithmeticLogic8Instruction_$11_$0_2 = "ArithmeticLogic8Instruction_$11_$0_2",
|
|
276
261
|
ArithmeticLogic8Instruction_$12 = "ArithmeticLogic8Instruction_$12",
|
|
277
262
|
ArithmeticLogic8Instruction_$13 = "ArithmeticLogic8Instruction_$13",
|
|
278
263
|
ArithmeticLogic8Instruction_$14 = "ArithmeticLogic8Instruction_$14",
|
|
279
264
|
ArithmeticLogic8Instruction_$15 = "ArithmeticLogic8Instruction_$15",
|
|
280
265
|
ArithmeticLogic8Instruction_$16 = "ArithmeticLogic8Instruction_$16",
|
|
281
|
-
ArithmeticLogic8Instruction_$16_$0_1 = "ArithmeticLogic8Instruction_$16_$0_1",
|
|
282
|
-
ArithmeticLogic8Instruction_$16_$0_2 = "ArithmeticLogic8Instruction_$16_$0_2",
|
|
283
266
|
ArithmeticLogic8Instruction_$17 = "ArithmeticLogic8Instruction_$17",
|
|
284
267
|
ArithmeticLogic8Instruction_$18 = "ArithmeticLogic8Instruction_$18",
|
|
285
|
-
ArithmeticLogic8Instruction_$18_$0_1 = "ArithmeticLogic8Instruction_$18_$0_1",
|
|
286
|
-
ArithmeticLogic8Instruction_$18_$0_2 = "ArithmeticLogic8Instruction_$18_$0_2",
|
|
287
268
|
ArithmeticLogic8Instruction_$19 = "ArithmeticLogic8Instruction_$19",
|
|
288
269
|
ArithmeticLogic8Instruction_$20 = "ArithmeticLogic8Instruction_$20",
|
|
289
270
|
ArithmeticLogic8Instruction_$21 = "ArithmeticLogic8Instruction_$21",
|
|
290
271
|
ArithmeticLogic8Instruction_$22 = "ArithmeticLogic8Instruction_$22",
|
|
291
272
|
ArithmeticLogic8Instruction_$23 = "ArithmeticLogic8Instruction_$23",
|
|
292
|
-
ArithmeticLogic8Instruction_$23_$0_1 = "ArithmeticLogic8Instruction_$23_$0_1",
|
|
293
|
-
ArithmeticLogic8Instruction_$23_$0_2 = "ArithmeticLogic8Instruction_$23_$0_2",
|
|
294
273
|
ArithmeticLogic8Instruction_$24 = "ArithmeticLogic8Instruction_$24",
|
|
295
274
|
ArithmeticLogic8Instruction_$25 = "ArithmeticLogic8Instruction_$25",
|
|
296
|
-
ArithmeticLogic8Instruction_$25_$0_1 = "ArithmeticLogic8Instruction_$25_$0_1",
|
|
297
|
-
ArithmeticLogic8Instruction_$25_$0_2 = "ArithmeticLogic8Instruction_$25_$0_2",
|
|
298
275
|
ArithmeticLogic8Instruction_$26 = "ArithmeticLogic8Instruction_$26",
|
|
299
276
|
ArithmeticLogic8Instruction_$27 = "ArithmeticLogic8Instruction_$27",
|
|
300
277
|
ArithmeticLogic8Instruction_$28 = "ArithmeticLogic8Instruction_$28",
|
|
301
278
|
ArithmeticLogic8Instruction_$29 = "ArithmeticLogic8Instruction_$29",
|
|
302
279
|
ArithmeticLogic8Instruction_$30 = "ArithmeticLogic8Instruction_$30",
|
|
303
|
-
ArithmeticLogic8Instruction_$30_$0_1 = "ArithmeticLogic8Instruction_$30_$0_1",
|
|
304
|
-
ArithmeticLogic8Instruction_$30_$0_2 = "ArithmeticLogic8Instruction_$30_$0_2",
|
|
305
280
|
ArithmeticLogic8Instruction_$31 = "ArithmeticLogic8Instruction_$31",
|
|
306
281
|
ArithmeticLogic8Instruction_$32 = "ArithmeticLogic8Instruction_$32",
|
|
307
|
-
ArithmeticLogic8Instruction_$32_$0_1 = "ArithmeticLogic8Instruction_$32_$0_1",
|
|
308
|
-
ArithmeticLogic8Instruction_$32_$0_2 = "ArithmeticLogic8Instruction_$32_$0_2",
|
|
309
282
|
ArithmeticLogic8Instruction_$33 = "ArithmeticLogic8Instruction_$33",
|
|
310
283
|
ArithmeticLogic8Instruction_$34 = "ArithmeticLogic8Instruction_$34",
|
|
311
284
|
ArithmeticLogic8Instruction_$35 = "ArithmeticLogic8Instruction_$35",
|
|
312
285
|
ArithmeticLogic8Instruction_$36 = "ArithmeticLogic8Instruction_$36",
|
|
313
286
|
ArithmeticLogic8Instruction_$37 = "ArithmeticLogic8Instruction_$37",
|
|
314
|
-
ArithmeticLogic8Instruction_$37_$0_1 = "ArithmeticLogic8Instruction_$37_$0_1",
|
|
315
|
-
ArithmeticLogic8Instruction_$37_$0_2 = "ArithmeticLogic8Instruction_$37_$0_2",
|
|
316
287
|
ArithmeticLogic8Instruction_$38 = "ArithmeticLogic8Instruction_$38",
|
|
317
288
|
ArithmeticLogic8Instruction_$39 = "ArithmeticLogic8Instruction_$39",
|
|
318
|
-
ArithmeticLogic8Instruction_$39_$0_1 = "ArithmeticLogic8Instruction_$39_$0_1",
|
|
319
|
-
ArithmeticLogic8Instruction_$39_$0_2 = "ArithmeticLogic8Instruction_$39_$0_2",
|
|
320
|
-
ArithmeticLogic8Instruction_$40 = "ArithmeticLogic8Instruction_$40",
|
|
321
|
-
ArithmeticLogic8Instruction_$41 = "ArithmeticLogic8Instruction_$41",
|
|
322
|
-
ArithmeticLogic8Instruction_$42 = "ArithmeticLogic8Instruction_$42",
|
|
323
|
-
ArithmeticLogic8Instruction_$43 = "ArithmeticLogic8Instruction_$43",
|
|
324
|
-
ArithmeticLogic8Instruction_$44 = "ArithmeticLogic8Instruction_$44",
|
|
325
|
-
ArithmeticLogic8Instruction_$44_$0_1 = "ArithmeticLogic8Instruction_$44_$0_1",
|
|
326
|
-
ArithmeticLogic8Instruction_$44_$0_2 = "ArithmeticLogic8Instruction_$44_$0_2",
|
|
327
|
-
ArithmeticLogic8Instruction_$45 = "ArithmeticLogic8Instruction_$45",
|
|
328
|
-
ArithmeticLogic8Instruction_$46 = "ArithmeticLogic8Instruction_$46",
|
|
329
|
-
ArithmeticLogic8Instruction_$46_$0_1 = "ArithmeticLogic8Instruction_$46_$0_1",
|
|
330
|
-
ArithmeticLogic8Instruction_$46_$0_2 = "ArithmeticLogic8Instruction_$46_$0_2",
|
|
331
|
-
ArithmeticLogic8Instruction_$47 = "ArithmeticLogic8Instruction_$47",
|
|
332
|
-
ArithmeticLogic8Instruction_$48 = "ArithmeticLogic8Instruction_$48",
|
|
333
|
-
ArithmeticLogic8Instruction_$49 = "ArithmeticLogic8Instruction_$49",
|
|
334
|
-
ArithmeticLogic8Instruction_$50 = "ArithmeticLogic8Instruction_$50",
|
|
335
|
-
ArithmeticLogic8Instruction_$51 = "ArithmeticLogic8Instruction_$51",
|
|
336
|
-
ArithmeticLogic8Instruction_$51_$0_1 = "ArithmeticLogic8Instruction_$51_$0_1",
|
|
337
|
-
ArithmeticLogic8Instruction_$51_$0_2 = "ArithmeticLogic8Instruction_$51_$0_2",
|
|
338
|
-
ArithmeticLogic8Instruction_$52 = "ArithmeticLogic8Instruction_$52",
|
|
339
|
-
ArithmeticLogic8Instruction_$53 = "ArithmeticLogic8Instruction_$53",
|
|
340
|
-
ArithmeticLogic8Instruction_$53_$0_1 = "ArithmeticLogic8Instruction_$53_$0_1",
|
|
341
|
-
ArithmeticLogic8Instruction_$53_$0_2 = "ArithmeticLogic8Instruction_$53_$0_2",
|
|
342
|
-
ArithmeticLogic8Instruction_$54 = "ArithmeticLogic8Instruction_$54",
|
|
343
|
-
ArithmeticLogic8Instruction_$55 = "ArithmeticLogic8Instruction_$55",
|
|
344
289
|
IncrementDecrement8Instruction_1 = "IncrementDecrement8Instruction_1",
|
|
345
290
|
IncrementDecrement8Instruction_2 = "IncrementDecrement8Instruction_2",
|
|
346
291
|
IncrementDecrement8Instruction_3 = "IncrementDecrement8Instruction_3",
|
|
@@ -349,18 +294,6 @@ export declare enum ASTKinds {
|
|
|
349
294
|
IncrementDecrement8Instruction_6 = "IncrementDecrement8Instruction_6",
|
|
350
295
|
IncrementDecrement8Instruction_7 = "IncrementDecrement8Instruction_7",
|
|
351
296
|
IncrementDecrement8Instruction_8 = "IncrementDecrement8Instruction_8",
|
|
352
|
-
IncrementDecrement8Instruction_$0 = "IncrementDecrement8Instruction_$0",
|
|
353
|
-
IncrementDecrement8Instruction_$0_$0_1 = "IncrementDecrement8Instruction_$0_$0_1",
|
|
354
|
-
IncrementDecrement8Instruction_$0_$0_2 = "IncrementDecrement8Instruction_$0_$0_2",
|
|
355
|
-
IncrementDecrement8Instruction_$1 = "IncrementDecrement8Instruction_$1",
|
|
356
|
-
IncrementDecrement8Instruction_$1_$0_1 = "IncrementDecrement8Instruction_$1_$0_1",
|
|
357
|
-
IncrementDecrement8Instruction_$1_$0_2 = "IncrementDecrement8Instruction_$1_$0_2",
|
|
358
|
-
IncrementDecrement8Instruction_$2 = "IncrementDecrement8Instruction_$2",
|
|
359
|
-
IncrementDecrement8Instruction_$2_$0_1 = "IncrementDecrement8Instruction_$2_$0_1",
|
|
360
|
-
IncrementDecrement8Instruction_$2_$0_2 = "IncrementDecrement8Instruction_$2_$0_2",
|
|
361
|
-
IncrementDecrement8Instruction_$3 = "IncrementDecrement8Instruction_$3",
|
|
362
|
-
IncrementDecrement8Instruction_$3_$0_1 = "IncrementDecrement8Instruction_$3_$0_1",
|
|
363
|
-
IncrementDecrement8Instruction_$3_$0_2 = "IncrementDecrement8Instruction_$3_$0_2",
|
|
364
297
|
GeneralPurposeArithmeticInstruction_1 = "GeneralPurposeArithmeticInstruction_1",
|
|
365
298
|
GeneralPurposeArithmeticInstruction_2 = "GeneralPurposeArithmeticInstruction_2",
|
|
366
299
|
GeneralPurposeArithmeticInstruction_3 = "GeneralPurposeArithmeticInstruction_3",
|
|
@@ -416,48 +349,6 @@ export declare enum ASTKinds {
|
|
|
416
349
|
RotateShiftInstruction_32 = "RotateShiftInstruction_32",
|
|
417
350
|
RotateShiftInstruction_33 = "RotateShiftInstruction_33",
|
|
418
351
|
RotateShiftInstruction_34 = "RotateShiftInstruction_34",
|
|
419
|
-
RotateShiftInstruction_$0 = "RotateShiftInstruction_$0",
|
|
420
|
-
RotateShiftInstruction_$0_$0_1 = "RotateShiftInstruction_$0_$0_1",
|
|
421
|
-
RotateShiftInstruction_$0_$0_2 = "RotateShiftInstruction_$0_$0_2",
|
|
422
|
-
RotateShiftInstruction_$1 = "RotateShiftInstruction_$1",
|
|
423
|
-
RotateShiftInstruction_$1_$0_1 = "RotateShiftInstruction_$1_$0_1",
|
|
424
|
-
RotateShiftInstruction_$1_$0_2 = "RotateShiftInstruction_$1_$0_2",
|
|
425
|
-
RotateShiftInstruction_$2 = "RotateShiftInstruction_$2",
|
|
426
|
-
RotateShiftInstruction_$2_$0_1 = "RotateShiftInstruction_$2_$0_1",
|
|
427
|
-
RotateShiftInstruction_$2_$0_2 = "RotateShiftInstruction_$2_$0_2",
|
|
428
|
-
RotateShiftInstruction_$3 = "RotateShiftInstruction_$3",
|
|
429
|
-
RotateShiftInstruction_$3_$0_1 = "RotateShiftInstruction_$3_$0_1",
|
|
430
|
-
RotateShiftInstruction_$3_$0_2 = "RotateShiftInstruction_$3_$0_2",
|
|
431
|
-
RotateShiftInstruction_$4 = "RotateShiftInstruction_$4",
|
|
432
|
-
RotateShiftInstruction_$4_$0_1 = "RotateShiftInstruction_$4_$0_1",
|
|
433
|
-
RotateShiftInstruction_$4_$0_2 = "RotateShiftInstruction_$4_$0_2",
|
|
434
|
-
RotateShiftInstruction_$5 = "RotateShiftInstruction_$5",
|
|
435
|
-
RotateShiftInstruction_$5_$0_1 = "RotateShiftInstruction_$5_$0_1",
|
|
436
|
-
RotateShiftInstruction_$5_$0_2 = "RotateShiftInstruction_$5_$0_2",
|
|
437
|
-
RotateShiftInstruction_$6 = "RotateShiftInstruction_$6",
|
|
438
|
-
RotateShiftInstruction_$6_$0_1 = "RotateShiftInstruction_$6_$0_1",
|
|
439
|
-
RotateShiftInstruction_$6_$0_2 = "RotateShiftInstruction_$6_$0_2",
|
|
440
|
-
RotateShiftInstruction_$7 = "RotateShiftInstruction_$7",
|
|
441
|
-
RotateShiftInstruction_$7_$0_1 = "RotateShiftInstruction_$7_$0_1",
|
|
442
|
-
RotateShiftInstruction_$7_$0_2 = "RotateShiftInstruction_$7_$0_2",
|
|
443
|
-
RotateShiftInstruction_$8 = "RotateShiftInstruction_$8",
|
|
444
|
-
RotateShiftInstruction_$8_$0_1 = "RotateShiftInstruction_$8_$0_1",
|
|
445
|
-
RotateShiftInstruction_$8_$0_2 = "RotateShiftInstruction_$8_$0_2",
|
|
446
|
-
RotateShiftInstruction_$9 = "RotateShiftInstruction_$9",
|
|
447
|
-
RotateShiftInstruction_$9_$0_1 = "RotateShiftInstruction_$9_$0_1",
|
|
448
|
-
RotateShiftInstruction_$9_$0_2 = "RotateShiftInstruction_$9_$0_2",
|
|
449
|
-
RotateShiftInstruction_$10 = "RotateShiftInstruction_$10",
|
|
450
|
-
RotateShiftInstruction_$10_$0_1 = "RotateShiftInstruction_$10_$0_1",
|
|
451
|
-
RotateShiftInstruction_$10_$0_2 = "RotateShiftInstruction_$10_$0_2",
|
|
452
|
-
RotateShiftInstruction_$11 = "RotateShiftInstruction_$11",
|
|
453
|
-
RotateShiftInstruction_$11_$0_1 = "RotateShiftInstruction_$11_$0_1",
|
|
454
|
-
RotateShiftInstruction_$11_$0_2 = "RotateShiftInstruction_$11_$0_2",
|
|
455
|
-
RotateShiftInstruction_$12 = "RotateShiftInstruction_$12",
|
|
456
|
-
RotateShiftInstruction_$12_$0_1 = "RotateShiftInstruction_$12_$0_1",
|
|
457
|
-
RotateShiftInstruction_$12_$0_2 = "RotateShiftInstruction_$12_$0_2",
|
|
458
|
-
RotateShiftInstruction_$13 = "RotateShiftInstruction_$13",
|
|
459
|
-
RotateShiftInstruction_$13_$0_1 = "RotateShiftInstruction_$13_$0_1",
|
|
460
|
-
RotateShiftInstruction_$13_$0_2 = "RotateShiftInstruction_$13_$0_2",
|
|
461
352
|
BitManipulationInstruction_1 = "BitManipulationInstruction_1",
|
|
462
353
|
BitManipulationInstruction_2 = "BitManipulationInstruction_2",
|
|
463
354
|
BitManipulationInstruction_3 = "BitManipulationInstruction_3",
|
|
@@ -470,24 +361,6 @@ export declare enum ASTKinds {
|
|
|
470
361
|
BitManipulationInstruction_10 = "BitManipulationInstruction_10",
|
|
471
362
|
BitManipulationInstruction_11 = "BitManipulationInstruction_11",
|
|
472
363
|
BitManipulationInstruction_12 = "BitManipulationInstruction_12",
|
|
473
|
-
BitManipulationInstruction_$0 = "BitManipulationInstruction_$0",
|
|
474
|
-
BitManipulationInstruction_$0_$0_1 = "BitManipulationInstruction_$0_$0_1",
|
|
475
|
-
BitManipulationInstruction_$0_$0_2 = "BitManipulationInstruction_$0_$0_2",
|
|
476
|
-
BitManipulationInstruction_$1 = "BitManipulationInstruction_$1",
|
|
477
|
-
BitManipulationInstruction_$1_$0_1 = "BitManipulationInstruction_$1_$0_1",
|
|
478
|
-
BitManipulationInstruction_$1_$0_2 = "BitManipulationInstruction_$1_$0_2",
|
|
479
|
-
BitManipulationInstruction_$2 = "BitManipulationInstruction_$2",
|
|
480
|
-
BitManipulationInstruction_$2_$0_1 = "BitManipulationInstruction_$2_$0_1",
|
|
481
|
-
BitManipulationInstruction_$2_$0_2 = "BitManipulationInstruction_$2_$0_2",
|
|
482
|
-
BitManipulationInstruction_$3 = "BitManipulationInstruction_$3",
|
|
483
|
-
BitManipulationInstruction_$3_$0_1 = "BitManipulationInstruction_$3_$0_1",
|
|
484
|
-
BitManipulationInstruction_$3_$0_2 = "BitManipulationInstruction_$3_$0_2",
|
|
485
|
-
BitManipulationInstruction_$4 = "BitManipulationInstruction_$4",
|
|
486
|
-
BitManipulationInstruction_$4_$0_1 = "BitManipulationInstruction_$4_$0_1",
|
|
487
|
-
BitManipulationInstruction_$4_$0_2 = "BitManipulationInstruction_$4_$0_2",
|
|
488
|
-
BitManipulationInstruction_$5 = "BitManipulationInstruction_$5",
|
|
489
|
-
BitManipulationInstruction_$5_$0_1 = "BitManipulationInstruction_$5_$0_1",
|
|
490
|
-
BitManipulationInstruction_$5_$0_2 = "BitManipulationInstruction_$5_$0_2",
|
|
491
364
|
Offset_1 = "Offset_1",
|
|
492
365
|
Offset_2 = "Offset_2",
|
|
493
366
|
JumpInstruction_1 = "JumpInstruction_1",
|
|
@@ -549,14 +422,14 @@ export declare enum ASTKinds {
|
|
|
549
422
|
SimpleEscapeSequence_$0_2 = "SimpleEscapeSequence_$0_2",
|
|
550
423
|
OctalEscapeSequence = "OctalEscapeSequence",
|
|
551
424
|
HexadecimalEscapeSequence = "HexadecimalEscapeSequence",
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
425
|
+
NoQuoteChar = "NoQuoteChar",
|
|
426
|
+
NoDoubleQuoteChar = "NoDoubleQuoteChar",
|
|
427
|
+
QuottedStr = "QuottedStr",
|
|
428
|
+
QuottedStr_$0_1 = "QuottedStr_$0_1",
|
|
429
|
+
QuottedStr_$0_2 = "QuottedStr_$0_2",
|
|
430
|
+
DoubleQuottedStr = "DoubleQuottedStr",
|
|
431
|
+
DoubleQuottedStr_$0_1 = "DoubleQuottedStr_$0_1",
|
|
432
|
+
DoubleQuottedStr_$0_2 = "DoubleQuottedStr_$0_2",
|
|
560
433
|
Comment = "Comment",
|
|
561
434
|
OriginDirective = "OriginDirective",
|
|
562
435
|
Filename_1 = "Filename_1",
|
|
@@ -565,6 +438,7 @@ export declare enum ASTKinds {
|
|
|
565
438
|
OutputDirective = "OutputDirective",
|
|
566
439
|
OutputDirective_$0 = "OutputDirective_$0",
|
|
567
440
|
DeviceDirective = "DeviceDirective",
|
|
441
|
+
EndDirective = "EndDirective",
|
|
568
442
|
$EOF = "$EOF"
|
|
569
443
|
}
|
|
570
444
|
export interface start {
|
|
@@ -662,8 +536,13 @@ export interface decimal {
|
|
|
662
536
|
kind: ASTKinds.decimal;
|
|
663
537
|
raw: string;
|
|
664
538
|
}
|
|
665
|
-
export
|
|
666
|
-
|
|
539
|
+
export type binary = binary_1 | binary_2;
|
|
540
|
+
export interface binary_1 {
|
|
541
|
+
kind: ASTKinds.binary_1;
|
|
542
|
+
raw: string;
|
|
543
|
+
}
|
|
544
|
+
export interface binary_2 {
|
|
545
|
+
kind: ASTKinds.binary_2;
|
|
667
546
|
raw: string;
|
|
668
547
|
}
|
|
669
548
|
export type binary_$0 = binary_$0_1 | binary_$0_2;
|
|
@@ -678,9 +557,10 @@ export interface octal_2 {
|
|
|
678
557
|
kind: ASTKinds.octal_2;
|
|
679
558
|
raw: string;
|
|
680
559
|
}
|
|
681
|
-
export type octal_$0 = octal_$0_1 | octal_$0_2;
|
|
560
|
+
export type octal_$0 = octal_$0_1 | octal_$0_2 | octal_$0_3;
|
|
682
561
|
export type octal_$0_1 = string;
|
|
683
562
|
export type octal_$0_2 = string;
|
|
563
|
+
export type octal_$0_3 = string;
|
|
684
564
|
export type octal_$1 = octal_$1_1 | octal_$1_2;
|
|
685
565
|
export type octal_$1_1 = string;
|
|
686
566
|
export type octal_$1_2 = string;
|
|
@@ -765,7 +645,7 @@ export interface EqualDirective {
|
|
|
765
645
|
kind: ASTKinds.EqualDirective;
|
|
766
646
|
e: Expression;
|
|
767
647
|
}
|
|
768
|
-
export type Directive = Directive_1 | Directive_2 | Directive_3 | Directive_4;
|
|
648
|
+
export type Directive = Directive_1 | Directive_2 | Directive_3 | Directive_4 | Directive_5;
|
|
769
649
|
export declare class Directive_1 {
|
|
770
650
|
kind: ASTKinds.Directive_1;
|
|
771
651
|
data: DataDirective;
|
|
@@ -794,6 +674,13 @@ export declare class Directive_4 {
|
|
|
794
674
|
address: Address;
|
|
795
675
|
constructor(directive: DeviceDirective);
|
|
796
676
|
}
|
|
677
|
+
export declare class Directive_5 {
|
|
678
|
+
kind: ASTKinds.Directive_5;
|
|
679
|
+
directive: EndDirective;
|
|
680
|
+
elements: AstElements;
|
|
681
|
+
address: Address;
|
|
682
|
+
constructor(directive: EndDirective);
|
|
683
|
+
}
|
|
797
684
|
export type ForbiddenNames = ForbiddenNames_1 | ForbiddenNames_2 | ForbiddenNames_3 | ForbiddenNames_4 | ForbiddenNames_5;
|
|
798
685
|
export type ForbiddenNames_1 = string;
|
|
799
686
|
export type ForbiddenNames_2 = string;
|
|
@@ -940,6 +827,32 @@ export interface Reg8 {
|
|
|
940
827
|
kind: ASTKinds.Reg8;
|
|
941
828
|
reg: r;
|
|
942
829
|
}
|
|
830
|
+
export interface IX {
|
|
831
|
+
kind: ASTKinds.IX;
|
|
832
|
+
offset: Nullable<IX_$0>;
|
|
833
|
+
}
|
|
834
|
+
export interface IX_$0 {
|
|
835
|
+
kind: ASTKinds.IX_$0;
|
|
836
|
+
s: IX_$0_$0;
|
|
837
|
+
pos: PosInfo;
|
|
838
|
+
d: Expression;
|
|
839
|
+
}
|
|
840
|
+
export type IX_$0_$0 = IX_$0_$0_1 | IX_$0_$0_2;
|
|
841
|
+
export type IX_$0_$0_1 = string;
|
|
842
|
+
export type IX_$0_$0_2 = string;
|
|
843
|
+
export interface IY {
|
|
844
|
+
kind: ASTKinds.IY;
|
|
845
|
+
offset: Nullable<IY_$0>;
|
|
846
|
+
}
|
|
847
|
+
export interface IY_$0 {
|
|
848
|
+
kind: ASTKinds.IY_$0;
|
|
849
|
+
s: IY_$0_$0;
|
|
850
|
+
pos: PosInfo;
|
|
851
|
+
d: Expression;
|
|
852
|
+
}
|
|
853
|
+
export type IY_$0_$0 = IY_$0_$0_1 | IY_$0_$0_2;
|
|
854
|
+
export type IY_$0_$0_1 = string;
|
|
855
|
+
export type IY_$0_$0_2 = string;
|
|
943
856
|
export type Instruction = Instruction_1 | Instruction_2 | Instruction_3 | Instruction_4 | Instruction_5 | Instruction_6 | Instruction_7 | Instruction_8 | Instruction_9 | Instruction_10 | Instruction_11 | Instruction_12 | Instruction_13 | Instruction_14 | Instruction_15 | Instruction_16;
|
|
944
857
|
export type Instruction_1 = Load8Instruction;
|
|
945
858
|
export type Instruction_2 = Load16Instruction;
|
|
@@ -974,16 +887,16 @@ export declare class Load8Instruction_2 {
|
|
|
974
887
|
export declare class Load8Instruction_3 {
|
|
975
888
|
kind: ASTKinds.Load8Instruction_3;
|
|
976
889
|
r: r;
|
|
977
|
-
|
|
890
|
+
i: IX;
|
|
978
891
|
elements: AstElements;
|
|
979
|
-
constructor(r: r,
|
|
892
|
+
constructor(r: r, i: IX);
|
|
980
893
|
}
|
|
981
894
|
export declare class Load8Instruction_4 {
|
|
982
895
|
kind: ASTKinds.Load8Instruction_4;
|
|
983
896
|
r: r;
|
|
984
|
-
|
|
897
|
+
i: IY;
|
|
985
898
|
elements: AstElements;
|
|
986
|
-
constructor(r: r,
|
|
899
|
+
constructor(r: r, i: IY);
|
|
987
900
|
}
|
|
988
901
|
export declare class Load8Instruction_5 {
|
|
989
902
|
kind: ASTKinds.Load8Instruction_5;
|
|
@@ -993,17 +906,17 @@ export declare class Load8Instruction_5 {
|
|
|
993
906
|
}
|
|
994
907
|
export declare class Load8Instruction_6 {
|
|
995
908
|
kind: ASTKinds.Load8Instruction_6;
|
|
996
|
-
|
|
909
|
+
i: IX;
|
|
997
910
|
r: r;
|
|
998
911
|
elements: AstElements;
|
|
999
|
-
constructor(
|
|
912
|
+
constructor(i: IX, r: r);
|
|
1000
913
|
}
|
|
1001
914
|
export declare class Load8Instruction_7 {
|
|
1002
915
|
kind: ASTKinds.Load8Instruction_7;
|
|
1003
|
-
|
|
916
|
+
i: IY;
|
|
1004
917
|
r: r;
|
|
1005
918
|
elements: AstElements;
|
|
1006
|
-
constructor(
|
|
919
|
+
constructor(i: IY, r: r);
|
|
1007
920
|
}
|
|
1008
921
|
export declare class Load8Instruction_8 {
|
|
1009
922
|
kind: ASTKinds.Load8Instruction_8;
|
|
@@ -1014,19 +927,19 @@ export declare class Load8Instruction_8 {
|
|
|
1014
927
|
}
|
|
1015
928
|
export declare class Load8Instruction_9 {
|
|
1016
929
|
kind: ASTKinds.Load8Instruction_9;
|
|
1017
|
-
|
|
930
|
+
i: IX;
|
|
1018
931
|
pos: PosInfo;
|
|
1019
932
|
n: Expression;
|
|
1020
933
|
elements: AstElements;
|
|
1021
|
-
constructor(
|
|
934
|
+
constructor(i: IX, pos: PosInfo, n: Expression);
|
|
1022
935
|
}
|
|
1023
936
|
export declare class Load8Instruction_10 {
|
|
1024
937
|
kind: ASTKinds.Load8Instruction_10;
|
|
1025
|
-
|
|
938
|
+
i: IY;
|
|
1026
939
|
pos: PosInfo;
|
|
1027
940
|
n: Expression;
|
|
1028
941
|
elements: AstElements;
|
|
1029
|
-
constructor(
|
|
942
|
+
constructor(i: IY, pos: PosInfo, n: Expression);
|
|
1030
943
|
}
|
|
1031
944
|
export declare class Load8Instruction_11 {
|
|
1032
945
|
kind: ASTKinds.Load8Instruction_11;
|
|
@@ -1090,60 +1003,6 @@ export declare class Load8Instruction_21 {
|
|
|
1090
1003
|
elements: AstElements;
|
|
1091
1004
|
constructor(r: Reg8, pos: PosInfo, n: Expression);
|
|
1092
1005
|
}
|
|
1093
|
-
export interface Load8Instruction_$0 {
|
|
1094
|
-
kind: ASTKinds.Load8Instruction_$0;
|
|
1095
|
-
s: Load8Instruction_$0_$0;
|
|
1096
|
-
pos: PosInfo;
|
|
1097
|
-
d: Expression;
|
|
1098
|
-
}
|
|
1099
|
-
export type Load8Instruction_$0_$0 = Load8Instruction_$0_$0_1 | Load8Instruction_$0_$0_2;
|
|
1100
|
-
export type Load8Instruction_$0_$0_1 = string;
|
|
1101
|
-
export type Load8Instruction_$0_$0_2 = string;
|
|
1102
|
-
export interface Load8Instruction_$1 {
|
|
1103
|
-
kind: ASTKinds.Load8Instruction_$1;
|
|
1104
|
-
s: Load8Instruction_$1_$0;
|
|
1105
|
-
pos: PosInfo;
|
|
1106
|
-
d: Expression;
|
|
1107
|
-
}
|
|
1108
|
-
export type Load8Instruction_$1_$0 = Load8Instruction_$1_$0_1 | Load8Instruction_$1_$0_2;
|
|
1109
|
-
export type Load8Instruction_$1_$0_1 = string;
|
|
1110
|
-
export type Load8Instruction_$1_$0_2 = string;
|
|
1111
|
-
export interface Load8Instruction_$2 {
|
|
1112
|
-
kind: ASTKinds.Load8Instruction_$2;
|
|
1113
|
-
s: Load8Instruction_$2_$0;
|
|
1114
|
-
pos: PosInfo;
|
|
1115
|
-
d: Expression;
|
|
1116
|
-
}
|
|
1117
|
-
export type Load8Instruction_$2_$0 = Load8Instruction_$2_$0_1 | Load8Instruction_$2_$0_2;
|
|
1118
|
-
export type Load8Instruction_$2_$0_1 = string;
|
|
1119
|
-
export type Load8Instruction_$2_$0_2 = string;
|
|
1120
|
-
export interface Load8Instruction_$3 {
|
|
1121
|
-
kind: ASTKinds.Load8Instruction_$3;
|
|
1122
|
-
s: Load8Instruction_$3_$0;
|
|
1123
|
-
pos: PosInfo;
|
|
1124
|
-
d: Expression;
|
|
1125
|
-
}
|
|
1126
|
-
export type Load8Instruction_$3_$0 = Load8Instruction_$3_$0_1 | Load8Instruction_$3_$0_2;
|
|
1127
|
-
export type Load8Instruction_$3_$0_1 = string;
|
|
1128
|
-
export type Load8Instruction_$3_$0_2 = string;
|
|
1129
|
-
export interface Load8Instruction_$4 {
|
|
1130
|
-
kind: ASTKinds.Load8Instruction_$4;
|
|
1131
|
-
s: Load8Instruction_$4_$0;
|
|
1132
|
-
pos: PosInfo;
|
|
1133
|
-
d: Expression;
|
|
1134
|
-
}
|
|
1135
|
-
export type Load8Instruction_$4_$0 = Load8Instruction_$4_$0_1 | Load8Instruction_$4_$0_2;
|
|
1136
|
-
export type Load8Instruction_$4_$0_1 = string;
|
|
1137
|
-
export type Load8Instruction_$4_$0_2 = string;
|
|
1138
|
-
export interface Load8Instruction_$5 {
|
|
1139
|
-
kind: ASTKinds.Load8Instruction_$5;
|
|
1140
|
-
s: Load8Instruction_$5_$0;
|
|
1141
|
-
pos: PosInfo;
|
|
1142
|
-
d: Expression;
|
|
1143
|
-
}
|
|
1144
|
-
export type Load8Instruction_$5_$0 = Load8Instruction_$5_$0_1 | Load8Instruction_$5_$0_2;
|
|
1145
|
-
export type Load8Instruction_$5_$0_1 = string;
|
|
1146
|
-
export type Load8Instruction_$5_$0_2 = string;
|
|
1147
1006
|
export type Load16Instruction = Load16Instruction_1 | Load16Instruction_2 | Load16Instruction_3 | Load16Instruction_4 | Load16Instruction_5 | Load16Instruction_6 | Load16Instruction_7 | Load16Instruction_8 | Load16Instruction_9 | Load16Instruction_10 | Load16Instruction_11 | Load16Instruction_12 | Load16Instruction_13 | Load16Instruction_14 | Load16Instruction_15 | Load16Instruction_16 | Load16Instruction_17 | Load16Instruction_18 | Load16Instruction_19 | Load16Instruction_20;
|
|
1148
1007
|
export declare class Load16Instruction_1 {
|
|
1149
1008
|
kind: ASTKinds.Load16Instruction_1;
|
|
@@ -1352,15 +1211,15 @@ export declare class ArithmeticLogic8Instruction_1 {
|
|
|
1352
1211
|
}
|
|
1353
1212
|
export declare class ArithmeticLogic8Instruction_2 {
|
|
1354
1213
|
kind: ASTKinds.ArithmeticLogic8Instruction_2;
|
|
1355
|
-
|
|
1214
|
+
i: IX;
|
|
1356
1215
|
elements: AstElements;
|
|
1357
|
-
constructor(
|
|
1216
|
+
constructor(i: IX);
|
|
1358
1217
|
}
|
|
1359
1218
|
export declare class ArithmeticLogic8Instruction_3 {
|
|
1360
1219
|
kind: ASTKinds.ArithmeticLogic8Instruction_3;
|
|
1361
|
-
|
|
1220
|
+
i: IY;
|
|
1362
1221
|
elements: AstElements;
|
|
1363
|
-
constructor(
|
|
1222
|
+
constructor(i: IY);
|
|
1364
1223
|
}
|
|
1365
1224
|
export declare class ArithmeticLogic8Instruction_4 {
|
|
1366
1225
|
kind: ASTKinds.ArithmeticLogic8Instruction_4;
|
|
@@ -1382,15 +1241,15 @@ export declare class ArithmeticLogic8Instruction_6 {
|
|
|
1382
1241
|
}
|
|
1383
1242
|
export declare class ArithmeticLogic8Instruction_7 {
|
|
1384
1243
|
kind: ASTKinds.ArithmeticLogic8Instruction_7;
|
|
1385
|
-
|
|
1244
|
+
i: IX;
|
|
1386
1245
|
elements: AstElements;
|
|
1387
|
-
constructor(
|
|
1246
|
+
constructor(i: IX);
|
|
1388
1247
|
}
|
|
1389
1248
|
export declare class ArithmeticLogic8Instruction_8 {
|
|
1390
1249
|
kind: ASTKinds.ArithmeticLogic8Instruction_8;
|
|
1391
|
-
|
|
1250
|
+
i: IY;
|
|
1392
1251
|
elements: AstElements;
|
|
1393
|
-
constructor(
|
|
1252
|
+
constructor(i: IY);
|
|
1394
1253
|
}
|
|
1395
1254
|
export declare class ArithmeticLogic8Instruction_9 {
|
|
1396
1255
|
kind: ASTKinds.ArithmeticLogic8Instruction_9;
|
|
@@ -1412,15 +1271,15 @@ export declare class ArithmeticLogic8Instruction_11 {
|
|
|
1412
1271
|
}
|
|
1413
1272
|
export declare class ArithmeticLogic8Instruction_12 {
|
|
1414
1273
|
kind: ASTKinds.ArithmeticLogic8Instruction_12;
|
|
1415
|
-
|
|
1274
|
+
i: IX;
|
|
1416
1275
|
elements: AstElements;
|
|
1417
|
-
constructor(
|
|
1276
|
+
constructor(i: IX);
|
|
1418
1277
|
}
|
|
1419
1278
|
export declare class ArithmeticLogic8Instruction_13 {
|
|
1420
1279
|
kind: ASTKinds.ArithmeticLogic8Instruction_13;
|
|
1421
|
-
|
|
1280
|
+
i: IY;
|
|
1422
1281
|
elements: AstElements;
|
|
1423
|
-
constructor(
|
|
1282
|
+
constructor(i: IY);
|
|
1424
1283
|
}
|
|
1425
1284
|
export declare class ArithmeticLogic8Instruction_14 {
|
|
1426
1285
|
kind: ASTKinds.ArithmeticLogic8Instruction_14;
|
|
@@ -1442,15 +1301,15 @@ export declare class ArithmeticLogic8Instruction_16 {
|
|
|
1442
1301
|
}
|
|
1443
1302
|
export declare class ArithmeticLogic8Instruction_17 {
|
|
1444
1303
|
kind: ASTKinds.ArithmeticLogic8Instruction_17;
|
|
1445
|
-
|
|
1304
|
+
i: IX;
|
|
1446
1305
|
elements: AstElements;
|
|
1447
|
-
constructor(
|
|
1306
|
+
constructor(i: IX);
|
|
1448
1307
|
}
|
|
1449
1308
|
export declare class ArithmeticLogic8Instruction_18 {
|
|
1450
1309
|
kind: ASTKinds.ArithmeticLogic8Instruction_18;
|
|
1451
|
-
|
|
1310
|
+
i: IY;
|
|
1452
1311
|
elements: AstElements;
|
|
1453
|
-
constructor(
|
|
1312
|
+
constructor(i: IY);
|
|
1454
1313
|
}
|
|
1455
1314
|
export declare class ArithmeticLogic8Instruction_19 {
|
|
1456
1315
|
kind: ASTKinds.ArithmeticLogic8Instruction_19;
|
|
@@ -1472,15 +1331,15 @@ export declare class ArithmeticLogic8Instruction_21 {
|
|
|
1472
1331
|
}
|
|
1473
1332
|
export declare class ArithmeticLogic8Instruction_22 {
|
|
1474
1333
|
kind: ASTKinds.ArithmeticLogic8Instruction_22;
|
|
1475
|
-
|
|
1334
|
+
i: IX;
|
|
1476
1335
|
elements: AstElements;
|
|
1477
|
-
constructor(
|
|
1336
|
+
constructor(i: IX);
|
|
1478
1337
|
}
|
|
1479
1338
|
export declare class ArithmeticLogic8Instruction_23 {
|
|
1480
1339
|
kind: ASTKinds.ArithmeticLogic8Instruction_23;
|
|
1481
|
-
|
|
1340
|
+
i: IY;
|
|
1482
1341
|
elements: AstElements;
|
|
1483
|
-
constructor(
|
|
1342
|
+
constructor(i: IY);
|
|
1484
1343
|
}
|
|
1485
1344
|
export declare class ArithmeticLogic8Instruction_24 {
|
|
1486
1345
|
kind: ASTKinds.ArithmeticLogic8Instruction_24;
|
|
@@ -1502,15 +1361,15 @@ export declare class ArithmeticLogic8Instruction_26 {
|
|
|
1502
1361
|
}
|
|
1503
1362
|
export declare class ArithmeticLogic8Instruction_27 {
|
|
1504
1363
|
kind: ASTKinds.ArithmeticLogic8Instruction_27;
|
|
1505
|
-
|
|
1364
|
+
i: IX;
|
|
1506
1365
|
elements: AstElements;
|
|
1507
|
-
constructor(
|
|
1366
|
+
constructor(i: IX);
|
|
1508
1367
|
}
|
|
1509
1368
|
export declare class ArithmeticLogic8Instruction_28 {
|
|
1510
1369
|
kind: ASTKinds.ArithmeticLogic8Instruction_28;
|
|
1511
|
-
|
|
1370
|
+
i: IY;
|
|
1512
1371
|
elements: AstElements;
|
|
1513
|
-
constructor(
|
|
1372
|
+
constructor(i: IY);
|
|
1514
1373
|
}
|
|
1515
1374
|
export declare class ArithmeticLogic8Instruction_29 {
|
|
1516
1375
|
kind: ASTKinds.ArithmeticLogic8Instruction_29;
|
|
@@ -1532,15 +1391,15 @@ export declare class ArithmeticLogic8Instruction_31 {
|
|
|
1532
1391
|
}
|
|
1533
1392
|
export declare class ArithmeticLogic8Instruction_32 {
|
|
1534
1393
|
kind: ASTKinds.ArithmeticLogic8Instruction_32;
|
|
1535
|
-
|
|
1394
|
+
i: IX;
|
|
1536
1395
|
elements: AstElements;
|
|
1537
|
-
constructor(
|
|
1396
|
+
constructor(i: IX);
|
|
1538
1397
|
}
|
|
1539
1398
|
export declare class ArithmeticLogic8Instruction_33 {
|
|
1540
1399
|
kind: ASTKinds.ArithmeticLogic8Instruction_33;
|
|
1541
|
-
|
|
1400
|
+
i: IY;
|
|
1542
1401
|
elements: AstElements;
|
|
1543
|
-
constructor(
|
|
1402
|
+
constructor(i: IY);
|
|
1544
1403
|
}
|
|
1545
1404
|
export declare class ArithmeticLogic8Instruction_34 {
|
|
1546
1405
|
kind: ASTKinds.ArithmeticLogic8Instruction_34;
|
|
@@ -1562,15 +1421,15 @@ export declare class ArithmeticLogic8Instruction_36 {
|
|
|
1562
1421
|
}
|
|
1563
1422
|
export declare class ArithmeticLogic8Instruction_37 {
|
|
1564
1423
|
kind: ASTKinds.ArithmeticLogic8Instruction_37;
|
|
1565
|
-
|
|
1424
|
+
i: IX;
|
|
1566
1425
|
elements: AstElements;
|
|
1567
|
-
constructor(
|
|
1426
|
+
constructor(i: IX);
|
|
1568
1427
|
}
|
|
1569
1428
|
export declare class ArithmeticLogic8Instruction_38 {
|
|
1570
1429
|
kind: ASTKinds.ArithmeticLogic8Instruction_38;
|
|
1571
|
-
|
|
1430
|
+
i: IY;
|
|
1572
1431
|
elements: AstElements;
|
|
1573
|
-
constructor(
|
|
1432
|
+
constructor(i: IY);
|
|
1574
1433
|
}
|
|
1575
1434
|
export declare class ArithmeticLogic8Instruction_39 {
|
|
1576
1435
|
kind: ASTKinds.ArithmeticLogic8Instruction_39;
|
|
@@ -1593,25 +1452,13 @@ export interface ArithmeticLogic8Instruction_$1 {
|
|
|
1593
1452
|
}
|
|
1594
1453
|
export interface ArithmeticLogic8Instruction_$2 {
|
|
1595
1454
|
kind: ASTKinds.ArithmeticLogic8Instruction_$2;
|
|
1596
|
-
s: ArithmeticLogic8Instruction_$2_$0;
|
|
1597
|
-
pos: PosInfo;
|
|
1598
|
-
d: Expression;
|
|
1599
1455
|
}
|
|
1600
|
-
export type ArithmeticLogic8Instruction_$2_$0 = ArithmeticLogic8Instruction_$2_$0_1 | ArithmeticLogic8Instruction_$2_$0_2;
|
|
1601
|
-
export type ArithmeticLogic8Instruction_$2_$0_1 = string;
|
|
1602
|
-
export type ArithmeticLogic8Instruction_$2_$0_2 = string;
|
|
1603
1456
|
export interface ArithmeticLogic8Instruction_$3 {
|
|
1604
1457
|
kind: ASTKinds.ArithmeticLogic8Instruction_$3;
|
|
1605
1458
|
}
|
|
1606
1459
|
export interface ArithmeticLogic8Instruction_$4 {
|
|
1607
1460
|
kind: ASTKinds.ArithmeticLogic8Instruction_$4;
|
|
1608
|
-
s: ArithmeticLogic8Instruction_$4_$0;
|
|
1609
|
-
pos: PosInfo;
|
|
1610
|
-
d: Expression;
|
|
1611
1461
|
}
|
|
1612
|
-
export type ArithmeticLogic8Instruction_$4_$0 = ArithmeticLogic8Instruction_$4_$0_1 | ArithmeticLogic8Instruction_$4_$0_2;
|
|
1613
|
-
export type ArithmeticLogic8Instruction_$4_$0_1 = string;
|
|
1614
|
-
export type ArithmeticLogic8Instruction_$4_$0_2 = string;
|
|
1615
1462
|
export interface ArithmeticLogic8Instruction_$5 {
|
|
1616
1463
|
kind: ASTKinds.ArithmeticLogic8Instruction_$5;
|
|
1617
1464
|
}
|
|
@@ -1626,25 +1473,13 @@ export interface ArithmeticLogic8Instruction_$8 {
|
|
|
1626
1473
|
}
|
|
1627
1474
|
export interface ArithmeticLogic8Instruction_$9 {
|
|
1628
1475
|
kind: ASTKinds.ArithmeticLogic8Instruction_$9;
|
|
1629
|
-
s: ArithmeticLogic8Instruction_$9_$0;
|
|
1630
|
-
pos: PosInfo;
|
|
1631
|
-
d: Expression;
|
|
1632
1476
|
}
|
|
1633
|
-
export type ArithmeticLogic8Instruction_$9_$0 = ArithmeticLogic8Instruction_$9_$0_1 | ArithmeticLogic8Instruction_$9_$0_2;
|
|
1634
|
-
export type ArithmeticLogic8Instruction_$9_$0_1 = string;
|
|
1635
|
-
export type ArithmeticLogic8Instruction_$9_$0_2 = string;
|
|
1636
1477
|
export interface ArithmeticLogic8Instruction_$10 {
|
|
1637
1478
|
kind: ASTKinds.ArithmeticLogic8Instruction_$10;
|
|
1638
1479
|
}
|
|
1639
1480
|
export interface ArithmeticLogic8Instruction_$11 {
|
|
1640
1481
|
kind: ASTKinds.ArithmeticLogic8Instruction_$11;
|
|
1641
|
-
s: ArithmeticLogic8Instruction_$11_$0;
|
|
1642
|
-
pos: PosInfo;
|
|
1643
|
-
d: Expression;
|
|
1644
1482
|
}
|
|
1645
|
-
export type ArithmeticLogic8Instruction_$11_$0 = ArithmeticLogic8Instruction_$11_$0_1 | ArithmeticLogic8Instruction_$11_$0_2;
|
|
1646
|
-
export type ArithmeticLogic8Instruction_$11_$0_1 = string;
|
|
1647
|
-
export type ArithmeticLogic8Instruction_$11_$0_2 = string;
|
|
1648
1483
|
export interface ArithmeticLogic8Instruction_$12 {
|
|
1649
1484
|
kind: ASTKinds.ArithmeticLogic8Instruction_$12;
|
|
1650
1485
|
}
|
|
@@ -1659,25 +1494,13 @@ export interface ArithmeticLogic8Instruction_$15 {
|
|
|
1659
1494
|
}
|
|
1660
1495
|
export interface ArithmeticLogic8Instruction_$16 {
|
|
1661
1496
|
kind: ASTKinds.ArithmeticLogic8Instruction_$16;
|
|
1662
|
-
s: ArithmeticLogic8Instruction_$16_$0;
|
|
1663
|
-
pos: PosInfo;
|
|
1664
|
-
d: Expression;
|
|
1665
1497
|
}
|
|
1666
|
-
export type ArithmeticLogic8Instruction_$16_$0 = ArithmeticLogic8Instruction_$16_$0_1 | ArithmeticLogic8Instruction_$16_$0_2;
|
|
1667
|
-
export type ArithmeticLogic8Instruction_$16_$0_1 = string;
|
|
1668
|
-
export type ArithmeticLogic8Instruction_$16_$0_2 = string;
|
|
1669
1498
|
export interface ArithmeticLogic8Instruction_$17 {
|
|
1670
1499
|
kind: ASTKinds.ArithmeticLogic8Instruction_$17;
|
|
1671
1500
|
}
|
|
1672
1501
|
export interface ArithmeticLogic8Instruction_$18 {
|
|
1673
1502
|
kind: ASTKinds.ArithmeticLogic8Instruction_$18;
|
|
1674
|
-
s: ArithmeticLogic8Instruction_$18_$0;
|
|
1675
|
-
pos: PosInfo;
|
|
1676
|
-
d: Expression;
|
|
1677
1503
|
}
|
|
1678
|
-
export type ArithmeticLogic8Instruction_$18_$0 = ArithmeticLogic8Instruction_$18_$0_1 | ArithmeticLogic8Instruction_$18_$0_2;
|
|
1679
|
-
export type ArithmeticLogic8Instruction_$18_$0_1 = string;
|
|
1680
|
-
export type ArithmeticLogic8Instruction_$18_$0_2 = string;
|
|
1681
1504
|
export interface ArithmeticLogic8Instruction_$19 {
|
|
1682
1505
|
kind: ASTKinds.ArithmeticLogic8Instruction_$19;
|
|
1683
1506
|
}
|
|
@@ -1692,25 +1515,13 @@ export interface ArithmeticLogic8Instruction_$22 {
|
|
|
1692
1515
|
}
|
|
1693
1516
|
export interface ArithmeticLogic8Instruction_$23 {
|
|
1694
1517
|
kind: ASTKinds.ArithmeticLogic8Instruction_$23;
|
|
1695
|
-
s: ArithmeticLogic8Instruction_$23_$0;
|
|
1696
|
-
pos: PosInfo;
|
|
1697
|
-
d: Expression;
|
|
1698
1518
|
}
|
|
1699
|
-
export type ArithmeticLogic8Instruction_$23_$0 = ArithmeticLogic8Instruction_$23_$0_1 | ArithmeticLogic8Instruction_$23_$0_2;
|
|
1700
|
-
export type ArithmeticLogic8Instruction_$23_$0_1 = string;
|
|
1701
|
-
export type ArithmeticLogic8Instruction_$23_$0_2 = string;
|
|
1702
1519
|
export interface ArithmeticLogic8Instruction_$24 {
|
|
1703
1520
|
kind: ASTKinds.ArithmeticLogic8Instruction_$24;
|
|
1704
1521
|
}
|
|
1705
1522
|
export interface ArithmeticLogic8Instruction_$25 {
|
|
1706
1523
|
kind: ASTKinds.ArithmeticLogic8Instruction_$25;
|
|
1707
|
-
s: ArithmeticLogic8Instruction_$25_$0;
|
|
1708
|
-
pos: PosInfo;
|
|
1709
|
-
d: Expression;
|
|
1710
1524
|
}
|
|
1711
|
-
export type ArithmeticLogic8Instruction_$25_$0 = ArithmeticLogic8Instruction_$25_$0_1 | ArithmeticLogic8Instruction_$25_$0_2;
|
|
1712
|
-
export type ArithmeticLogic8Instruction_$25_$0_1 = string;
|
|
1713
|
-
export type ArithmeticLogic8Instruction_$25_$0_2 = string;
|
|
1714
1525
|
export interface ArithmeticLogic8Instruction_$26 {
|
|
1715
1526
|
kind: ASTKinds.ArithmeticLogic8Instruction_$26;
|
|
1716
1527
|
}
|
|
@@ -1725,25 +1536,13 @@ export interface ArithmeticLogic8Instruction_$29 {
|
|
|
1725
1536
|
}
|
|
1726
1537
|
export interface ArithmeticLogic8Instruction_$30 {
|
|
1727
1538
|
kind: ASTKinds.ArithmeticLogic8Instruction_$30;
|
|
1728
|
-
s: ArithmeticLogic8Instruction_$30_$0;
|
|
1729
|
-
pos: PosInfo;
|
|
1730
|
-
d: Expression;
|
|
1731
1539
|
}
|
|
1732
|
-
export type ArithmeticLogic8Instruction_$30_$0 = ArithmeticLogic8Instruction_$30_$0_1 | ArithmeticLogic8Instruction_$30_$0_2;
|
|
1733
|
-
export type ArithmeticLogic8Instruction_$30_$0_1 = string;
|
|
1734
|
-
export type ArithmeticLogic8Instruction_$30_$0_2 = string;
|
|
1735
1540
|
export interface ArithmeticLogic8Instruction_$31 {
|
|
1736
1541
|
kind: ASTKinds.ArithmeticLogic8Instruction_$31;
|
|
1737
1542
|
}
|
|
1738
1543
|
export interface ArithmeticLogic8Instruction_$32 {
|
|
1739
1544
|
kind: ASTKinds.ArithmeticLogic8Instruction_$32;
|
|
1740
|
-
s: ArithmeticLogic8Instruction_$32_$0;
|
|
1741
|
-
pos: PosInfo;
|
|
1742
|
-
d: Expression;
|
|
1743
1545
|
}
|
|
1744
|
-
export type ArithmeticLogic8Instruction_$32_$0 = ArithmeticLogic8Instruction_$32_$0_1 | ArithmeticLogic8Instruction_$32_$0_2;
|
|
1745
|
-
export type ArithmeticLogic8Instruction_$32_$0_1 = string;
|
|
1746
|
-
export type ArithmeticLogic8Instruction_$32_$0_2 = string;
|
|
1747
1546
|
export interface ArithmeticLogic8Instruction_$33 {
|
|
1748
1547
|
kind: ASTKinds.ArithmeticLogic8Instruction_$33;
|
|
1749
1548
|
}
|
|
@@ -1758,96 +1557,12 @@ export interface ArithmeticLogic8Instruction_$36 {
|
|
|
1758
1557
|
}
|
|
1759
1558
|
export interface ArithmeticLogic8Instruction_$37 {
|
|
1760
1559
|
kind: ASTKinds.ArithmeticLogic8Instruction_$37;
|
|
1761
|
-
s: ArithmeticLogic8Instruction_$37_$0;
|
|
1762
|
-
pos: PosInfo;
|
|
1763
|
-
d: Expression;
|
|
1764
1560
|
}
|
|
1765
|
-
export type ArithmeticLogic8Instruction_$37_$0 = ArithmeticLogic8Instruction_$37_$0_1 | ArithmeticLogic8Instruction_$37_$0_2;
|
|
1766
|
-
export type ArithmeticLogic8Instruction_$37_$0_1 = string;
|
|
1767
|
-
export type ArithmeticLogic8Instruction_$37_$0_2 = string;
|
|
1768
1561
|
export interface ArithmeticLogic8Instruction_$38 {
|
|
1769
1562
|
kind: ASTKinds.ArithmeticLogic8Instruction_$38;
|
|
1770
1563
|
}
|
|
1771
1564
|
export interface ArithmeticLogic8Instruction_$39 {
|
|
1772
1565
|
kind: ASTKinds.ArithmeticLogic8Instruction_$39;
|
|
1773
|
-
s: ArithmeticLogic8Instruction_$39_$0;
|
|
1774
|
-
pos: PosInfo;
|
|
1775
|
-
d: Expression;
|
|
1776
|
-
}
|
|
1777
|
-
export type ArithmeticLogic8Instruction_$39_$0 = ArithmeticLogic8Instruction_$39_$0_1 | ArithmeticLogic8Instruction_$39_$0_2;
|
|
1778
|
-
export type ArithmeticLogic8Instruction_$39_$0_1 = string;
|
|
1779
|
-
export type ArithmeticLogic8Instruction_$39_$0_2 = string;
|
|
1780
|
-
export interface ArithmeticLogic8Instruction_$40 {
|
|
1781
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$40;
|
|
1782
|
-
}
|
|
1783
|
-
export interface ArithmeticLogic8Instruction_$41 {
|
|
1784
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$41;
|
|
1785
|
-
}
|
|
1786
|
-
export interface ArithmeticLogic8Instruction_$42 {
|
|
1787
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$42;
|
|
1788
|
-
}
|
|
1789
|
-
export interface ArithmeticLogic8Instruction_$43 {
|
|
1790
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$43;
|
|
1791
|
-
}
|
|
1792
|
-
export interface ArithmeticLogic8Instruction_$44 {
|
|
1793
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$44;
|
|
1794
|
-
s: ArithmeticLogic8Instruction_$44_$0;
|
|
1795
|
-
pos: PosInfo;
|
|
1796
|
-
d: Expression;
|
|
1797
|
-
}
|
|
1798
|
-
export type ArithmeticLogic8Instruction_$44_$0 = ArithmeticLogic8Instruction_$44_$0_1 | ArithmeticLogic8Instruction_$44_$0_2;
|
|
1799
|
-
export type ArithmeticLogic8Instruction_$44_$0_1 = string;
|
|
1800
|
-
export type ArithmeticLogic8Instruction_$44_$0_2 = string;
|
|
1801
|
-
export interface ArithmeticLogic8Instruction_$45 {
|
|
1802
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$45;
|
|
1803
|
-
}
|
|
1804
|
-
export interface ArithmeticLogic8Instruction_$46 {
|
|
1805
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$46;
|
|
1806
|
-
s: ArithmeticLogic8Instruction_$46_$0;
|
|
1807
|
-
pos: PosInfo;
|
|
1808
|
-
d: Expression;
|
|
1809
|
-
}
|
|
1810
|
-
export type ArithmeticLogic8Instruction_$46_$0 = ArithmeticLogic8Instruction_$46_$0_1 | ArithmeticLogic8Instruction_$46_$0_2;
|
|
1811
|
-
export type ArithmeticLogic8Instruction_$46_$0_1 = string;
|
|
1812
|
-
export type ArithmeticLogic8Instruction_$46_$0_2 = string;
|
|
1813
|
-
export interface ArithmeticLogic8Instruction_$47 {
|
|
1814
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$47;
|
|
1815
|
-
}
|
|
1816
|
-
export interface ArithmeticLogic8Instruction_$48 {
|
|
1817
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$48;
|
|
1818
|
-
}
|
|
1819
|
-
export interface ArithmeticLogic8Instruction_$49 {
|
|
1820
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$49;
|
|
1821
|
-
}
|
|
1822
|
-
export interface ArithmeticLogic8Instruction_$50 {
|
|
1823
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$50;
|
|
1824
|
-
}
|
|
1825
|
-
export interface ArithmeticLogic8Instruction_$51 {
|
|
1826
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$51;
|
|
1827
|
-
s: ArithmeticLogic8Instruction_$51_$0;
|
|
1828
|
-
pos: PosInfo;
|
|
1829
|
-
d: Expression;
|
|
1830
|
-
}
|
|
1831
|
-
export type ArithmeticLogic8Instruction_$51_$0 = ArithmeticLogic8Instruction_$51_$0_1 | ArithmeticLogic8Instruction_$51_$0_2;
|
|
1832
|
-
export type ArithmeticLogic8Instruction_$51_$0_1 = string;
|
|
1833
|
-
export type ArithmeticLogic8Instruction_$51_$0_2 = string;
|
|
1834
|
-
export interface ArithmeticLogic8Instruction_$52 {
|
|
1835
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$52;
|
|
1836
|
-
}
|
|
1837
|
-
export interface ArithmeticLogic8Instruction_$53 {
|
|
1838
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$53;
|
|
1839
|
-
s: ArithmeticLogic8Instruction_$53_$0;
|
|
1840
|
-
pos: PosInfo;
|
|
1841
|
-
d: Expression;
|
|
1842
|
-
}
|
|
1843
|
-
export type ArithmeticLogic8Instruction_$53_$0 = ArithmeticLogic8Instruction_$53_$0_1 | ArithmeticLogic8Instruction_$53_$0_2;
|
|
1844
|
-
export type ArithmeticLogic8Instruction_$53_$0_1 = string;
|
|
1845
|
-
export type ArithmeticLogic8Instruction_$53_$0_2 = string;
|
|
1846
|
-
export interface ArithmeticLogic8Instruction_$54 {
|
|
1847
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$54;
|
|
1848
|
-
}
|
|
1849
|
-
export interface ArithmeticLogic8Instruction_$55 {
|
|
1850
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$55;
|
|
1851
1566
|
}
|
|
1852
1567
|
export type IncrementDecrement8Instruction = IncrementDecrement8Instruction_1 | IncrementDecrement8Instruction_2 | IncrementDecrement8Instruction_3 | IncrementDecrement8Instruction_4 | IncrementDecrement8Instruction_5 | IncrementDecrement8Instruction_6 | IncrementDecrement8Instruction_7 | IncrementDecrement8Instruction_8;
|
|
1853
1568
|
export declare class IncrementDecrement8Instruction_1 {
|
|
@@ -1863,15 +1578,15 @@ export declare class IncrementDecrement8Instruction_2 {
|
|
|
1863
1578
|
}
|
|
1864
1579
|
export declare class IncrementDecrement8Instruction_3 {
|
|
1865
1580
|
kind: ASTKinds.IncrementDecrement8Instruction_3;
|
|
1866
|
-
|
|
1581
|
+
i: IX;
|
|
1867
1582
|
elements: AstElements;
|
|
1868
|
-
constructor(
|
|
1583
|
+
constructor(i: IX);
|
|
1869
1584
|
}
|
|
1870
1585
|
export declare class IncrementDecrement8Instruction_4 {
|
|
1871
1586
|
kind: ASTKinds.IncrementDecrement8Instruction_4;
|
|
1872
|
-
|
|
1587
|
+
i: IY;
|
|
1873
1588
|
elements: AstElements;
|
|
1874
|
-
constructor(
|
|
1589
|
+
constructor(i: IY);
|
|
1875
1590
|
}
|
|
1876
1591
|
export declare class IncrementDecrement8Instruction_5 {
|
|
1877
1592
|
kind: ASTKinds.IncrementDecrement8Instruction_5;
|
|
@@ -1886,52 +1601,16 @@ export declare class IncrementDecrement8Instruction_6 {
|
|
|
1886
1601
|
}
|
|
1887
1602
|
export declare class IncrementDecrement8Instruction_7 {
|
|
1888
1603
|
kind: ASTKinds.IncrementDecrement8Instruction_7;
|
|
1889
|
-
|
|
1604
|
+
i: IX;
|
|
1890
1605
|
elements: AstElements;
|
|
1891
|
-
constructor(
|
|
1606
|
+
constructor(i: IX);
|
|
1892
1607
|
}
|
|
1893
1608
|
export declare class IncrementDecrement8Instruction_8 {
|
|
1894
1609
|
kind: ASTKinds.IncrementDecrement8Instruction_8;
|
|
1895
|
-
|
|
1610
|
+
i: IY;
|
|
1896
1611
|
elements: AstElements;
|
|
1897
|
-
constructor(
|
|
1898
|
-
}
|
|
1899
|
-
export interface IncrementDecrement8Instruction_$0 {
|
|
1900
|
-
kind: ASTKinds.IncrementDecrement8Instruction_$0;
|
|
1901
|
-
s: IncrementDecrement8Instruction_$0_$0;
|
|
1902
|
-
pos: PosInfo;
|
|
1903
|
-
d: Expression;
|
|
1612
|
+
constructor(i: IY);
|
|
1904
1613
|
}
|
|
1905
|
-
export type IncrementDecrement8Instruction_$0_$0 = IncrementDecrement8Instruction_$0_$0_1 | IncrementDecrement8Instruction_$0_$0_2;
|
|
1906
|
-
export type IncrementDecrement8Instruction_$0_$0_1 = string;
|
|
1907
|
-
export type IncrementDecrement8Instruction_$0_$0_2 = string;
|
|
1908
|
-
export interface IncrementDecrement8Instruction_$1 {
|
|
1909
|
-
kind: ASTKinds.IncrementDecrement8Instruction_$1;
|
|
1910
|
-
s: IncrementDecrement8Instruction_$1_$0;
|
|
1911
|
-
pos: PosInfo;
|
|
1912
|
-
d: Expression;
|
|
1913
|
-
}
|
|
1914
|
-
export type IncrementDecrement8Instruction_$1_$0 = IncrementDecrement8Instruction_$1_$0_1 | IncrementDecrement8Instruction_$1_$0_2;
|
|
1915
|
-
export type IncrementDecrement8Instruction_$1_$0_1 = string;
|
|
1916
|
-
export type IncrementDecrement8Instruction_$1_$0_2 = string;
|
|
1917
|
-
export interface IncrementDecrement8Instruction_$2 {
|
|
1918
|
-
kind: ASTKinds.IncrementDecrement8Instruction_$2;
|
|
1919
|
-
s: IncrementDecrement8Instruction_$2_$0;
|
|
1920
|
-
pos: PosInfo;
|
|
1921
|
-
d: Expression;
|
|
1922
|
-
}
|
|
1923
|
-
export type IncrementDecrement8Instruction_$2_$0 = IncrementDecrement8Instruction_$2_$0_1 | IncrementDecrement8Instruction_$2_$0_2;
|
|
1924
|
-
export type IncrementDecrement8Instruction_$2_$0_1 = string;
|
|
1925
|
-
export type IncrementDecrement8Instruction_$2_$0_2 = string;
|
|
1926
|
-
export interface IncrementDecrement8Instruction_$3 {
|
|
1927
|
-
kind: ASTKinds.IncrementDecrement8Instruction_$3;
|
|
1928
|
-
s: IncrementDecrement8Instruction_$3_$0;
|
|
1929
|
-
pos: PosInfo;
|
|
1930
|
-
d: Expression;
|
|
1931
|
-
}
|
|
1932
|
-
export type IncrementDecrement8Instruction_$3_$0 = IncrementDecrement8Instruction_$3_$0_1 | IncrementDecrement8Instruction_$3_$0_2;
|
|
1933
|
-
export type IncrementDecrement8Instruction_$3_$0_1 = string;
|
|
1934
|
-
export type IncrementDecrement8Instruction_$3_$0_2 = string;
|
|
1935
1614
|
export type GeneralPurposeArithmeticInstruction = GeneralPurposeArithmeticInstruction_1 | GeneralPurposeArithmeticInstruction_2 | GeneralPurposeArithmeticInstruction_3 | GeneralPurposeArithmeticInstruction_4 | GeneralPurposeArithmeticInstruction_5;
|
|
1936
1615
|
export declare class GeneralPurposeArithmeticInstruction_1 {
|
|
1937
1616
|
kind: ASTKinds.GeneralPurposeArithmeticInstruction_1;
|
|
@@ -2082,15 +1761,15 @@ export declare class RotateShiftInstruction_6 {
|
|
|
2082
1761
|
}
|
|
2083
1762
|
export declare class RotateShiftInstruction_7 {
|
|
2084
1763
|
kind: ASTKinds.RotateShiftInstruction_7;
|
|
2085
|
-
|
|
1764
|
+
i: IX;
|
|
2086
1765
|
elements: AstElements;
|
|
2087
|
-
constructor(
|
|
1766
|
+
constructor(i: IX);
|
|
2088
1767
|
}
|
|
2089
1768
|
export declare class RotateShiftInstruction_8 {
|
|
2090
1769
|
kind: ASTKinds.RotateShiftInstruction_8;
|
|
2091
|
-
|
|
1770
|
+
i: IY;
|
|
2092
1771
|
elements: AstElements;
|
|
2093
|
-
constructor(
|
|
1772
|
+
constructor(i: IY);
|
|
2094
1773
|
}
|
|
2095
1774
|
export declare class RotateShiftInstruction_9 {
|
|
2096
1775
|
kind: ASTKinds.RotateShiftInstruction_9;
|
|
@@ -2105,15 +1784,15 @@ export declare class RotateShiftInstruction_10 {
|
|
|
2105
1784
|
}
|
|
2106
1785
|
export declare class RotateShiftInstruction_11 {
|
|
2107
1786
|
kind: ASTKinds.RotateShiftInstruction_11;
|
|
2108
|
-
|
|
1787
|
+
i: IX;
|
|
2109
1788
|
elements: AstElements;
|
|
2110
|
-
constructor(
|
|
1789
|
+
constructor(i: IX);
|
|
2111
1790
|
}
|
|
2112
1791
|
export declare class RotateShiftInstruction_12 {
|
|
2113
1792
|
kind: ASTKinds.RotateShiftInstruction_12;
|
|
2114
|
-
|
|
1793
|
+
i: IY;
|
|
2115
1794
|
elements: AstElements;
|
|
2116
|
-
constructor(
|
|
1795
|
+
constructor(i: IY);
|
|
2117
1796
|
}
|
|
2118
1797
|
export declare class RotateShiftInstruction_13 {
|
|
2119
1798
|
kind: ASTKinds.RotateShiftInstruction_13;
|
|
@@ -2128,15 +1807,15 @@ export declare class RotateShiftInstruction_14 {
|
|
|
2128
1807
|
}
|
|
2129
1808
|
export declare class RotateShiftInstruction_15 {
|
|
2130
1809
|
kind: ASTKinds.RotateShiftInstruction_15;
|
|
2131
|
-
|
|
1810
|
+
i: IX;
|
|
2132
1811
|
elements: AstElements;
|
|
2133
|
-
constructor(
|
|
1812
|
+
constructor(i: IX);
|
|
2134
1813
|
}
|
|
2135
1814
|
export declare class RotateShiftInstruction_16 {
|
|
2136
1815
|
kind: ASTKinds.RotateShiftInstruction_16;
|
|
2137
|
-
|
|
1816
|
+
i: IY;
|
|
2138
1817
|
elements: AstElements;
|
|
2139
|
-
constructor(
|
|
1818
|
+
constructor(i: IY);
|
|
2140
1819
|
}
|
|
2141
1820
|
export declare class RotateShiftInstruction_17 {
|
|
2142
1821
|
kind: ASTKinds.RotateShiftInstruction_17;
|
|
@@ -2151,15 +1830,15 @@ export declare class RotateShiftInstruction_18 {
|
|
|
2151
1830
|
}
|
|
2152
1831
|
export declare class RotateShiftInstruction_19 {
|
|
2153
1832
|
kind: ASTKinds.RotateShiftInstruction_19;
|
|
2154
|
-
|
|
1833
|
+
i: IX;
|
|
2155
1834
|
elements: AstElements;
|
|
2156
|
-
constructor(
|
|
1835
|
+
constructor(i: IX);
|
|
2157
1836
|
}
|
|
2158
1837
|
export declare class RotateShiftInstruction_20 {
|
|
2159
1838
|
kind: ASTKinds.RotateShiftInstruction_20;
|
|
2160
|
-
|
|
1839
|
+
i: IY;
|
|
2161
1840
|
elements: AstElements;
|
|
2162
|
-
constructor(
|
|
1841
|
+
constructor(i: IY);
|
|
2163
1842
|
}
|
|
2164
1843
|
export declare class RotateShiftInstruction_21 {
|
|
2165
1844
|
kind: ASTKinds.RotateShiftInstruction_21;
|
|
@@ -2174,15 +1853,15 @@ export declare class RotateShiftInstruction_22 {
|
|
|
2174
1853
|
}
|
|
2175
1854
|
export declare class RotateShiftInstruction_23 {
|
|
2176
1855
|
kind: ASTKinds.RotateShiftInstruction_23;
|
|
2177
|
-
|
|
1856
|
+
i: IX;
|
|
2178
1857
|
elements: AstElements;
|
|
2179
|
-
constructor(
|
|
1858
|
+
constructor(i: IX);
|
|
2180
1859
|
}
|
|
2181
1860
|
export declare class RotateShiftInstruction_24 {
|
|
2182
1861
|
kind: ASTKinds.RotateShiftInstruction_24;
|
|
2183
|
-
|
|
1862
|
+
i: IY;
|
|
2184
1863
|
elements: AstElements;
|
|
2185
|
-
constructor(
|
|
1864
|
+
constructor(i: IY);
|
|
2186
1865
|
}
|
|
2187
1866
|
export declare class RotateShiftInstruction_25 {
|
|
2188
1867
|
kind: ASTKinds.RotateShiftInstruction_25;
|
|
@@ -2197,15 +1876,15 @@ export declare class RotateShiftInstruction_26 {
|
|
|
2197
1876
|
}
|
|
2198
1877
|
export declare class RotateShiftInstruction_27 {
|
|
2199
1878
|
kind: ASTKinds.RotateShiftInstruction_27;
|
|
2200
|
-
|
|
1879
|
+
i: IX;
|
|
2201
1880
|
elements: AstElements;
|
|
2202
|
-
constructor(
|
|
1881
|
+
constructor(i: IX);
|
|
2203
1882
|
}
|
|
2204
1883
|
export declare class RotateShiftInstruction_28 {
|
|
2205
1884
|
kind: ASTKinds.RotateShiftInstruction_28;
|
|
2206
|
-
|
|
1885
|
+
i: IY;
|
|
2207
1886
|
elements: AstElements;
|
|
2208
|
-
constructor(
|
|
1887
|
+
constructor(i: IY);
|
|
2209
1888
|
}
|
|
2210
1889
|
export declare class RotateShiftInstruction_29 {
|
|
2211
1890
|
kind: ASTKinds.RotateShiftInstruction_29;
|
|
@@ -2220,15 +1899,15 @@ export declare class RotateShiftInstruction_30 {
|
|
|
2220
1899
|
}
|
|
2221
1900
|
export declare class RotateShiftInstruction_31 {
|
|
2222
1901
|
kind: ASTKinds.RotateShiftInstruction_31;
|
|
2223
|
-
|
|
1902
|
+
i: IX;
|
|
2224
1903
|
elements: AstElements;
|
|
2225
|
-
constructor(
|
|
1904
|
+
constructor(i: IX);
|
|
2226
1905
|
}
|
|
2227
1906
|
export declare class RotateShiftInstruction_32 {
|
|
2228
1907
|
kind: ASTKinds.RotateShiftInstruction_32;
|
|
2229
|
-
|
|
1908
|
+
i: IY;
|
|
2230
1909
|
elements: AstElements;
|
|
2231
|
-
constructor(
|
|
1910
|
+
constructor(i: IY);
|
|
2232
1911
|
}
|
|
2233
1912
|
export declare class RotateShiftInstruction_33 {
|
|
2234
1913
|
kind: ASTKinds.RotateShiftInstruction_33;
|
|
@@ -2240,132 +1919,6 @@ export declare class RotateShiftInstruction_34 {
|
|
|
2240
1919
|
elements: AstElements;
|
|
2241
1920
|
constructor();
|
|
2242
1921
|
}
|
|
2243
|
-
export interface RotateShiftInstruction_$0 {
|
|
2244
|
-
kind: ASTKinds.RotateShiftInstruction_$0;
|
|
2245
|
-
s: RotateShiftInstruction_$0_$0;
|
|
2246
|
-
pos: PosInfo;
|
|
2247
|
-
d: Expression;
|
|
2248
|
-
}
|
|
2249
|
-
export type RotateShiftInstruction_$0_$0 = RotateShiftInstruction_$0_$0_1 | RotateShiftInstruction_$0_$0_2;
|
|
2250
|
-
export type RotateShiftInstruction_$0_$0_1 = string;
|
|
2251
|
-
export type RotateShiftInstruction_$0_$0_2 = string;
|
|
2252
|
-
export interface RotateShiftInstruction_$1 {
|
|
2253
|
-
kind: ASTKinds.RotateShiftInstruction_$1;
|
|
2254
|
-
s: RotateShiftInstruction_$1_$0;
|
|
2255
|
-
pos: PosInfo;
|
|
2256
|
-
d: Expression;
|
|
2257
|
-
}
|
|
2258
|
-
export type RotateShiftInstruction_$1_$0 = RotateShiftInstruction_$1_$0_1 | RotateShiftInstruction_$1_$0_2;
|
|
2259
|
-
export type RotateShiftInstruction_$1_$0_1 = string;
|
|
2260
|
-
export type RotateShiftInstruction_$1_$0_2 = string;
|
|
2261
|
-
export interface RotateShiftInstruction_$2 {
|
|
2262
|
-
kind: ASTKinds.RotateShiftInstruction_$2;
|
|
2263
|
-
s: RotateShiftInstruction_$2_$0;
|
|
2264
|
-
pos: PosInfo;
|
|
2265
|
-
d: Expression;
|
|
2266
|
-
}
|
|
2267
|
-
export type RotateShiftInstruction_$2_$0 = RotateShiftInstruction_$2_$0_1 | RotateShiftInstruction_$2_$0_2;
|
|
2268
|
-
export type RotateShiftInstruction_$2_$0_1 = string;
|
|
2269
|
-
export type RotateShiftInstruction_$2_$0_2 = string;
|
|
2270
|
-
export interface RotateShiftInstruction_$3 {
|
|
2271
|
-
kind: ASTKinds.RotateShiftInstruction_$3;
|
|
2272
|
-
s: RotateShiftInstruction_$3_$0;
|
|
2273
|
-
pos: PosInfo;
|
|
2274
|
-
d: Expression;
|
|
2275
|
-
}
|
|
2276
|
-
export type RotateShiftInstruction_$3_$0 = RotateShiftInstruction_$3_$0_1 | RotateShiftInstruction_$3_$0_2;
|
|
2277
|
-
export type RotateShiftInstruction_$3_$0_1 = string;
|
|
2278
|
-
export type RotateShiftInstruction_$3_$0_2 = string;
|
|
2279
|
-
export interface RotateShiftInstruction_$4 {
|
|
2280
|
-
kind: ASTKinds.RotateShiftInstruction_$4;
|
|
2281
|
-
s: RotateShiftInstruction_$4_$0;
|
|
2282
|
-
pos: PosInfo;
|
|
2283
|
-
d: Expression;
|
|
2284
|
-
}
|
|
2285
|
-
export type RotateShiftInstruction_$4_$0 = RotateShiftInstruction_$4_$0_1 | RotateShiftInstruction_$4_$0_2;
|
|
2286
|
-
export type RotateShiftInstruction_$4_$0_1 = string;
|
|
2287
|
-
export type RotateShiftInstruction_$4_$0_2 = string;
|
|
2288
|
-
export interface RotateShiftInstruction_$5 {
|
|
2289
|
-
kind: ASTKinds.RotateShiftInstruction_$5;
|
|
2290
|
-
s: RotateShiftInstruction_$5_$0;
|
|
2291
|
-
pos: PosInfo;
|
|
2292
|
-
d: Expression;
|
|
2293
|
-
}
|
|
2294
|
-
export type RotateShiftInstruction_$5_$0 = RotateShiftInstruction_$5_$0_1 | RotateShiftInstruction_$5_$0_2;
|
|
2295
|
-
export type RotateShiftInstruction_$5_$0_1 = string;
|
|
2296
|
-
export type RotateShiftInstruction_$5_$0_2 = string;
|
|
2297
|
-
export interface RotateShiftInstruction_$6 {
|
|
2298
|
-
kind: ASTKinds.RotateShiftInstruction_$6;
|
|
2299
|
-
s: RotateShiftInstruction_$6_$0;
|
|
2300
|
-
pos: PosInfo;
|
|
2301
|
-
d: Expression;
|
|
2302
|
-
}
|
|
2303
|
-
export type RotateShiftInstruction_$6_$0 = RotateShiftInstruction_$6_$0_1 | RotateShiftInstruction_$6_$0_2;
|
|
2304
|
-
export type RotateShiftInstruction_$6_$0_1 = string;
|
|
2305
|
-
export type RotateShiftInstruction_$6_$0_2 = string;
|
|
2306
|
-
export interface RotateShiftInstruction_$7 {
|
|
2307
|
-
kind: ASTKinds.RotateShiftInstruction_$7;
|
|
2308
|
-
s: RotateShiftInstruction_$7_$0;
|
|
2309
|
-
pos: PosInfo;
|
|
2310
|
-
d: Expression;
|
|
2311
|
-
}
|
|
2312
|
-
export type RotateShiftInstruction_$7_$0 = RotateShiftInstruction_$7_$0_1 | RotateShiftInstruction_$7_$0_2;
|
|
2313
|
-
export type RotateShiftInstruction_$7_$0_1 = string;
|
|
2314
|
-
export type RotateShiftInstruction_$7_$0_2 = string;
|
|
2315
|
-
export interface RotateShiftInstruction_$8 {
|
|
2316
|
-
kind: ASTKinds.RotateShiftInstruction_$8;
|
|
2317
|
-
s: RotateShiftInstruction_$8_$0;
|
|
2318
|
-
pos: PosInfo;
|
|
2319
|
-
d: Expression;
|
|
2320
|
-
}
|
|
2321
|
-
export type RotateShiftInstruction_$8_$0 = RotateShiftInstruction_$8_$0_1 | RotateShiftInstruction_$8_$0_2;
|
|
2322
|
-
export type RotateShiftInstruction_$8_$0_1 = string;
|
|
2323
|
-
export type RotateShiftInstruction_$8_$0_2 = string;
|
|
2324
|
-
export interface RotateShiftInstruction_$9 {
|
|
2325
|
-
kind: ASTKinds.RotateShiftInstruction_$9;
|
|
2326
|
-
s: RotateShiftInstruction_$9_$0;
|
|
2327
|
-
pos: PosInfo;
|
|
2328
|
-
d: Expression;
|
|
2329
|
-
}
|
|
2330
|
-
export type RotateShiftInstruction_$9_$0 = RotateShiftInstruction_$9_$0_1 | RotateShiftInstruction_$9_$0_2;
|
|
2331
|
-
export type RotateShiftInstruction_$9_$0_1 = string;
|
|
2332
|
-
export type RotateShiftInstruction_$9_$0_2 = string;
|
|
2333
|
-
export interface RotateShiftInstruction_$10 {
|
|
2334
|
-
kind: ASTKinds.RotateShiftInstruction_$10;
|
|
2335
|
-
s: RotateShiftInstruction_$10_$0;
|
|
2336
|
-
pos: PosInfo;
|
|
2337
|
-
d: Expression;
|
|
2338
|
-
}
|
|
2339
|
-
export type RotateShiftInstruction_$10_$0 = RotateShiftInstruction_$10_$0_1 | RotateShiftInstruction_$10_$0_2;
|
|
2340
|
-
export type RotateShiftInstruction_$10_$0_1 = string;
|
|
2341
|
-
export type RotateShiftInstruction_$10_$0_2 = string;
|
|
2342
|
-
export interface RotateShiftInstruction_$11 {
|
|
2343
|
-
kind: ASTKinds.RotateShiftInstruction_$11;
|
|
2344
|
-
s: RotateShiftInstruction_$11_$0;
|
|
2345
|
-
pos: PosInfo;
|
|
2346
|
-
d: Expression;
|
|
2347
|
-
}
|
|
2348
|
-
export type RotateShiftInstruction_$11_$0 = RotateShiftInstruction_$11_$0_1 | RotateShiftInstruction_$11_$0_2;
|
|
2349
|
-
export type RotateShiftInstruction_$11_$0_1 = string;
|
|
2350
|
-
export type RotateShiftInstruction_$11_$0_2 = string;
|
|
2351
|
-
export interface RotateShiftInstruction_$12 {
|
|
2352
|
-
kind: ASTKinds.RotateShiftInstruction_$12;
|
|
2353
|
-
s: RotateShiftInstruction_$12_$0;
|
|
2354
|
-
pos: PosInfo;
|
|
2355
|
-
d: Expression;
|
|
2356
|
-
}
|
|
2357
|
-
export type RotateShiftInstruction_$12_$0 = RotateShiftInstruction_$12_$0_1 | RotateShiftInstruction_$12_$0_2;
|
|
2358
|
-
export type RotateShiftInstruction_$12_$0_1 = string;
|
|
2359
|
-
export type RotateShiftInstruction_$12_$0_2 = string;
|
|
2360
|
-
export interface RotateShiftInstruction_$13 {
|
|
2361
|
-
kind: ASTKinds.RotateShiftInstruction_$13;
|
|
2362
|
-
s: RotateShiftInstruction_$13_$0;
|
|
2363
|
-
pos: PosInfo;
|
|
2364
|
-
d: Expression;
|
|
2365
|
-
}
|
|
2366
|
-
export type RotateShiftInstruction_$13_$0 = RotateShiftInstruction_$13_$0_1 | RotateShiftInstruction_$13_$0_2;
|
|
2367
|
-
export type RotateShiftInstruction_$13_$0_1 = string;
|
|
2368
|
-
export type RotateShiftInstruction_$13_$0_2 = string;
|
|
2369
1922
|
export type BitManipulationInstruction = BitManipulationInstruction_1 | BitManipulationInstruction_2 | BitManipulationInstruction_3 | BitManipulationInstruction_4 | BitManipulationInstruction_5 | BitManipulationInstruction_6 | BitManipulationInstruction_7 | BitManipulationInstruction_8 | BitManipulationInstruction_9 | BitManipulationInstruction_10 | BitManipulationInstruction_11 | BitManipulationInstruction_12;
|
|
2370
1923
|
export declare class BitManipulationInstruction_1 {
|
|
2371
1924
|
kind: ASTKinds.BitManipulationInstruction_1;
|
|
@@ -2383,16 +1936,16 @@ export declare class BitManipulationInstruction_2 {
|
|
|
2383
1936
|
export declare class BitManipulationInstruction_3 {
|
|
2384
1937
|
kind: ASTKinds.BitManipulationInstruction_3;
|
|
2385
1938
|
b: b;
|
|
2386
|
-
|
|
1939
|
+
i: IX;
|
|
2387
1940
|
elements: AstElements;
|
|
2388
|
-
constructor(b: b,
|
|
1941
|
+
constructor(b: b, i: IX);
|
|
2389
1942
|
}
|
|
2390
1943
|
export declare class BitManipulationInstruction_4 {
|
|
2391
1944
|
kind: ASTKinds.BitManipulationInstruction_4;
|
|
2392
1945
|
b: b;
|
|
2393
|
-
|
|
1946
|
+
i: IY;
|
|
2394
1947
|
elements: AstElements;
|
|
2395
|
-
constructor(b: b,
|
|
1948
|
+
constructor(b: b, i: IY);
|
|
2396
1949
|
}
|
|
2397
1950
|
export declare class BitManipulationInstruction_5 {
|
|
2398
1951
|
kind: ASTKinds.BitManipulationInstruction_5;
|
|
@@ -2410,16 +1963,16 @@ export declare class BitManipulationInstruction_6 {
|
|
|
2410
1963
|
export declare class BitManipulationInstruction_7 {
|
|
2411
1964
|
kind: ASTKinds.BitManipulationInstruction_7;
|
|
2412
1965
|
b: b;
|
|
2413
|
-
|
|
1966
|
+
i: IX;
|
|
2414
1967
|
elements: AstElements;
|
|
2415
|
-
constructor(b: b,
|
|
1968
|
+
constructor(b: b, i: IX);
|
|
2416
1969
|
}
|
|
2417
1970
|
export declare class BitManipulationInstruction_8 {
|
|
2418
1971
|
kind: ASTKinds.BitManipulationInstruction_8;
|
|
2419
1972
|
b: b;
|
|
2420
|
-
|
|
1973
|
+
i: IY;
|
|
2421
1974
|
elements: AstElements;
|
|
2422
|
-
constructor(b: b,
|
|
1975
|
+
constructor(b: b, i: IY);
|
|
2423
1976
|
}
|
|
2424
1977
|
export declare class BitManipulationInstruction_9 {
|
|
2425
1978
|
kind: ASTKinds.BitManipulationInstruction_9;
|
|
@@ -2437,71 +1990,17 @@ export declare class BitManipulationInstruction_10 {
|
|
|
2437
1990
|
export declare class BitManipulationInstruction_11 {
|
|
2438
1991
|
kind: ASTKinds.BitManipulationInstruction_11;
|
|
2439
1992
|
b: b;
|
|
2440
|
-
|
|
1993
|
+
i: IX;
|
|
2441
1994
|
elements: AstElements;
|
|
2442
|
-
constructor(b: b,
|
|
1995
|
+
constructor(b: b, i: IX);
|
|
2443
1996
|
}
|
|
2444
1997
|
export declare class BitManipulationInstruction_12 {
|
|
2445
1998
|
kind: ASTKinds.BitManipulationInstruction_12;
|
|
2446
1999
|
b: b;
|
|
2447
|
-
|
|
2000
|
+
i: IY;
|
|
2448
2001
|
elements: AstElements;
|
|
2449
|
-
constructor(b: b,
|
|
2450
|
-
}
|
|
2451
|
-
export interface BitManipulationInstruction_$0 {
|
|
2452
|
-
kind: ASTKinds.BitManipulationInstruction_$0;
|
|
2453
|
-
s: BitManipulationInstruction_$0_$0;
|
|
2454
|
-
pos: PosInfo;
|
|
2455
|
-
d: Expression;
|
|
2456
|
-
}
|
|
2457
|
-
export type BitManipulationInstruction_$0_$0 = BitManipulationInstruction_$0_$0_1 | BitManipulationInstruction_$0_$0_2;
|
|
2458
|
-
export type BitManipulationInstruction_$0_$0_1 = string;
|
|
2459
|
-
export type BitManipulationInstruction_$0_$0_2 = string;
|
|
2460
|
-
export interface BitManipulationInstruction_$1 {
|
|
2461
|
-
kind: ASTKinds.BitManipulationInstruction_$1;
|
|
2462
|
-
s: BitManipulationInstruction_$1_$0;
|
|
2463
|
-
pos: PosInfo;
|
|
2464
|
-
d: Expression;
|
|
2002
|
+
constructor(b: b, i: IY);
|
|
2465
2003
|
}
|
|
2466
|
-
export type BitManipulationInstruction_$1_$0 = BitManipulationInstruction_$1_$0_1 | BitManipulationInstruction_$1_$0_2;
|
|
2467
|
-
export type BitManipulationInstruction_$1_$0_1 = string;
|
|
2468
|
-
export type BitManipulationInstruction_$1_$0_2 = string;
|
|
2469
|
-
export interface BitManipulationInstruction_$2 {
|
|
2470
|
-
kind: ASTKinds.BitManipulationInstruction_$2;
|
|
2471
|
-
s: BitManipulationInstruction_$2_$0;
|
|
2472
|
-
pos: PosInfo;
|
|
2473
|
-
d: Expression;
|
|
2474
|
-
}
|
|
2475
|
-
export type BitManipulationInstruction_$2_$0 = BitManipulationInstruction_$2_$0_1 | BitManipulationInstruction_$2_$0_2;
|
|
2476
|
-
export type BitManipulationInstruction_$2_$0_1 = string;
|
|
2477
|
-
export type BitManipulationInstruction_$2_$0_2 = string;
|
|
2478
|
-
export interface BitManipulationInstruction_$3 {
|
|
2479
|
-
kind: ASTKinds.BitManipulationInstruction_$3;
|
|
2480
|
-
s: BitManipulationInstruction_$3_$0;
|
|
2481
|
-
pos: PosInfo;
|
|
2482
|
-
d: Expression;
|
|
2483
|
-
}
|
|
2484
|
-
export type BitManipulationInstruction_$3_$0 = BitManipulationInstruction_$3_$0_1 | BitManipulationInstruction_$3_$0_2;
|
|
2485
|
-
export type BitManipulationInstruction_$3_$0_1 = string;
|
|
2486
|
-
export type BitManipulationInstruction_$3_$0_2 = string;
|
|
2487
|
-
export interface BitManipulationInstruction_$4 {
|
|
2488
|
-
kind: ASTKinds.BitManipulationInstruction_$4;
|
|
2489
|
-
s: BitManipulationInstruction_$4_$0;
|
|
2490
|
-
pos: PosInfo;
|
|
2491
|
-
d: Expression;
|
|
2492
|
-
}
|
|
2493
|
-
export type BitManipulationInstruction_$4_$0 = BitManipulationInstruction_$4_$0_1 | BitManipulationInstruction_$4_$0_2;
|
|
2494
|
-
export type BitManipulationInstruction_$4_$0_1 = string;
|
|
2495
|
-
export type BitManipulationInstruction_$4_$0_2 = string;
|
|
2496
|
-
export interface BitManipulationInstruction_$5 {
|
|
2497
|
-
kind: ASTKinds.BitManipulationInstruction_$5;
|
|
2498
|
-
s: BitManipulationInstruction_$5_$0;
|
|
2499
|
-
pos: PosInfo;
|
|
2500
|
-
d: Expression;
|
|
2501
|
-
}
|
|
2502
|
-
export type BitManipulationInstruction_$5_$0 = BitManipulationInstruction_$5_$0_1 | BitManipulationInstruction_$5_$0_2;
|
|
2503
|
-
export type BitManipulationInstruction_$5_$0_1 = string;
|
|
2504
|
-
export type BitManipulationInstruction_$5_$0_2 = string;
|
|
2505
2004
|
export type Offset = Offset_1 | Offset_2;
|
|
2506
2005
|
export declare class Offset_1 {
|
|
2507
2006
|
kind: ASTKinds.Offset_1;
|
|
@@ -2720,15 +2219,15 @@ export type BlockDirective_3 = string;
|
|
|
2720
2219
|
export type ByteValue = ByteValue_1 | ByteValue_2 | ByteValue_3;
|
|
2721
2220
|
export declare class ByteValue_1 {
|
|
2722
2221
|
kind: ASTKinds.ByteValue_1;
|
|
2723
|
-
|
|
2222
|
+
s: QuottedStr;
|
|
2724
2223
|
elements: AstElements;
|
|
2725
|
-
constructor(
|
|
2224
|
+
constructor(s: QuottedStr);
|
|
2726
2225
|
}
|
|
2727
2226
|
export declare class ByteValue_2 {
|
|
2728
2227
|
kind: ASTKinds.ByteValue_2;
|
|
2729
|
-
s:
|
|
2228
|
+
s: DoubleQuottedStr;
|
|
2730
2229
|
elements: AstElements;
|
|
2731
|
-
constructor(s:
|
|
2230
|
+
constructor(s: DoubleQuottedStr);
|
|
2732
2231
|
}
|
|
2733
2232
|
export declare class ByteValue_3 {
|
|
2734
2233
|
kind: ASTKinds.ByteValue_3;
|
|
@@ -2810,39 +2309,40 @@ export declare class HexadecimalEscapeSequence {
|
|
|
2810
2309
|
elements: AstElements;
|
|
2811
2310
|
constructor(pos: PosInfo, raw: string);
|
|
2812
2311
|
}
|
|
2813
|
-
export declare class
|
|
2814
|
-
kind: ASTKinds.
|
|
2312
|
+
export declare class NoQuoteChar {
|
|
2313
|
+
kind: ASTKinds.NoQuoteChar;
|
|
2815
2314
|
pos: PosInfo;
|
|
2816
2315
|
raw: string;
|
|
2817
2316
|
elements: AstElements;
|
|
2818
2317
|
constructor(pos: PosInfo, raw: string);
|
|
2819
2318
|
}
|
|
2820
|
-
export declare class
|
|
2821
|
-
kind: ASTKinds.
|
|
2319
|
+
export declare class NoDoubleQuoteChar {
|
|
2320
|
+
kind: ASTKinds.NoDoubleQuoteChar;
|
|
2822
2321
|
pos: PosInfo;
|
|
2823
2322
|
raw: string;
|
|
2824
2323
|
elements: AstElements;
|
|
2825
2324
|
constructor(pos: PosInfo, raw: string);
|
|
2826
2325
|
}
|
|
2827
|
-
export declare class
|
|
2828
|
-
kind: ASTKinds.
|
|
2829
|
-
|
|
2326
|
+
export declare class QuottedStr {
|
|
2327
|
+
kind: ASTKinds.QuottedStr;
|
|
2328
|
+
pos: PosInfo;
|
|
2329
|
+
chars: QuottedStr_$0[];
|
|
2830
2330
|
elements: AstElements;
|
|
2831
|
-
constructor(
|
|
2331
|
+
constructor(pos: PosInfo, chars: QuottedStr_$0[]);
|
|
2832
2332
|
}
|
|
2833
|
-
export type
|
|
2834
|
-
export type
|
|
2835
|
-
export type
|
|
2836
|
-
export declare class
|
|
2837
|
-
kind: ASTKinds.
|
|
2333
|
+
export type QuottedStr_$0 = QuottedStr_$0_1 | QuottedStr_$0_2;
|
|
2334
|
+
export type QuottedStr_$0_1 = NoQuoteChar;
|
|
2335
|
+
export type QuottedStr_$0_2 = EscapeSequence;
|
|
2336
|
+
export declare class DoubleQuottedStr {
|
|
2337
|
+
kind: ASTKinds.DoubleQuottedStr;
|
|
2838
2338
|
pos: PosInfo;
|
|
2839
|
-
chars:
|
|
2339
|
+
chars: DoubleQuottedStr_$0[];
|
|
2840
2340
|
elements: AstElements;
|
|
2841
|
-
constructor(pos: PosInfo, chars:
|
|
2341
|
+
constructor(pos: PosInfo, chars: DoubleQuottedStr_$0[]);
|
|
2842
2342
|
}
|
|
2843
|
-
export type
|
|
2844
|
-
export type
|
|
2845
|
-
export type
|
|
2343
|
+
export type DoubleQuottedStr_$0 = DoubleQuottedStr_$0_1 | DoubleQuottedStr_$0_2;
|
|
2344
|
+
export type DoubleQuottedStr_$0_1 = NoDoubleQuoteChar;
|
|
2345
|
+
export type DoubleQuottedStr_$0_2 = EscapeSequence;
|
|
2846
2346
|
export type Comment = string;
|
|
2847
2347
|
export interface OriginDirective {
|
|
2848
2348
|
kind: ASTKinds.OriginDirective;
|
|
@@ -2881,6 +2381,9 @@ export declare class DeviceDirective {
|
|
|
2881
2381
|
void: void;
|
|
2882
2382
|
constructor(raw: string);
|
|
2883
2383
|
}
|
|
2384
|
+
export interface EndDirective {
|
|
2385
|
+
kind: ASTKinds.EndDirective;
|
|
2386
|
+
}
|
|
2884
2387
|
export declare class Parser {
|
|
2885
2388
|
private readonly input;
|
|
2886
2389
|
private pos;
|
|
@@ -2938,6 +2441,8 @@ export declare class Parser {
|
|
|
2938
2441
|
matchnn_4($$dpth: number, $$cr?: ErrorTracker): Nullable<nn_4>;
|
|
2939
2442
|
matchdecimal($$dpth: number, $$cr?: ErrorTracker): Nullable<decimal>;
|
|
2940
2443
|
matchbinary($$dpth: number, $$cr?: ErrorTracker): Nullable<binary>;
|
|
2444
|
+
matchbinary_1($$dpth: number, $$cr?: ErrorTracker): Nullable<binary_1>;
|
|
2445
|
+
matchbinary_2($$dpth: number, $$cr?: ErrorTracker): Nullable<binary_2>;
|
|
2941
2446
|
matchbinary_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<binary_$0>;
|
|
2942
2447
|
matchbinary_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<binary_$0_1>;
|
|
2943
2448
|
matchbinary_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<binary_$0_2>;
|
|
@@ -2947,6 +2452,7 @@ export declare class Parser {
|
|
|
2947
2452
|
matchoctal_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<octal_$0>;
|
|
2948
2453
|
matchoctal_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<octal_$0_1>;
|
|
2949
2454
|
matchoctal_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<octal_$0_2>;
|
|
2455
|
+
matchoctal_$0_3($$dpth: number, $$cr?: ErrorTracker): Nullable<octal_$0_3>;
|
|
2950
2456
|
matchoctal_$1($$dpth: number, $$cr?: ErrorTracker): Nullable<octal_$1>;
|
|
2951
2457
|
matchoctal_$1_1($$dpth: number, $$cr?: ErrorTracker): Nullable<octal_$1_1>;
|
|
2952
2458
|
matchoctal_$1_2($$dpth: number, $$cr?: ErrorTracker): Nullable<octal_$1_2>;
|
|
@@ -2996,6 +2502,7 @@ export declare class Parser {
|
|
|
2996
2502
|
matchDirective_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Directive_2>;
|
|
2997
2503
|
matchDirective_3($$dpth: number, $$cr?: ErrorTracker): Nullable<Directive_3>;
|
|
2998
2504
|
matchDirective_4($$dpth: number, $$cr?: ErrorTracker): Nullable<Directive_4>;
|
|
2505
|
+
matchDirective_5($$dpth: number, $$cr?: ErrorTracker): Nullable<Directive_5>;
|
|
2999
2506
|
matchForbiddenNames($$dpth: number, $$cr?: ErrorTracker): Nullable<ForbiddenNames>;
|
|
3000
2507
|
matchForbiddenNames_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ForbiddenNames_1>;
|
|
3001
2508
|
matchForbiddenNames_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ForbiddenNames_2>;
|
|
@@ -3040,6 +2547,16 @@ export declare class Parser {
|
|
|
3040
2547
|
matchPrimaryExpression_2($$dpth: number, $$cr?: ErrorTracker): Nullable<PrimaryExpression_2>;
|
|
3041
2548
|
matchPrimaryExpression_3($$dpth: number, $$cr?: ErrorTracker): Nullable<PrimaryExpression_3>;
|
|
3042
2549
|
matchReg8($$dpth: number, $$cr?: ErrorTracker): Nullable<Reg8>;
|
|
2550
|
+
matchIX($$dpth: number, $$cr?: ErrorTracker): Nullable<IX>;
|
|
2551
|
+
matchIX_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<IX_$0>;
|
|
2552
|
+
matchIX_$0_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<IX_$0_$0>;
|
|
2553
|
+
matchIX_$0_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<IX_$0_$0_1>;
|
|
2554
|
+
matchIX_$0_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<IX_$0_$0_2>;
|
|
2555
|
+
matchIY($$dpth: number, $$cr?: ErrorTracker): Nullable<IY>;
|
|
2556
|
+
matchIY_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<IY_$0>;
|
|
2557
|
+
matchIY_$0_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<IY_$0_$0>;
|
|
2558
|
+
matchIY_$0_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<IY_$0_$0_1>;
|
|
2559
|
+
matchIY_$0_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<IY_$0_$0_2>;
|
|
3043
2560
|
matchInstruction($$dpth: number, $$cr?: ErrorTracker): Nullable<Instruction>;
|
|
3044
2561
|
matchInstruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Instruction_1>;
|
|
3045
2562
|
matchInstruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Instruction_2>;
|
|
@@ -3079,30 +2596,6 @@ export declare class Parser {
|
|
|
3079
2596
|
matchLoad8Instruction_19($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_19>;
|
|
3080
2597
|
matchLoad8Instruction_20($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_20>;
|
|
3081
2598
|
matchLoad8Instruction_21($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_21>;
|
|
3082
|
-
matchLoad8Instruction_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$0>;
|
|
3083
|
-
matchLoad8Instruction_$0_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$0_$0>;
|
|
3084
|
-
matchLoad8Instruction_$0_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$0_$0_1>;
|
|
3085
|
-
matchLoad8Instruction_$0_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$0_$0_2>;
|
|
3086
|
-
matchLoad8Instruction_$1($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$1>;
|
|
3087
|
-
matchLoad8Instruction_$1_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$1_$0>;
|
|
3088
|
-
matchLoad8Instruction_$1_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$1_$0_1>;
|
|
3089
|
-
matchLoad8Instruction_$1_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$1_$0_2>;
|
|
3090
|
-
matchLoad8Instruction_$2($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$2>;
|
|
3091
|
-
matchLoad8Instruction_$2_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$2_$0>;
|
|
3092
|
-
matchLoad8Instruction_$2_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$2_$0_1>;
|
|
3093
|
-
matchLoad8Instruction_$2_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$2_$0_2>;
|
|
3094
|
-
matchLoad8Instruction_$3($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$3>;
|
|
3095
|
-
matchLoad8Instruction_$3_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$3_$0>;
|
|
3096
|
-
matchLoad8Instruction_$3_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$3_$0_1>;
|
|
3097
|
-
matchLoad8Instruction_$3_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$3_$0_2>;
|
|
3098
|
-
matchLoad8Instruction_$4($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$4>;
|
|
3099
|
-
matchLoad8Instruction_$4_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$4_$0>;
|
|
3100
|
-
matchLoad8Instruction_$4_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$4_$0_1>;
|
|
3101
|
-
matchLoad8Instruction_$4_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$4_$0_2>;
|
|
3102
|
-
matchLoad8Instruction_$5($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$5>;
|
|
3103
|
-
matchLoad8Instruction_$5_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$5_$0>;
|
|
3104
|
-
matchLoad8Instruction_$5_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$5_$0_1>;
|
|
3105
|
-
matchLoad8Instruction_$5_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$5_$0_2>;
|
|
3106
2599
|
matchLoad16Instruction($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction>;
|
|
3107
2600
|
matchLoad16Instruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction_1>;
|
|
3108
2601
|
matchLoad16Instruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction_2>;
|
|
@@ -3184,107 +2677,43 @@ export declare class Parser {
|
|
|
3184
2677
|
matchArithmeticLogic8Instruction_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$0>;
|
|
3185
2678
|
matchArithmeticLogic8Instruction_$1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$1>;
|
|
3186
2679
|
matchArithmeticLogic8Instruction_$2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$2>;
|
|
3187
|
-
matchArithmeticLogic8Instruction_$2_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$2_$0>;
|
|
3188
|
-
matchArithmeticLogic8Instruction_$2_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$2_$0_1>;
|
|
3189
|
-
matchArithmeticLogic8Instruction_$2_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$2_$0_2>;
|
|
3190
2680
|
matchArithmeticLogic8Instruction_$3($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$3>;
|
|
3191
2681
|
matchArithmeticLogic8Instruction_$4($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$4>;
|
|
3192
|
-
matchArithmeticLogic8Instruction_$4_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$4_$0>;
|
|
3193
|
-
matchArithmeticLogic8Instruction_$4_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$4_$0_1>;
|
|
3194
|
-
matchArithmeticLogic8Instruction_$4_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$4_$0_2>;
|
|
3195
2682
|
matchArithmeticLogic8Instruction_$5($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$5>;
|
|
3196
2683
|
matchArithmeticLogic8Instruction_$6($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$6>;
|
|
3197
2684
|
matchArithmeticLogic8Instruction_$7($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$7>;
|
|
3198
2685
|
matchArithmeticLogic8Instruction_$8($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$8>;
|
|
3199
2686
|
matchArithmeticLogic8Instruction_$9($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$9>;
|
|
3200
|
-
matchArithmeticLogic8Instruction_$9_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$9_$0>;
|
|
3201
|
-
matchArithmeticLogic8Instruction_$9_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$9_$0_1>;
|
|
3202
|
-
matchArithmeticLogic8Instruction_$9_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$9_$0_2>;
|
|
3203
2687
|
matchArithmeticLogic8Instruction_$10($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$10>;
|
|
3204
2688
|
matchArithmeticLogic8Instruction_$11($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$11>;
|
|
3205
|
-
matchArithmeticLogic8Instruction_$11_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$11_$0>;
|
|
3206
|
-
matchArithmeticLogic8Instruction_$11_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$11_$0_1>;
|
|
3207
|
-
matchArithmeticLogic8Instruction_$11_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$11_$0_2>;
|
|
3208
2689
|
matchArithmeticLogic8Instruction_$12($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$12>;
|
|
3209
2690
|
matchArithmeticLogic8Instruction_$13($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$13>;
|
|
3210
2691
|
matchArithmeticLogic8Instruction_$14($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$14>;
|
|
3211
2692
|
matchArithmeticLogic8Instruction_$15($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$15>;
|
|
3212
2693
|
matchArithmeticLogic8Instruction_$16($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$16>;
|
|
3213
|
-
matchArithmeticLogic8Instruction_$16_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$16_$0>;
|
|
3214
|
-
matchArithmeticLogic8Instruction_$16_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$16_$0_1>;
|
|
3215
|
-
matchArithmeticLogic8Instruction_$16_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$16_$0_2>;
|
|
3216
2694
|
matchArithmeticLogic8Instruction_$17($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$17>;
|
|
3217
2695
|
matchArithmeticLogic8Instruction_$18($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$18>;
|
|
3218
|
-
matchArithmeticLogic8Instruction_$18_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$18_$0>;
|
|
3219
|
-
matchArithmeticLogic8Instruction_$18_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$18_$0_1>;
|
|
3220
|
-
matchArithmeticLogic8Instruction_$18_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$18_$0_2>;
|
|
3221
2696
|
matchArithmeticLogic8Instruction_$19($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$19>;
|
|
3222
2697
|
matchArithmeticLogic8Instruction_$20($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$20>;
|
|
3223
2698
|
matchArithmeticLogic8Instruction_$21($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$21>;
|
|
3224
2699
|
matchArithmeticLogic8Instruction_$22($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$22>;
|
|
3225
2700
|
matchArithmeticLogic8Instruction_$23($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$23>;
|
|
3226
|
-
matchArithmeticLogic8Instruction_$23_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$23_$0>;
|
|
3227
|
-
matchArithmeticLogic8Instruction_$23_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$23_$0_1>;
|
|
3228
|
-
matchArithmeticLogic8Instruction_$23_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$23_$0_2>;
|
|
3229
2701
|
matchArithmeticLogic8Instruction_$24($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$24>;
|
|
3230
2702
|
matchArithmeticLogic8Instruction_$25($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$25>;
|
|
3231
|
-
matchArithmeticLogic8Instruction_$25_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$25_$0>;
|
|
3232
|
-
matchArithmeticLogic8Instruction_$25_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$25_$0_1>;
|
|
3233
|
-
matchArithmeticLogic8Instruction_$25_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$25_$0_2>;
|
|
3234
2703
|
matchArithmeticLogic8Instruction_$26($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$26>;
|
|
3235
2704
|
matchArithmeticLogic8Instruction_$27($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$27>;
|
|
3236
2705
|
matchArithmeticLogic8Instruction_$28($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$28>;
|
|
3237
2706
|
matchArithmeticLogic8Instruction_$29($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$29>;
|
|
3238
2707
|
matchArithmeticLogic8Instruction_$30($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$30>;
|
|
3239
|
-
matchArithmeticLogic8Instruction_$30_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$30_$0>;
|
|
3240
|
-
matchArithmeticLogic8Instruction_$30_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$30_$0_1>;
|
|
3241
|
-
matchArithmeticLogic8Instruction_$30_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$30_$0_2>;
|
|
3242
2708
|
matchArithmeticLogic8Instruction_$31($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$31>;
|
|
3243
2709
|
matchArithmeticLogic8Instruction_$32($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$32>;
|
|
3244
|
-
matchArithmeticLogic8Instruction_$32_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$32_$0>;
|
|
3245
|
-
matchArithmeticLogic8Instruction_$32_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$32_$0_1>;
|
|
3246
|
-
matchArithmeticLogic8Instruction_$32_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$32_$0_2>;
|
|
3247
2710
|
matchArithmeticLogic8Instruction_$33($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$33>;
|
|
3248
2711
|
matchArithmeticLogic8Instruction_$34($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$34>;
|
|
3249
2712
|
matchArithmeticLogic8Instruction_$35($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$35>;
|
|
3250
2713
|
matchArithmeticLogic8Instruction_$36($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$36>;
|
|
3251
2714
|
matchArithmeticLogic8Instruction_$37($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$37>;
|
|
3252
|
-
matchArithmeticLogic8Instruction_$37_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$37_$0>;
|
|
3253
|
-
matchArithmeticLogic8Instruction_$37_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$37_$0_1>;
|
|
3254
|
-
matchArithmeticLogic8Instruction_$37_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$37_$0_2>;
|
|
3255
2715
|
matchArithmeticLogic8Instruction_$38($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$38>;
|
|
3256
2716
|
matchArithmeticLogic8Instruction_$39($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$39>;
|
|
3257
|
-
matchArithmeticLogic8Instruction_$39_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$39_$0>;
|
|
3258
|
-
matchArithmeticLogic8Instruction_$39_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$39_$0_1>;
|
|
3259
|
-
matchArithmeticLogic8Instruction_$39_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$39_$0_2>;
|
|
3260
|
-
matchArithmeticLogic8Instruction_$40($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$40>;
|
|
3261
|
-
matchArithmeticLogic8Instruction_$41($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$41>;
|
|
3262
|
-
matchArithmeticLogic8Instruction_$42($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$42>;
|
|
3263
|
-
matchArithmeticLogic8Instruction_$43($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$43>;
|
|
3264
|
-
matchArithmeticLogic8Instruction_$44($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$44>;
|
|
3265
|
-
matchArithmeticLogic8Instruction_$44_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$44_$0>;
|
|
3266
|
-
matchArithmeticLogic8Instruction_$44_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$44_$0_1>;
|
|
3267
|
-
matchArithmeticLogic8Instruction_$44_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$44_$0_2>;
|
|
3268
|
-
matchArithmeticLogic8Instruction_$45($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$45>;
|
|
3269
|
-
matchArithmeticLogic8Instruction_$46($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$46>;
|
|
3270
|
-
matchArithmeticLogic8Instruction_$46_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$46_$0>;
|
|
3271
|
-
matchArithmeticLogic8Instruction_$46_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$46_$0_1>;
|
|
3272
|
-
matchArithmeticLogic8Instruction_$46_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$46_$0_2>;
|
|
3273
|
-
matchArithmeticLogic8Instruction_$47($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$47>;
|
|
3274
|
-
matchArithmeticLogic8Instruction_$48($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$48>;
|
|
3275
|
-
matchArithmeticLogic8Instruction_$49($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$49>;
|
|
3276
|
-
matchArithmeticLogic8Instruction_$50($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$50>;
|
|
3277
|
-
matchArithmeticLogic8Instruction_$51($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$51>;
|
|
3278
|
-
matchArithmeticLogic8Instruction_$51_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$51_$0>;
|
|
3279
|
-
matchArithmeticLogic8Instruction_$51_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$51_$0_1>;
|
|
3280
|
-
matchArithmeticLogic8Instruction_$51_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$51_$0_2>;
|
|
3281
|
-
matchArithmeticLogic8Instruction_$52($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$52>;
|
|
3282
|
-
matchArithmeticLogic8Instruction_$53($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$53>;
|
|
3283
|
-
matchArithmeticLogic8Instruction_$53_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$53_$0>;
|
|
3284
|
-
matchArithmeticLogic8Instruction_$53_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$53_$0_1>;
|
|
3285
|
-
matchArithmeticLogic8Instruction_$53_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$53_$0_2>;
|
|
3286
|
-
matchArithmeticLogic8Instruction_$54($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$54>;
|
|
3287
|
-
matchArithmeticLogic8Instruction_$55($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$55>;
|
|
3288
2717
|
matchIncrementDecrement8Instruction($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction>;
|
|
3289
2718
|
matchIncrementDecrement8Instruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_1>;
|
|
3290
2719
|
matchIncrementDecrement8Instruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_2>;
|
|
@@ -3294,22 +2723,6 @@ export declare class Parser {
|
|
|
3294
2723
|
matchIncrementDecrement8Instruction_6($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_6>;
|
|
3295
2724
|
matchIncrementDecrement8Instruction_7($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_7>;
|
|
3296
2725
|
matchIncrementDecrement8Instruction_8($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_8>;
|
|
3297
|
-
matchIncrementDecrement8Instruction_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$0>;
|
|
3298
|
-
matchIncrementDecrement8Instruction_$0_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$0_$0>;
|
|
3299
|
-
matchIncrementDecrement8Instruction_$0_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$0_$0_1>;
|
|
3300
|
-
matchIncrementDecrement8Instruction_$0_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$0_$0_2>;
|
|
3301
|
-
matchIncrementDecrement8Instruction_$1($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$1>;
|
|
3302
|
-
matchIncrementDecrement8Instruction_$1_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$1_$0>;
|
|
3303
|
-
matchIncrementDecrement8Instruction_$1_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$1_$0_1>;
|
|
3304
|
-
matchIncrementDecrement8Instruction_$1_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$1_$0_2>;
|
|
3305
|
-
matchIncrementDecrement8Instruction_$2($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$2>;
|
|
3306
|
-
matchIncrementDecrement8Instruction_$2_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$2_$0>;
|
|
3307
|
-
matchIncrementDecrement8Instruction_$2_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$2_$0_1>;
|
|
3308
|
-
matchIncrementDecrement8Instruction_$2_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$2_$0_2>;
|
|
3309
|
-
matchIncrementDecrement8Instruction_$3($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$3>;
|
|
3310
|
-
matchIncrementDecrement8Instruction_$3_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$3_$0>;
|
|
3311
|
-
matchIncrementDecrement8Instruction_$3_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$3_$0_1>;
|
|
3312
|
-
matchIncrementDecrement8Instruction_$3_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$3_$0_2>;
|
|
3313
2726
|
matchGeneralPurposeArithmeticInstruction($$dpth: number, $$cr?: ErrorTracker): Nullable<GeneralPurposeArithmeticInstruction>;
|
|
3314
2727
|
matchGeneralPurposeArithmeticInstruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<GeneralPurposeArithmeticInstruction_1>;
|
|
3315
2728
|
matchGeneralPurposeArithmeticInstruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<GeneralPurposeArithmeticInstruction_2>;
|
|
@@ -3369,62 +2782,6 @@ export declare class Parser {
|
|
|
3369
2782
|
matchRotateShiftInstruction_32($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_32>;
|
|
3370
2783
|
matchRotateShiftInstruction_33($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_33>;
|
|
3371
2784
|
matchRotateShiftInstruction_34($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_34>;
|
|
3372
|
-
matchRotateShiftInstruction_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$0>;
|
|
3373
|
-
matchRotateShiftInstruction_$0_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$0_$0>;
|
|
3374
|
-
matchRotateShiftInstruction_$0_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$0_$0_1>;
|
|
3375
|
-
matchRotateShiftInstruction_$0_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$0_$0_2>;
|
|
3376
|
-
matchRotateShiftInstruction_$1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$1>;
|
|
3377
|
-
matchRotateShiftInstruction_$1_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$1_$0>;
|
|
3378
|
-
matchRotateShiftInstruction_$1_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$1_$0_1>;
|
|
3379
|
-
matchRotateShiftInstruction_$1_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$1_$0_2>;
|
|
3380
|
-
matchRotateShiftInstruction_$2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$2>;
|
|
3381
|
-
matchRotateShiftInstruction_$2_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$2_$0>;
|
|
3382
|
-
matchRotateShiftInstruction_$2_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$2_$0_1>;
|
|
3383
|
-
matchRotateShiftInstruction_$2_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$2_$0_2>;
|
|
3384
|
-
matchRotateShiftInstruction_$3($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$3>;
|
|
3385
|
-
matchRotateShiftInstruction_$3_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$3_$0>;
|
|
3386
|
-
matchRotateShiftInstruction_$3_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$3_$0_1>;
|
|
3387
|
-
matchRotateShiftInstruction_$3_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$3_$0_2>;
|
|
3388
|
-
matchRotateShiftInstruction_$4($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$4>;
|
|
3389
|
-
matchRotateShiftInstruction_$4_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$4_$0>;
|
|
3390
|
-
matchRotateShiftInstruction_$4_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$4_$0_1>;
|
|
3391
|
-
matchRotateShiftInstruction_$4_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$4_$0_2>;
|
|
3392
|
-
matchRotateShiftInstruction_$5($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$5>;
|
|
3393
|
-
matchRotateShiftInstruction_$5_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$5_$0>;
|
|
3394
|
-
matchRotateShiftInstruction_$5_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$5_$0_1>;
|
|
3395
|
-
matchRotateShiftInstruction_$5_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$5_$0_2>;
|
|
3396
|
-
matchRotateShiftInstruction_$6($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$6>;
|
|
3397
|
-
matchRotateShiftInstruction_$6_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$6_$0>;
|
|
3398
|
-
matchRotateShiftInstruction_$6_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$6_$0_1>;
|
|
3399
|
-
matchRotateShiftInstruction_$6_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$6_$0_2>;
|
|
3400
|
-
matchRotateShiftInstruction_$7($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$7>;
|
|
3401
|
-
matchRotateShiftInstruction_$7_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$7_$0>;
|
|
3402
|
-
matchRotateShiftInstruction_$7_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$7_$0_1>;
|
|
3403
|
-
matchRotateShiftInstruction_$7_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$7_$0_2>;
|
|
3404
|
-
matchRotateShiftInstruction_$8($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$8>;
|
|
3405
|
-
matchRotateShiftInstruction_$8_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$8_$0>;
|
|
3406
|
-
matchRotateShiftInstruction_$8_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$8_$0_1>;
|
|
3407
|
-
matchRotateShiftInstruction_$8_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$8_$0_2>;
|
|
3408
|
-
matchRotateShiftInstruction_$9($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$9>;
|
|
3409
|
-
matchRotateShiftInstruction_$9_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$9_$0>;
|
|
3410
|
-
matchRotateShiftInstruction_$9_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$9_$0_1>;
|
|
3411
|
-
matchRotateShiftInstruction_$9_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$9_$0_2>;
|
|
3412
|
-
matchRotateShiftInstruction_$10($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$10>;
|
|
3413
|
-
matchRotateShiftInstruction_$10_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$10_$0>;
|
|
3414
|
-
matchRotateShiftInstruction_$10_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$10_$0_1>;
|
|
3415
|
-
matchRotateShiftInstruction_$10_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$10_$0_2>;
|
|
3416
|
-
matchRotateShiftInstruction_$11($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$11>;
|
|
3417
|
-
matchRotateShiftInstruction_$11_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$11_$0>;
|
|
3418
|
-
matchRotateShiftInstruction_$11_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$11_$0_1>;
|
|
3419
|
-
matchRotateShiftInstruction_$11_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$11_$0_2>;
|
|
3420
|
-
matchRotateShiftInstruction_$12($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$12>;
|
|
3421
|
-
matchRotateShiftInstruction_$12_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$12_$0>;
|
|
3422
|
-
matchRotateShiftInstruction_$12_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$12_$0_1>;
|
|
3423
|
-
matchRotateShiftInstruction_$12_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$12_$0_2>;
|
|
3424
|
-
matchRotateShiftInstruction_$13($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$13>;
|
|
3425
|
-
matchRotateShiftInstruction_$13_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$13_$0>;
|
|
3426
|
-
matchRotateShiftInstruction_$13_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$13_$0_1>;
|
|
3427
|
-
matchRotateShiftInstruction_$13_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$13_$0_2>;
|
|
3428
2785
|
matchBitManipulationInstruction($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction>;
|
|
3429
2786
|
matchBitManipulationInstruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_1>;
|
|
3430
2787
|
matchBitManipulationInstruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_2>;
|
|
@@ -3438,30 +2795,6 @@ export declare class Parser {
|
|
|
3438
2795
|
matchBitManipulationInstruction_10($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_10>;
|
|
3439
2796
|
matchBitManipulationInstruction_11($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_11>;
|
|
3440
2797
|
matchBitManipulationInstruction_12($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_12>;
|
|
3441
|
-
matchBitManipulationInstruction_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$0>;
|
|
3442
|
-
matchBitManipulationInstruction_$0_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$0_$0>;
|
|
3443
|
-
matchBitManipulationInstruction_$0_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$0_$0_1>;
|
|
3444
|
-
matchBitManipulationInstruction_$0_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$0_$0_2>;
|
|
3445
|
-
matchBitManipulationInstruction_$1($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$1>;
|
|
3446
|
-
matchBitManipulationInstruction_$1_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$1_$0>;
|
|
3447
|
-
matchBitManipulationInstruction_$1_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$1_$0_1>;
|
|
3448
|
-
matchBitManipulationInstruction_$1_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$1_$0_2>;
|
|
3449
|
-
matchBitManipulationInstruction_$2($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$2>;
|
|
3450
|
-
matchBitManipulationInstruction_$2_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$2_$0>;
|
|
3451
|
-
matchBitManipulationInstruction_$2_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$2_$0_1>;
|
|
3452
|
-
matchBitManipulationInstruction_$2_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$2_$0_2>;
|
|
3453
|
-
matchBitManipulationInstruction_$3($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$3>;
|
|
3454
|
-
matchBitManipulationInstruction_$3_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$3_$0>;
|
|
3455
|
-
matchBitManipulationInstruction_$3_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$3_$0_1>;
|
|
3456
|
-
matchBitManipulationInstruction_$3_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$3_$0_2>;
|
|
3457
|
-
matchBitManipulationInstruction_$4($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$4>;
|
|
3458
|
-
matchBitManipulationInstruction_$4_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$4_$0>;
|
|
3459
|
-
matchBitManipulationInstruction_$4_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$4_$0_1>;
|
|
3460
|
-
matchBitManipulationInstruction_$4_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$4_$0_2>;
|
|
3461
|
-
matchBitManipulationInstruction_$5($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$5>;
|
|
3462
|
-
matchBitManipulationInstruction_$5_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$5_$0>;
|
|
3463
|
-
matchBitManipulationInstruction_$5_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$5_$0_1>;
|
|
3464
|
-
matchBitManipulationInstruction_$5_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$5_$0_2>;
|
|
3465
2798
|
matchOffset($$dpth: number, $$cr?: ErrorTracker): Nullable<Offset>;
|
|
3466
2799
|
matchOffset_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Offset_1>;
|
|
3467
2800
|
matchOffset_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Offset_2>;
|
|
@@ -3536,16 +2869,16 @@ export declare class Parser {
|
|
|
3536
2869
|
matchSimpleEscapeSequence_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<SimpleEscapeSequence_$0_2>;
|
|
3537
2870
|
matchOctalEscapeSequence($$dpth: number, $$cr?: ErrorTracker): Nullable<OctalEscapeSequence>;
|
|
3538
2871
|
matchHexadecimalEscapeSequence($$dpth: number, $$cr?: ErrorTracker): Nullable<HexadecimalEscapeSequence>;
|
|
3539
|
-
|
|
3540
|
-
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
|
|
2872
|
+
matchNoQuoteChar($$dpth: number, $$cr?: ErrorTracker): Nullable<NoQuoteChar>;
|
|
2873
|
+
matchNoDoubleQuoteChar($$dpth: number, $$cr?: ErrorTracker): Nullable<NoDoubleQuoteChar>;
|
|
2874
|
+
matchQuottedStr($$dpth: number, $$cr?: ErrorTracker): Nullable<QuottedStr>;
|
|
2875
|
+
matchQuottedStr_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<QuottedStr_$0>;
|
|
2876
|
+
matchQuottedStr_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<QuottedStr_$0_1>;
|
|
2877
|
+
matchQuottedStr_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<QuottedStr_$0_2>;
|
|
2878
|
+
matchDoubleQuottedStr($$dpth: number, $$cr?: ErrorTracker): Nullable<DoubleQuottedStr>;
|
|
2879
|
+
matchDoubleQuottedStr_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<DoubleQuottedStr_$0>;
|
|
2880
|
+
matchDoubleQuottedStr_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<DoubleQuottedStr_$0_1>;
|
|
2881
|
+
matchDoubleQuottedStr_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<DoubleQuottedStr_$0_2>;
|
|
3549
2882
|
matchComment($$dpth: number, $$cr?: ErrorTracker): Nullable<Comment>;
|
|
3550
2883
|
matchOriginDirective($$dpth: number, $$cr?: ErrorTracker): Nullable<OriginDirective>;
|
|
3551
2884
|
matchFilename($$dpth: number, $$cr?: ErrorTracker): Nullable<Filename>;
|
|
@@ -3555,6 +2888,7 @@ export declare class Parser {
|
|
|
3555
2888
|
matchOutputDirective($$dpth: number, $$cr?: ErrorTracker): Nullable<OutputDirective>;
|
|
3556
2889
|
matchOutputDirective_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<OutputDirective_$0>;
|
|
3557
2890
|
matchDeviceDirective($$dpth: number, $$cr?: ErrorTracker): Nullable<DeviceDirective>;
|
|
2891
|
+
matchEndDirective($$dpth: number, $$cr?: ErrorTracker): Nullable<EndDirective>;
|
|
3558
2892
|
test(): boolean;
|
|
3559
2893
|
parse(): ParseResult;
|
|
3560
2894
|
mark(): PosInfo;
|