fix(basic.gblib): Allow MERGE keyword in storage #386. @othonlima
This commit is contained in:
parent
f0b256f728
commit
04f1baa470
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ export class KeywordsExpressions {
|
||||||
}
|
}
|
||||||
accum.soFar.push(curr);
|
accum.soFar.push(curr);
|
||||||
}
|
}
|
||||||
if (curr.split('"').length % 2 == 0) {
|
if (curr.split('`').length % 2 == 0) {
|
||||||
accum.isConcatting = !accum.isConcatting;
|
accum.isConcatting = !accum.isConcatting;
|
||||||
}
|
}
|
||||||
return accum;
|
return accum;
|
||||||
|
|
Loading…
Add table
Reference in a new issue