X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FMeta%2FMethod.pm;h=a018662e933b4566be3c8dac6300fe5a2553c079;hb=2669196e30954006103bfb6a88f60457ebf2691c;hp=9c0b5e3477fed978ed4006b3dfcc5222abb66d04;hpb=53875581c2449e237cc1135b8c2cf1674a874aed;p=gitmo%2FMouse.git diff --git a/lib/Mouse/Meta/Method.pm b/lib/Mouse/Meta/Method.pm index 9c0b5e3..a018662 100755 --- a/lib/Mouse/Meta/Method.pm +++ b/lib/Mouse/Meta/Method.pm @@ -19,7 +19,23 @@ sub body { $_[0]->{body} } sub name { $_[0]->{name} } sub package_name{ $_[0]->{package} } +sub fully_qualified_name { + my $self = shift; + return $self->package_name . '::' . $self->name; +} 1; __END__ + +=head1 NAME + +Mouse::Meta::Method - A Mouse Method metaclass + +=head1 SEE ALSO + +L + +L + +=cut