|
@@ -124,6 +124,7 @@ implementation
|
|
|
{ not in one statement, won't work because of b- }
|
|
|
result := foreachnode(tcallnode(n).methodpointerinit,f,arg) or result;
|
|
|
result := foreachnode(tcallnode(n).methodpointer,f,arg) or result;
|
|
|
+ result := foreachnode(tcallnode(n)._funcretnode,f,arg) or result;
|
|
|
result := foreachnode(tcallnode(n).methodpointerdone,f,arg) or result;
|
|
|
end;
|
|
|
ifn, whilerepeatn, forn, tryexceptn, tryfinallyn:
|
|
@@ -171,6 +172,7 @@ implementation
|
|
|
begin
|
|
|
result := foreachnodestatic(procmethod,tcallnode(n).methodpointerinit,f,arg) or result;
|
|
|
result := foreachnodestatic(procmethod,tcallnode(n).methodpointer,f,arg) or result;
|
|
|
+ result := foreachnodestatic(procmethod,tcallnode(n)._funcretnode,f,arg) or result;
|
|
|
result := foreachnodestatic(procmethod,tcallnode(n).methodpointerdone,f,arg) or result;
|
|
|
end;
|
|
|
ifn, whilerepeatn, forn, tryexceptn, tryfinallyn:
|