@andrivet/z80-assembler 1.3.2 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/index.js +7 -7
- package/index.mjs +490 -482
- package/lib/grammar/z80.d.ts +5 -4
- package/package.json +1 -1
package/lib/grammar/z80.d.ts
CHANGED
|
@@ -2326,9 +2326,9 @@ export declare class NoDoubleQuoteChar {
|
|
|
2326
2326
|
export declare class QuottedStr {
|
|
2327
2327
|
kind: ASTKinds.QuottedStr;
|
|
2328
2328
|
pos: PosInfo;
|
|
2329
|
-
chars: QuottedStr_$0[];
|
|
2329
|
+
chars: [QuottedStr_$0, ...QuottedStr_$0[]];
|
|
2330
2330
|
elements: AstElements;
|
|
2331
|
-
constructor(pos: PosInfo, chars: QuottedStr_$0[]);
|
|
2331
|
+
constructor(pos: PosInfo, chars: [QuottedStr_$0, ...QuottedStr_$0[]]);
|
|
2332
2332
|
}
|
|
2333
2333
|
export type QuottedStr_$0 = QuottedStr_$0_1 | QuottedStr_$0_2;
|
|
2334
2334
|
export type QuottedStr_$0_1 = NoQuoteChar;
|
|
@@ -2336,9 +2336,9 @@ export type QuottedStr_$0_2 = EscapeSequence;
|
|
|
2336
2336
|
export declare class DoubleQuottedStr {
|
|
2337
2337
|
kind: ASTKinds.DoubleQuottedStr;
|
|
2338
2338
|
pos: PosInfo;
|
|
2339
|
-
chars: DoubleQuottedStr_$0[];
|
|
2339
|
+
chars: [DoubleQuottedStr_$0, ...DoubleQuottedStr_$0[]];
|
|
2340
2340
|
elements: AstElements;
|
|
2341
|
-
constructor(pos: PosInfo, chars: DoubleQuottedStr_$0[]);
|
|
2341
|
+
constructor(pos: PosInfo, chars: [DoubleQuottedStr_$0, ...DoubleQuottedStr_$0[]]);
|
|
2342
2342
|
}
|
|
2343
2343
|
export type DoubleQuottedStr_$0 = DoubleQuottedStr_$0_1 | DoubleQuottedStr_$0_2;
|
|
2344
2344
|
export type DoubleQuottedStr_$0_1 = NoDoubleQuoteChar;
|
|
@@ -2892,6 +2892,7 @@ export declare class Parser {
|
|
|
2892
2892
|
test(): boolean;
|
|
2893
2893
|
parse(): ParseResult;
|
|
2894
2894
|
mark(): PosInfo;
|
|
2895
|
+
private loopPlus;
|
|
2895
2896
|
private loop;
|
|
2896
2897
|
private run;
|
|
2897
2898
|
private choice;
|