NAME
MooseX::Declare::Syntax::MethodDeclaration - Handles method declarations
DESCRIPTION
A role for keyword handlers that gives a framework to add or modify methods or things that look like methods.
CONSUMES
ATTRIBUTES
prototype_beginning
An optional string that will be prepended to the specified signature that is specified in the declaration. A popular example is found in the around
method modifier handler:
my $handler = MethodModifier->new(
identifier => 'around',
modifier_type => 'around',
prototype_beginning => '$orig: $self',
);
This will mean that the signature (Str $foo)
will become $orig: $self, Str $foo
and ()
will become $orig: $self
.
REQUIRED METHODS
register_method_declaration
Object->register_method_declaration (ClassName $class, Object $method)
This method will be called with the target class name and the final built method meta object. The value it returns will be the value returned where the method was declared.
METHODS
parse
Object->parse (Object $ctx);
Reads a name and a prototype and builts the method meta object which will then be passed to "register_method_declaration".
SEE ALSO
AUTHOR, COPYRIGHT & LICENSE
See MooseX::Declare