Variable-Declaration
view release on metacpan or search on metacpan
lib/Variable/Declaration/Info.pm view on Meta::CPAN
package Variable::Declaration::Info;
use v5.12.0;
use strict;
use warnings;
sub new {
my $class = shift;
my %args = @_;
bless \%args => $class;
}
sub declaration { $_[0]->{declaration} }
sub type { $_[0]->{type} }
sub attributes { $_[0]->{attributes} }
1;
__END__
=encoding utf-8
( run in 0.351 second using v1.01-cache-2.11-cpan-65fba6d93b7 )