| Devel-Events documentation | view source | Contained in the Devel-Events distribution. |
Devel::Events::Generator::Require - Event generator for loading of code using
require.
use Devel::Events::Generator::Require; my $g = Devel::Events::Generator::Require->new( handler => $h ); $g->enable(); # all calls to require() will generate a try_require and a require_finished event $g->disable(); # events disabled
This generator allows instrumentation of module/file loading via require.
This includes use statements.
Fired before require actually happens.
The file that require was given.
Note that when doing <require Foo::Bar>, the parameter passed into
CORE::require is actually <Foo/Bar.pm>, and not the module name.
Fired at the end of every require, successful and unsuccessful.
The file that require was given.
The entry of file in %INC.
The load error, if any.
The value returend by the file. This is always a scalar.
Make this instance the enabled one (disabling any other instance which is enabled).
This only applies to the object_bless method.
Disable this instance. Will stop generating object_bless events.
=item try_require
Generates the try_require event.
Generates the require_finished event.
| Devel-Events documentation | view source | Contained in the Devel-Events distribution. |