@guihz/trading-vue-editor-tes 0.0.64 → 0.0.66
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-TrqZFWTO.js → parserTccWorker-DoXo8HMM.js} +100 -97
- package/lib/assets/{scriptsRunWorker-zqpcJjcs.js → scriptsRunWorker-D39bcXaY.js} +2 -2
- package/lib/components/editor/parseScript/buildInFuncNamespace/string.d.ts +1 -1
- package/lib/components/editor/parseScript/constants.d.ts +1 -0
- package/lib/components/editor/parseScript/visitorParser.d.ts +1 -0
- package/lib/trading-vue-editor.js +289 -289
- package/lib/trading-vue-editor.umd.cjs +16 -16
- package/package.json +1 -1
@@ -34,7 +34,7 @@ export default class BuildInStr {
|
|
34
34
|
contains({ source, str }: IStrArgs): boolean;
|
35
35
|
endswith({ source, str }: IStrArgs): boolean;
|
36
36
|
tonumber({ string }: IStrArgs): number | undefined;
|
37
|
-
tostring({ value, format }: IStrArgs): string |
|
37
|
+
tostring({ value, format }: IStrArgs): string | undefined;
|
38
38
|
private _arrToStr;
|
39
39
|
substring({ source, begin_pos, end_pos }: IStrArgs): string;
|
40
40
|
startswith({ source, str }: IStrArgs): boolean;
|
@@ -32,6 +32,7 @@ export default class ParserVisitor extends ParserUtils {
|
|
32
32
|
private _endExport;
|
33
33
|
private _importLibs;
|
34
34
|
private _getImportLibraryFunc;
|
35
|
+
private _isEndExpr?;
|
35
36
|
constructor(props: IKeyObjectValue, comments: IKeyObjectValue[], getImportLibraryFunc: (obj: IKeyObjectValue) => IKeyObjectValue);
|
36
37
|
get overloadsFuncs(): IKeyValue[];
|
37
38
|
get errors(): IError[];
|