NAME
B::LintSubs - Perl compiler backend to check sub linkage
SYNOPSIS
perl -MO=LintSubs [FILE] [-e PROGRAM]
DESCRIPTION
When using use strict
, subroutine names are not checked at the callsite; this makes the following a perfectly valid program at compiletime, that only blows up at runtime
use
strict;
foobar();
When using the B::LintSubs
checker instead, this is detected:
Imported functions from other modules are of course detected:
In order to handle situations where external code is conditionally referenced at runtime, any fully-qualified references to other functions are printed with a warning, but not considered fatal. The programmer is assumed to Know What He Is Doing in this case:
Data::Dumper::Dump(
"Hello"
) }'
-e syntax OK
AUTHOR
Paul Evans <leonerd@leonerd.org.uk>
Based on the B::Lint
module by Malcolm Beattie, <mbeattie@sable.ox.ac.uk>.