new(all): isArray function.

This commit is contained in:
Rodrigo Rodriguez 2021-07-31 12:26:46 -03:00
parent ff635bba43
commit 23d048c9fd

View file

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