+ print convnodeflags in printnodeinfo

git-svn-id: trunk@38679 -
This commit is contained in:
nickysn 2018-04-04 13:20:41 +00:00
parent 4a3a64d8f4
commit 99a1cf89b3

View File

@ -1021,9 +1021,24 @@ implementation
end;
procedure ttypeconvnode.printnodeinfo(var t : text);
var
first: Boolean;
i: ttypeconvnodeflag;
begin
inherited printnodeinfo(t);
write(t,', convtype = ',convtype);
write(t,', convnodeflags = [');
first:=true;
for i:=low(ttypeconvnodeflag) to high(ttypeconvnodeflag) do
if i in convnodeflags then
begin
if not first then
write(t,',')
else
first:=false;
write(t,i);
end;
write(t,']');
end;