fix(basic.gblib): Allow MERGE keyword in storage #380. @othonlima
This commit is contained in:
parent
0c2e91fcaf
commit
dee0c8cca7
1 changed files with 4 additions and 2 deletions
|
@ -786,8 +786,10 @@ export class GBVMService extends GBService {
|
||||||
|
|
||||||
line = line.replace(/^\s*\d+\s*/gi, '');
|
line = line.replace(/^\s*\d+\s*/gi, '');
|
||||||
|
|
||||||
for (let j = 0; j < keywords.length; j++) {
|
if (!table){
|
||||||
line = line.replace(keywords[j][0], keywords[j][1]);
|
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.
|
// Pre-process "off-line" static KEYWORDS.
|
||||||
|
|
Loading…
Add table
Reference in a new issue