mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-03 20:49:35 +01:00
* ppudump: Fixed json and xml output of inline types in array declaration.
git-svn-id: trunk@26277 -
This commit is contained in:
parent
af49e50a3c
commit
eea69a2947
@ -2824,7 +2824,7 @@ begin
|
||||
writeln([space,' Range : ',arrdef.RangeLow,' to ',arrdef.RangeHigh]);
|
||||
write ([space,' Options : ']);
|
||||
readarraydefoptions(arrdef);
|
||||
readsymtable('symbols');
|
||||
readsymtable('symbols', arrdef);
|
||||
end;
|
||||
|
||||
ibprocdef :
|
||||
|
||||
@ -319,7 +319,7 @@ type
|
||||
TPpuArrayOptions = set of TPpuArrayOption;
|
||||
|
||||
{ TPpuArrayDef }
|
||||
TPpuArrayDef = class(TPpuDef)
|
||||
TPpuArrayDef = class(TPpuContainerDef)
|
||||
protected
|
||||
procedure WriteDef(Output: TPpuOutput); override;
|
||||
public
|
||||
@ -760,6 +760,7 @@ end;
|
||||
constructor TPpuArrayDef.Create(AParent: TPpuContainerDef);
|
||||
begin
|
||||
inherited Create(AParent);
|
||||
ItemsName:='Types';
|
||||
DefType:=dtArray;
|
||||
ElType:=TPpuRef.Create;
|
||||
RangeType:=TPpuRef.Create;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user