fix(basic.gblib): update ChatServices.ts #420

Closed
eltociear wants to merge 2540 commits from patch-1 into main
Showing only changes of commit fb429717dc - Show all commits

View file

@ -767,14 +767,14 @@ export class KeywordsExpressions {
]; ];
keywords[i++] = [ keywords[i++] = [
/^\s*(exit)/gim, /^\s*(exit)\s*/gim,
() => { () => {
return `return;`; return `return;`;
} }
]; ];
keywords[i++] = [ keywords[i++] = [
/^\s*(END)/gim, /^\s*(END)\s*/gim,
() => { () => {
return `return;`; return `return;`;
} }