Take me over?
The maintainer of this distribution is looking for someone to take over!
If you're interested then please contact them via
email.
NAME
Methods::CheckNames - Statically check for named methods
SYNOPSIS
my Foo $object;
$object->method(); # dies at compile time unless a method can be found
DESCRIPTION
This module enables simplistic checking of method names for typed my variables.
It's not much more than a proof of concept.
TODO
Use the
can
meta method instead ofgv_fetchmethod
Make the checking pluggable
Checking should be lexically scoped. Not a huge issue for now, since
my Foo $var
is not commonly used.
VERSION CONTROL
This module is maintained using Darcs. You can get the latest version from http://nothingmuch.woobling.org/code, and use darcs send
to commit changes.
AUTHOR
Yuval Kogman <nothingmuch@woobling.org>
COPYRIGHT
Copyright (c) 2008 Yuval Kogman. All rights reserved
This program is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.