new (basic.gbapp): ALLOW ROLE keyword.

This commit is contained in:
Rodrigo Rodriguez 2023-08-25 18:55:49 -03:00
parent 6e5d025ba6
commit c71b616f60

View file

@ -264,7 +264,7 @@ export class GBVMService extends GBService {
// Defines local utility BASIC functions.
const ubound = (gbarray) => {return gbarray.length - 1};
const ubound = (gbarray) => {return gbarray ? gbarray.length - 1: 0};
const isarray = (gbarray) => {return Array.isArray(gbarray) };
// Proxies remote functions as BASIC functions.