
B::Lint::StrictOO - Apply strict to classes and methods

version 0.04


From the command line:
perl -MB::Lint::StrictOO -MO=Lint,oo my_file.pl
Against a program my_file.pl:
sub Hickory::Dickory::dock;
Mouse->dockk; # Class Mouse doesn't exist
Hickory::Dickory->dock;
Hickory::Dickory->$_; # Symbolic method call
$obj->dockk; # Object can't do method
$obj->dock;
$obj->$_; # Symbolic method call


You can find documentation for this module with the perldoc command.
perldoc B::Lint::StrictOO
You can also look for information at:


Josh Jore <jjore@cpan.org>

This software is copyright (c) 2011 by Josh Jore.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.