-tiny
=> [
qw/_constant_pool attribute_name_index attribute_length number_of_exceptions exception_index_table/
],
'""'
=> [
[
sub
{
'Exceptions count'
} =>
sub
{
$_
[0]->number_of_exceptions } ],
[
sub
{
'Exceptions'
} =>
sub
{
$_
[0]->arrayStringificator([
map
{
$_
[0]->_constant_pool->[
$_
]} @{
$_
[0]->exception_index_table}]) } ]
];
our
$VERSION
=
'0.009'
;
our
$AUTHORITY
=
'cpan:JDDPAUSE'
;
has
_constant_pool
=> (
is
=>
'rw'
,
required
=> 1,
isa
=> ArrayRef);
has
attribute_name_index
=> (
is
=>
'ro'
,
required
=> 1,
isa
=> U2 );
has
attribute_length
=> (
is
=>
'ro'
,
required
=> 1,
isa
=> U4 );
has
number_of_exceptions
=> (
is
=>
'ro'
,
required
=> 1,
isa
=> U2 );
has
exception_index_table
=> (
is
=>
'ro'
,
required
=> 1,
isa
=> ArrayRef[U2] );
1;