mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 21:38:27 +02:00
Codetools: Prevent another error in identifier completion while defining a function. Issue #32972, patch by Włodzimierz Bień.
This commit is contained in:
parent
2232ccde07
commit
517925d781
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user