|
@@ -589,6 +589,7 @@ implementation
|
|
|
exit;
|
|
|
p := tunarynode(p).left;
|
|
|
end;
|
|
|
+ labeln,
|
|
|
blockn,
|
|
|
callparan:
|
|
|
p := tunarynode(p).left;
|
|
@@ -600,6 +601,13 @@ implementation
|
|
|
exit;
|
|
|
p := tunarynode(p).left;
|
|
|
end;
|
|
|
+ addrn:
|
|
|
+ begin
|
|
|
+ inc(result);
|
|
|
+ if (result = NODE_COMPLEXITY_INF) then
|
|
|
+ exit;
|
|
|
+ p := tunarynode(p).left;
|
|
|
+ end;
|
|
|
typeconvn:
|
|
|
begin
|
|
|
{ may be more complex in some cases }
|