http://qs321.pair.com?node_id=602261


in reply to Devel::GC::Helper and unused variables

Secondly, does anyone know of a method to track down unused variables in large perl scripts, without the manual rigmarole?

I think the Name "%s::%s" used only once: possible typo warning will do what you want (see perldiag for caveats). You are using warnings, aren't you? ;-)

Otherwise, maybe there is something in either Quickly detecting variable writes or in diotalevi's Devel::Spy that could suit your needs. If you figure something out, please post your solution.

Replies are listed 'Best First'.
Re^2: Devel::GC::Helper and unused variables
by 0xbeef (Hermit) on Feb 27, 2007 at 21:59 UTC
    Yes, I have tried with both perl -w and use warnings, but this does not seem to detect unused declared variables that I add to test with.

    Thanks for the other info, I am trying some more now...

    Niel