Detecting Unused Variables

2007-02-28 Thread Tyler Bird
I was wondering if there was some way I could run a script and have it detect all unused variables for me? Anyone got an answer hopefully with out using and add on module? I was also running how I could run time check all my modules. Tyler

Re: Detecting Unused Variables

2007-03-05 Thread Perrin Harkins
On 2/28/07, Tyler Bird <[EMAIL PROTECTED]> wrote: I was wondering if there was some way I could run a script and have it detect all unused variables for me? No. You might be able to write a tool to do static analysis on your code using PPI (from CPAN). It's what Perl::Critic uses. - Perrin