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

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.638 second using v1.00-cache-2.02-grep-82fe00e-cpan-48ebf85a1963 )