For Python, there is a script called importchecker which tells you if you have unnecessary import statements.
Is there a similar utility for Perl use (and require) statements?
|
For Python, there is a script called importchecker which tells you if you have unnecessary Is there a similar utility for Perl |
|||
|
Take a look at Devel::TraceUse it might give you a chunk of what you're looking for. |
|||||||||
|
|
Here is a script I wrote to attempt this. It is very simplistic and will not automate anything for you but it will give you something to start with.
|
|||||||||
|
use Module;could be a false negative.use strict qw( refs );could be a false positive.use Module qw( :ALL );could be a false negative and a false positive. – ikegami Sep 5 '12 at 17:51