mirror of https://gitlab.com/basile.b/dexed.git
messages, prevent some false positives in message semantic
This commit is contained in:
parent
ed21c110e0
commit
541d14911c
|
@ -1057,6 +1057,11 @@ begin
|
||||||
begin
|
begin
|
||||||
if rng.empty then
|
if rng.empty then
|
||||||
break;
|
break;
|
||||||
|
idt := '';
|
||||||
|
// core|std.exception...
|
||||||
|
if rng.front = '.' then
|
||||||
|
rng.popFront^.popUntil(alp)
|
||||||
|
else
|
||||||
idt := rng.popUntil(alp)^.takeWhile(alp).yield;
|
idt := rng.popUntil(alp)^.takeWhile(alp).yield;
|
||||||
if idt = '' then
|
if idt = '' then
|
||||||
exit;
|
exit;
|
||||||
|
|
Loading…
Reference in New Issue