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

This commit is contained in:
Rodrigo Rodriguez 2024-02-08 14:19:59 -03:00
parent f0b256f728
commit 04f1baa470

View file

@ -52,7 +52,7 @@ export class KeywordsExpressions {
}
accum.soFar.push(curr);
}
if (curr.split('"').length % 2 == 0) {
if (curr.split('`').length % 2 == 0) {
accum.isConcatting = !accum.isConcatting;
}
return accum;