codetools: added debugging

git-svn-id: trunk@21655 -
This commit is contained in:
mattias 2009-09-11 21:23:53 +00:00
parent 69adb869d5
commit 6120ad89ba
2 changed files with 2 additions and 2 deletions

View File

@ -885,7 +885,7 @@ begin
if TypeData=nil then exit(true);
ParamCount:=TypeData^.ParamCount;
{$IFDEF VerboseTypeData}
DebugLn('[TEventsCodeTool.CreateExprListFromMethodTypeData] ParamCount=',ParamCount);
DebugLn(['[TEventsCodeTool.CreateExprListFromMethodTypeData] ParamCount=',ParamCount]);
{$ENDIF}
if ParamCount>0 then begin
Offset:=0;

View File

@ -9449,7 +9449,7 @@ var i: integer;
begin
Result:='';
for i:=0 to Count-1 do begin
Result:=Result+'{'+ExprTypeToString(Items[i])+'}'+LineEnding;
Result:=Result+'{'+IntToStr(i)+'/'+IntToStr(Count)+':'+ExprTypeToString(Items[i])+'}'+LineEnding;
end;
end;