fix(basic.gblib): Allow MERGE keyword in storage #380. @othonlima

This commit is contained in:
Rodrigo Rodriguez 2023-12-11 22:13:36 -03:00
parent 0c2e91fcaf
commit dee0c8cca7

View file

@ -786,8 +786,10 @@ export class GBVMService extends GBService {
line = line.replace(/^\s*\d+\s*/gi, '');
for (let j = 0; j < keywords.length; j++) {
line = line.replace(keywords[j][0], keywords[j][1]);
if (!table){
for (let j = 0; j < keywords.length; j++) {
line = line.replace(keywords[j][0], keywords[j][1]); // TODO: Investigate delay here.
}
}
// Pre-process "off-line" static KEYWORDS.