@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.
@@ -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 | number | undefined;
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;
@@ -248,3 +248,4 @@ export declare const DEFAULT_EXPORT_TEST: {
248
248
  description: string;
249
249
  codeStr: string;
250
250
  };
251
+ export declare const JS_KEYWORDS: string[];
@@ -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[];