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

This commit is contained in:
Rodrigo Rodriguez 2024-02-08 14:40:58 -03:00
parent 04f1baa470
commit fe4e1a38f0

View file

@ -1096,9 +1096,9 @@ export class KeywordsExpressions {
]; ];
keywords[i++] = [ keywords[i++] = [
/^\s*(MERGE)(\s*)(.*)/gim, /^\s*MERGE\s*(.*)/gim,
($0, $1, $2, $3) => { ($0, $1, $2, $3) => {
return `await img.mergeImage({pid: pid, files: [${$3}]})`; return `await img.mergeImage({pid: pid, files: [${$2}]})`;
} }
]; ];