Codetool: prevent recursion in ResolveBaseTypeOfIdentifier. Issue 39897

`fdfFunctionResult` will cause `FindExpressionTypeOfTerm` to `ResolveChildren` and recurse forever if the node starts with open brackets. If the cursor is not on an identifier, it should not be a function and the flag is not needed.
This commit is contained in:
Martin 2022-10-26 14:58:42 +02:00
parent 204e3d5734
commit e1dc8a96d9
2 changed files with 26 additions and 3 deletions

View File

@ -10460,6 +10460,7 @@ var EndPos, SubStartPos: integer;
var
OldFlags: TFindDeclarationFlags;
MaybeFuncAtCursor: Boolean;
begin
Result:=CleanExpressionType;
if AliasType<>nil then
@ -10473,9 +10474,9 @@ begin
DebugLn('[TFindDeclarationTool.ReadOperandTypeAtCursor] A Atom=',GetAtom);
debugln(['TFindDeclarationTool.ReadOperandTypeAtCursor StartContext=',Params.ContextNode.DescAsString,'="',dbgstr(Src,Params.ContextNode.StartPos,15),'"']);
{$ENDIF}
if (AtomIsIdentifier)
MaybeFuncAtCursor := AtomIsIdentifier or UpAtomIs('INHERITED');
if (MaybeFuncAtCursor)
or (CurPos.Flag=cafRoundBracketOpen)
or UpAtomIs('INHERITED')
or UpAtomIs('ARRAY')
then begin
// read variable
@ -10484,7 +10485,9 @@ begin
if EndPos>MaxEndPos then
EndPos:=MaxEndPos;
OldFlags:=Params.Flags;
Params.Flags:=(Params.Flags*fdfGlobals)+[fdfFunctionResult];
Params.Flags:=(Params.Flags*fdfGlobals);
if MaybeFuncAtCursor then
Params.Flags:=Params.Flags+[fdfFunctionResult];
Result:=FindExpressionTypeOfTerm(SubStartPos,EndPos,Params,true,AliasType);
Params.Flags:=OldFlags;
MoveCursorToCleanPos(EndPos);

View File

@ -0,0 +1,20 @@
program bug39897;
{$mode objfpc}{$H+}
uses
Classes;
const
b = $1;
a = ((b)+1);
procedure foo(x,y: byte);
begin
end;
procedure foo(x,y: word);
begin
end;
begin
foo{declaration:foo}(b, a);
end.