X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FFunction%2FParameters.pm;h=3a479963967bc53083d49ed2710ff5a2110d9002;hb=a23979e19f7ed9c169b640d6c1079bd4f2a1833f;hp=0f4a82d578cbdb186b5dd8ad26e39c58ef4a9ace;hpb=7947f7ce418bbcde81608456917b72252b4c1934;p=p5sagit%2FFunction-Parameters.git diff --git a/lib/Function/Parameters.pm b/lib/Function/Parameters.pm index 0f4a82d..3a47996 100644 --- a/lib/Function/Parameters.pm +++ b/lib/Function/Parameters.pm @@ -34,6 +34,11 @@ my %type_map = ( shift => '$self', attrs => ':method', }, + classmethod => { + name => 'optional', + shift => '$class', + attrs => ':method', + }, ); sub import { @@ -180,14 +185,15 @@ that you pass a hash reference in the import list: use Function::Parameters { proc => 'function', meth => 'method' }; # -or- use Function::Parameters { proc => 'function' }; # -or- - use Function::Parameters { meth => 'method' }; + use Function::Parameters { meth => 'method' }; # etc. The first line creates two keywords, C and C (for defining functions and methods, respectively). The last two lines only create one keyword. Generally the hash keys can be any identifiers you want while the -values have to be either C, C, or a hash reference (see -below). The difference between C and C is that Cs -automatically L their first argument into C<$self>. +values have to be either C, C, C or a hash +reference (see below). The difference between C and C is that +Cs automatically L their first argument into +C<$self> (Cs are similar but shift into C<$class>). The following shortcuts are available: @@ -256,9 +262,11 @@ turns into =back -Plain C<'function'> is equivalent to C<< { name => 'optional' } >>, and plain +Plain C<'function'> is equivalent to C<< { name => 'optional' } >>, plain C<'method'> is equivalent to -C<< { name => 'optional', shift => '$self', attrs => ':method' } >>. +C<< { name => 'optional', shift => '$self', attrs => ':method' } >>, and plain +C<'classmethod'> is equivalent to +C<< { name => 'optional', shift => '$class', attrs => ':method' } >>. =head2 Syntax and generated code