fix(basic.gblib): update ChatServices.ts #420

Closed
eltociear wants to merge 2540 commits from patch-1 into main
Showing only changes of commit 23d048c9fd - Show all commits

View file

@ -485,6 +485,7 @@ export class GBVMService extends GBService {
code = code.replace(/this\./gm, 'await this.'); code = code.replace(/this\./gm, 'await this.');
code = code.replace(/function/gm, 'async function'); code = code.replace(/function/gm, 'async function');
code = code.replace('ubound = async', 'ubound ='); // TODO: Improve this. code = code.replace('ubound = async', 'ubound ='); // TODO: Improve this.
code = code.replace('isArray = async', 'isArray ='); // TODO: Waiting for a real compiler.
return code; return code;
} }