mirror of https://gitlab.com/basile.b/dexed.git
prevent successive tests
This commit is contained in:
parent
a4c142d345
commit
5145259308
|
@ -944,9 +944,8 @@ begin
|
||||||
fTokKind := tkIdent;
|
fTokKind := tkIdent;
|
||||||
while(true) do
|
while(true) do
|
||||||
begin
|
begin
|
||||||
if isWhite(readerNext^) then break;
|
if isWhite(readerNext^) or isSymbol(reader^) or isOperator1(reader^) then
|
||||||
if isSymbol(reader^) then break;
|
break;
|
||||||
if isOperator1(reader^) then break;
|
|
||||||
end;
|
end;
|
||||||
if keywordsMap.match(fLineBuf[FTokStart..fTokStop-1]) then
|
if keywordsMap.match(fLineBuf[FTokStart..fTokStop-1]) then
|
||||||
begin
|
begin
|
||||||
|
|
Loading…
Reference in New Issue