mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-14 21:49:06 +02:00
* Some small improvements from Andrey Sobol: better specialization declaration in markdown, write more detailed end log
git-svn-id: trunk@48489 -
(cherry picked from commit f128e64ccb
)
This commit is contained in:
parent
9d8955d25c
commit
91e62e553a
@ -1473,6 +1473,13 @@ begin
|
|||||||
if aEL.ExternalName<>'' then
|
if aEL.ExternalName<>'' then
|
||||||
aLine:=aLine+' external name '''+ael.ExternalName+'''';
|
aLine:=aLine+' external name '''+ael.ExternalName+'''';
|
||||||
if Assigned(aEL.AncestorType) then
|
if Assigned(aEL.AncestorType) then
|
||||||
|
if (aEL.AncestorType is TPasSpecializeType) then
|
||||||
|
begin
|
||||||
|
aLine:=aLine+'(specialize ';
|
||||||
|
aLine:=aLine+ TPasSpecializeType(aEL.AncestorType).DestType.Name;
|
||||||
|
aLine:=aLine+ '<,>)';
|
||||||
|
end
|
||||||
|
else
|
||||||
begin
|
begin
|
||||||
aLine:=aLine+' ('+ael.AncestorType.Name;
|
aLine:=aLine+' ('+ael.AncestorType.Name;
|
||||||
if Assigned(ael.Interfaces) and (aEl.Interfaces.Count>0) then
|
if Assigned(ael.Interfaces) and (aEl.Interfaces.Count>0) then
|
||||||
|
@ -1621,7 +1621,7 @@ end;
|
|||||||
|
|
||||||
procedure TFPDocWriter.OutputResults();
|
procedure TFPDocWriter.OutputResults();
|
||||||
begin
|
begin
|
||||||
DoLog('Documentation process finished.');
|
DoLog('Package: %s - Documentation process finished.', [FPackage.Name]);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TFPDocWriter.ConvertExtShort(AContext: TPasElement;
|
function TFPDocWriter.ConvertExtShort(AContext: TPasElement;
|
||||||
|
Loading…
Reference in New Issue
Block a user