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,7 +1057,12 @@ begin
|
|||
begin
|
||||
if rng.empty then
|
||||
break;
|
||||
idt := rng.popUntil(alp)^.takeWhile(alp).yield;
|
||||
idt := '';
|
||||
// core|std.exception...
|
||||
if rng.front = '.' then
|
||||
rng.popFront^.popUntil(alp)
|
||||
else
|
||||
idt := rng.popUntil(alp)^.takeWhile(alp).yield;
|
||||
if idt = '' then
|
||||
exit;
|
||||
result := messageSemantic.getType(idt);
|
||||
|
|
Loading…
Reference in New Issue