Tagged Questions

9
votes
5answers
609 views

Tools to detect Dead code in delphi2007 or above

Are there good tools to detect dead code in DELPHI2007 or above? That can integrate with the IDE? The option to look at blue dots is just time consuming, so it’s ruled out.
5
votes
8answers
521 views

Finding unused (aka “dead”) code in Delphi

Are there any tools that can determine if a function/procedure/method/entire class is used? I've seen tools that can help a knowledgeable developer track down unused fragments of code (most are for ...
3
votes
3answers
149 views

Delphi - What routines are NOT called? [closed]

Possible Duplicate: Tools to detect Dead code in delphi2007 or above Is there a way to determine what functions/procedures are in my .pas files which are NOT called? For example, I have a ...
3
votes
8answers
581 views

Is there a way to locate unused event handlers in Delphi?

Finding dead code in Delphi is usually real simple: just compile and then scan for routines missing their blue dots. The smart linker's very good about tracking them down, most of the time. Problem ...