mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-24 06:29:24 +02:00
GetDeclaration of "is nested" procedure type is now correct
git-svn-id: trunk@21852 -
This commit is contained in:
parent
abaff904a1
commit
b424ce2aeb
@ -2133,7 +2133,9 @@ begin
|
|||||||
S.Add(TypeName);
|
S.Add(TypeName);
|
||||||
GetArguments(S);
|
GetArguments(S);
|
||||||
If IsOfObject then
|
If IsOfObject then
|
||||||
S.Add(' of object');
|
S.Add(' of object')
|
||||||
|
else if IsNested then
|
||||||
|
S.Add(' is nested');
|
||||||
If Full then
|
If Full then
|
||||||
Result:=IndentStrings(S,Length(S[0])+Length(S[1])+1)
|
Result:=IndentStrings(S,Length(S[0])+Length(S[1])+1)
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user