— |
-tiny => [ qw/_constant_pool name_index access_flags/ ],
'""' => [
[ sub { 'Name#' . $_ [0]->name_index } => sub { ( $_ [0]->name_index > 0) ? $_ [0]->_constant_pool->[ $_ [0]->name_index] : '' } ],
[ sub { 'Access flags' } => sub { $_ [0]->accessFlagsStringificator( $_ [0]->access_flags) } ]
];
our $VERSION = '0.009' ;
our $AUTHORITY = 'cpan:JDDPAUSE' ;
has _constant_pool => ( is => 'rw' , required => 1, isa => ArrayRef);
has name_index => ( is => 'ro' , required => 1, isa => U2 );
has access_flags => ( is => 'ro' , required => 1, isa => U2 );
1;
|