—use
strict;
-tiny
=> [
qw/frame_type offset_delta stack/
],
'""'
=> [
[
sub
{
'Frame type'
} =>
sub
{
$_
[0]->frameTypeStringificator(
$_
[0]->frame_type) } ],
[
sub
{
'Offset delta'
} =>
sub
{
$_
[0]->offset_delta } ],
[
sub
{
'Stack'
} =>
sub
{
$_
[0]->arrayStringificator(
$_
[0]->stack) } ]
];
# ABSTRACT: same_locals_1_stack_item_frame_extended
our
$VERSION
=
'0.009'
;
# VERSION
our
$AUTHORITY
=
'cpan:JDDPAUSE'
;
# AUTHORITY
has
frame_type
=> (
is
=>
'ro'
,
required
=> 1,
isa
=> U1 );
has
offset_delta
=> (
is
=>
'ro'
,
required
=> 1,
isa
=> U2 );
has
stack
=> (
is
=>
'ro'
,
required
=> 1,
isa
=> ArrayRef[VerificationTypeInfo] );
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
MarpaX::Java::ClassFile::Struct::SameLocals1StackItemFrameExtended - same_locals_1_stack_item_frame_extended
=head1 VERSION
version 0.009
=head1 AUTHOR
Jean-Damien Durand <jeandamiendurand@free.fr>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2016 by Jean-Damien Durand.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut