Codetools: Prevent another error in identifier completion while defining a function. Issue #32972, patch by Włodzimierz Bień.

This commit is contained in:
Juha 2025-03-05 13:39:52 +02:00
parent 2232ccde07
commit 517925d781

View File

@ -1508,13 +1508,15 @@ begin
exit; // there is a previous declaration without 'overload'
end;
end;
end else begin
if (CurrentIdentifierList.StartContext.Node.Parent<>nil) and
(CurrentIdentifierList.StartContext.Node.Parent.Parent=FoundContext.Node)
then begin // skip adding itself at function/procedure parameters definition
debugln(['TIdentCompletionTool.CollectAllIdentifiers ','skipped "',GetIdentifier(Ident),'"']);
exit;
end;
end;
if (FoundContext.Node.FirstChild<>nil) and
(CurrentIdentifierList.StartContext.Node.StartPos>=FoundContext.Node.FirstChild.StartPos) and
(CurrentIdentifierList.StartContext.Node.EndPos<=FoundContext.Node.FirstChild.EndPos)
then //inside parameters declaration
begin // skip adding itself at function/procedure parameters definition
debugln(['TIdentCompletionTool.CollectAllIdentifiers ','skipped "',GetIdentifier(Ident),'"']);
exit;
end;
end;