| MooseX-Aliases documentation | Contained in the MooseX-Aliases distribution. |
MooseX::Aliases::Meta::Trait::Method - method metaclass trait for MooseX::Aliases
version 0.10
This trait adds an attribute to metaclasses of aliased methods, to track which method they were aliased from.
Returns the name of the method that this method is an alias of.
This software is copyright (c) 2011 by Jesse Luehrs.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| MooseX-Aliases documentation | Contained in the MooseX-Aliases distribution. |
package MooseX::Aliases::Meta::Trait::Method; BEGIN { $MooseX::Aliases::Meta::Trait::Method::VERSION = '0.10'; } use Moose::Role; # ABSTRACT: method metaclass trait for L<MooseX::Aliases> has aliased_from => ( is => 'ro', isa => 'Str', ); no Moose::Role; 1; __END__