|
NAMEDevel::Declare::Interface - Interface to Devel-Declare parsers.DESCRIPTIONA higher level interface to Devel-Declare. This is the package you will interact with the most when using Devel::Declare::Parser.SYNOPSISpackage My::Keyword::Method; use strict; use warnings; use Devel::Declare::Parser; # Look at Exporter-Declare to have most of this done for you. sub import { my $class = shift; my $destination = caller; enhance( $destination, "make_method", "method" ); no strict 'refs'; *{ $destination . '::make_method' } = \&my_keyword; } sub make_method { my ( $name, $code ) = @_; my $dest = caller; no strict 'refs'; *{ $destination . '::' . $name } = $code; } 1; APIThe following functions are all exported by default.
FENNEC PROJECTThis module is part of the Fennec project. See Fennec for more details. Fennec is a project to develop an extendable and powerful testing framework. Together the tools that make up the Fennec framework provide a potent testing environment.The tools provided by Fennec are also useful on their own. Sometimes a tool created for Fennec is useful outside the greator framework. Such tools are turned into their own projects. This is one such project.
AUTHORSChad Granum exodist7@gmail.comCOPYRIGHTCopyright (C) 2010 Chad GranumDevel-Declare-Interface is free software; Standard perl licence. Devel-Declare-Parser is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the license for more details. POD ERRORSHey! The above document had some coding errors, which are explained below:
Visit the GSP FreeBSD Man Page Interface. |