@guihz/trading-vue-editor-tes 0.1.61 → 0.1.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/assets/{parserTccWorker-ITwmyfLs.js → parserTccWorker-Bpuz4vCT.js} +1592 -1571
- package/lib/assets/{scriptsRunWorker-3vkIyQLM.js → scriptsRunWorker-DvjQUdYy.js} +2815 -2803
- package/lib/components/editor/v4/parseScript/visitorParser.d.ts +1 -1
- package/lib/components/editor/v5/parseScript/parseToJs.d.ts +2 -1
- package/lib/components/editor/v5/parseScript/visitorParser.d.ts +1 -1
- package/lib/components/editor/v6/parseScript/parseToJs.d.ts +2 -1
- package/lib/components/editor/v6/parseScript/visitorParser.d.ts +1 -1
- package/lib/trading-vue-editor.es.packages.js +364 -362
- package/lib/trading-vue-editor.umd.packages.mjs +2 -2
- package/package.json +1 -1
|
@@ -207,7 +207,7 @@ export default class ParserVisitor extends ParserUtils {
|
|
|
207
207
|
visitArrowFunction: (ctx: IKeyObjectValue) => IKeyObjectValue;
|
|
208
208
|
visitArrowFunctionParameters: (ctx: IKeyObjectValue) => IKeyObjectValue[];
|
|
209
209
|
visitFormalParameterList: (ctx: IKeyObjectValue) => IKeyObjectValue[];
|
|
210
|
-
visitFormalParameterArg: (ctx: IKeyObjectValue) => IKeyObjectValue;
|
|
210
|
+
visitFormalParameterArg: (ctx: IKeyObjectValue) => IKeyObjectValue | undefined;
|
|
211
211
|
private _verifyArgsDefaultValue;
|
|
212
212
|
visitAssignmentOperator: (ctx: IKeyObjectValue) => any;
|
|
213
213
|
visitTypeArray: (ctx: IKeyObjectValue) => string;
|
|
@@ -34,6 +34,7 @@ export default class ParseToJs {
|
|
|
34
34
|
private _exportEles;
|
|
35
35
|
private _scriptType?;
|
|
36
36
|
private _tmpVarNames;
|
|
37
|
+
private _importCodes;
|
|
37
38
|
constructor(prefix: string, scriptType?: VScriptType, libTitle?: string);
|
|
38
39
|
preParser(values: IKeyObjectValue[]): string | undefined;
|
|
39
40
|
parser(values: IKeyObjectValue[]): {
|
|
@@ -53,7 +54,7 @@ export default class ParseToJs {
|
|
|
53
54
|
hasLeftVisibleBarTime: boolean;
|
|
54
55
|
hasRightVisibleBarTime: boolean;
|
|
55
56
|
errors: IError[];
|
|
56
|
-
}
|
|
57
|
+
};
|
|
57
58
|
private _getExportCodes;
|
|
58
59
|
private _parserStmt;
|
|
59
60
|
private _parserEnumStatement;
|
|
@@ -238,7 +238,7 @@ export default class ParserVisitor extends ParserUtils {
|
|
|
238
238
|
visitArrowFunction: (ctx: IKeyObjectValue) => IKeyObjectValue;
|
|
239
239
|
visitArrowFunctionParameters: (ctx: IKeyObjectValue) => IKeyObjectValue[];
|
|
240
240
|
visitFormalParameterList: (ctx: IKeyObjectValue) => IKeyObjectValue[];
|
|
241
|
-
visitFormalParameterArg: (ctx: IKeyObjectValue) => IKeyObjectValue;
|
|
241
|
+
visitFormalParameterArg: (ctx: IKeyObjectValue) => IKeyObjectValue | undefined;
|
|
242
242
|
private _verifyArgsDefaultValue;
|
|
243
243
|
visitArrowMethod: (ctx: IKeyObjectValue) => IKeyObjectValue;
|
|
244
244
|
private _exportArgsTypeVerify;
|
|
@@ -31,6 +31,7 @@ export default class ParseToJs {
|
|
|
31
31
|
private _exportEles;
|
|
32
32
|
private _scriptType?;
|
|
33
33
|
private _tmpVarNames;
|
|
34
|
+
private _importCodes;
|
|
34
35
|
constructor(prefix: string, scriptType?: VScriptType, libTitle?: string);
|
|
35
36
|
preParser(values: IKeyObjectValue[]): string | undefined;
|
|
36
37
|
parser(values: IKeyObjectValue[]): {
|
|
@@ -50,7 +51,7 @@ export default class ParseToJs {
|
|
|
50
51
|
hasLeftVisibleBarTime: boolean;
|
|
51
52
|
hasRightVisibleBarTime: boolean;
|
|
52
53
|
errors: IError[];
|
|
53
|
-
}
|
|
54
|
+
};
|
|
54
55
|
private _getExportCodes;
|
|
55
56
|
private _parserStmt;
|
|
56
57
|
private _parserEnumStatement;
|
|
@@ -242,7 +242,7 @@ export default class ParserVisitor extends ParserUtils {
|
|
|
242
242
|
visitArrowFunction: (ctx: IKeyObjectValue) => IKeyObjectValue;
|
|
243
243
|
visitArrowFunctionParameters: (ctx: IKeyObjectValue) => IKeyObjectValue[];
|
|
244
244
|
visitFormalParameterList: (ctx: IKeyObjectValue) => IKeyObjectValue[];
|
|
245
|
-
visitFormalParameterArg: (ctx: IKeyObjectValue) => IKeyObjectValue;
|
|
245
|
+
visitFormalParameterArg: (ctx: IKeyObjectValue) => IKeyObjectValue | undefined;
|
|
246
246
|
private _verifyArgsDefaultValue;
|
|
247
247
|
visitArrowMethod: (ctx: IKeyObjectValue) => IKeyObjectValue;
|
|
248
248
|
private _exportArgsTypeVerify;
|