in reply to Re^3: "use strict" not too strict
in thread "use strict" not too strict

I came across B::Lint, but it won't catch things like --
use strict; my $a = foo() if 0;
in that it still *runs* the code in question, and only flags undefined routines if they are actually *called*. Oh, well.
--
Jeff Boes
Database Engineer
Nexcerpt, Inc.
vox 269.226.9550 ext 24
fax 269.349.9076
 http://www.nexcerpt.com
...Nexcerpt...Connecting People With Expertise

Replies are listed 'Best First'.
Re^5: "use strict" not too strict
by Aristotle (Chancellor) on Jul 17, 2003 at 22:47 UTC
    I was more talking about ::Xref and ::Terse/::Concise to inspect what symbols are actually used to look up subroutines through.

    Makeshifts last the longest.