— |
-tiny => [ qw/_constant_pool attribute_name_index attribute_length sourcefile_index/ ],
'""' => [
[ sub { 'Source file#' . $_ [0]->sourcefile_index } => sub { $_ [0]->_constant_pool->[ $_ [0]->sourcefile_index] } ]
];
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 sourcefile_index => ( is => 'ro' , required => 1, isa => U2 );
1;
|