Checking in changes prior to tagging of version 0.40_03. Changelog diff is:
[gitmo/Mouse.git] / lib / Mouse / Meta / Role / Method.pm
CommitLineData
bc71de54 1package Mouse::Meta::Role::Method;
bc69ee88 2use Mouse::Util; # enables strict and warnings
bc71de54 3
f3bb863f 4use Mouse::Meta::Method;
5our @ISA = qw(Mouse::Meta::Method);
bc71de54 6
9010458d 7sub _new {
8 my $class = shift;
9 return $class->meta->new_object(@_)
10 if $class ne __PACKAGE__;
11 return bless {@_}, $class;
12}
13
bc71de54 141;
bc71de54 15__END__
16
1820fffe 17=head1 NAME
18
19Mouse::Meta::Role::Method - A Mouse Method metaclass for Roles
20
a25ca8d6 21=head1 VERSION
22
2b68f76d 23This document describes Mouse version 0.40_03
a25ca8d6 24
1820fffe 25=head1 SEE ALSO
26
27L<Moose::Meta::Role::Method>
28
29=cut
30