mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-14 11:09:41 +02:00
* ppudump: Proper tag for a source file in XML.
git-svn-id: trunk@24411 -
This commit is contained in:
parent
eb26ccfbe7
commit
15b3695a0e
@ -184,6 +184,7 @@ type
|
||||
procedure WriteDef(Output: TPpuOutput); override;
|
||||
public
|
||||
FileTime: TDateTime;
|
||||
constructor Create(AParent: TPpuContainerDef); override;
|
||||
end;
|
||||
|
||||
TPpuProcOption = (poProcedure, poFunction, poConstructor, poDestructor, poOperator,
|
||||
@ -1078,6 +1079,12 @@ begin
|
||||
Output.WriteStr('Time', FormatDateTime('yyyy"-"mm"-"dd hh":"nn":"ss', FileTime));
|
||||
end;
|
||||
|
||||
constructor TPpuSrcFile.Create(AParent: TPpuContainerDef);
|
||||
begin
|
||||
inherited Create(AParent);
|
||||
DefType:=dtFile;
|
||||
end;
|
||||
|
||||
{ TPpuOutput }
|
||||
|
||||
procedure TPpuOutput.SetIndent(AValue: integer);
|
||||
|
Loading…
Reference in New Issue
Block a user