MooseX::Declare::Syntax::MethodDeclaration.3pm

Langue: en

Version: 2009-05-05 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

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

MooseX::Declare::Syntax::KeywordHandling

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

MooseX::Declare
MooseX::Declare::Syntax::NamespaceHandling
MooseX::Declare::Syntax::MooseSetup
MooseX::Method::Signatures
See MooseX::Declare