Sophie

Sophie

distrib > Fedora > 18 > i386 > by-pkgid > a33d845846fb586be2993c6eed227050 > files > 31

perl-MooseX-MethodAttributes-0.28-1.fc18.noarch.rpm

package TestClass;

use Moose;
use MooseX::MethodAttributes;

sub foo : SomeAttribute AnotherAttribute('with argument') {}

sub bar : SomeAttribute {}

after foo => sub {};

package SubClass;

use Moose;
use MooseX::MethodAttributes;

extends qw/TestClass/;

sub foo : Attributes Attributes Attributes {}

sub bar {}  # no attribute!

1;