Quote Originally Posted by Lifepower
Tried this app only to see how it calculates coupling and data abstraction (since the rest of its features also exist in Delphi IDE), but it didn't work since project uses operator overloading everywhere. In fact, it brakes at Asphyre 4 source code. :lol: :cry:
You and 'your' operator overloading :roll:

But its a good point, they shouldn't claim something which isn't true. However,
I run this app today on one of my projects and Delphi 7 did not found such possible threat:

Code:
procedure p1;
var
  i: integer;
  procedure p2;
  var 
    i: integer;
  begin
    do something with i;
  end;
  do something with i;
end;
And this application did.

Regards,

Wodzu