mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-06 00:00:16 +02:00
codetools: identifier completion: implemented completing method declaration when cursor started name, bug #14078
git-svn-id: trunk@20765 -
This commit is contained in:
parent
7fc09eb060
commit
2e9f5cede4
@ -1642,7 +1642,8 @@ var
|
||||
}
|
||||
Can:=true;
|
||||
end
|
||||
else if (Node.Desc=ctnProcedure) and (not NodeIsMethodBody(Node))
|
||||
else if (((Node.Desc=ctnProcedure) and (not NodeIsMethodBody(Node)))
|
||||
or ((Node.Desc=ctnProcedureHead) and (not NodeIsMethodBody(Node.Parent))))
|
||||
and (not (CurrentIdentifierList.StartAtomBehind.Flag
|
||||
in [cafEdgedBracketOpen,cafRoundBracketOpen]))
|
||||
then begin
|
||||
|
Loading…
Reference in New Issue
Block a user