Devel-Agent
view release on metacpan or search on metacpan
lib/Devel/Agent.pm view on Meta::CPAN
=item * ignore_blocks=>HasRef[Int]
This hashref reprents what perl phazed blocks to ignore, the defaults are.
{
BEGIN=>1,
END=>1,
INIT=>1,
CHECK=>1,
UNITCHECK=>1,
}
The default values used to generate the hashref contained in in @DB::@PHAZES
=cut
our @PHAZES=(qw(BEGIN END INIT CHECK UNITCHECK));
has ignore_blocks=>(
#isa=>HashRef[Int],
is=>'ro',
default=>sub {
return { map { ($_,1) } @PHAZES}
},
);
=item * constructor_methods=>HashRef[Int]
( run in 0.257 second using v1.01-cache-2.11-cpan-dcdd9aafbe2 )