X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FMeta%2FMethod.pm;h=a018662e933b4566be3c8dac6300fe5a2553c079;hb=cc08dff9f13ae25057d4e84ddfacb4bdf44fea67;hp=cbe349aa561c20ed0de1f0cd45478587c77da64f;hpb=1820fffecb0bd1da64edc16ecde534178b841d14;p=gitmo%2FMouse.git diff --git a/lib/Mouse/Meta/Method.pm b/lib/Mouse/Meta/Method.pm index cbe349a..a018662 100755 --- a/lib/Mouse/Meta/Method.pm +++ b/lib/Mouse/Meta/Method.pm @@ -19,6 +19,10 @@ 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; @@ -32,4 +36,6 @@ Mouse::Meta::Method - A Mouse Method metaclass L +L + =cut