X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDevel%2FDeclare.pm;h=12280ab44cfe475047410ef5e40285641d1fb307;hb=5c82d5478de9d26a18ff812912b91b9170126b31;hp=15f1b54762a28757cccb12b828cc262a3b05738a;hpb=107322d1ee3cb2c35b37a69b6a0e04656a3c0588;p=p5sagit%2FDevel-Declare.git diff --git a/lib/Devel/Declare.pm b/lib/Devel/Declare.pm index 15f1b54..12280ab 100644 --- a/lib/Devel/Declare.pm +++ b/lib/Devel/Declare.pm @@ -4,7 +4,7 @@ use strict; use warnings; use 5.008001; -our $VERSION = '0.005002'; +our $VERSION = '0.006005'; use constant DECLARE_NAME => 1; use constant DECLARE_PROTO => 2; @@ -590,7 +590,7 @@ We'll add this to what gets 'injected' at the beginning of the method source. return ' BEGIN { MethodHandlers::inject_scope }; '; } -So at the beginning of every method, we assing a callback that will get invoked +So at the beginning of every method, we are passing a callback that will get invoked at the I of the method's compilation... i.e. exactly then the closing C<'}'> is compiled. @@ -660,11 +660,16 @@ osfameron Eosfameron@cpan.orgE - first draft of documentation =head1 COPYRIGHT AND LICENSE +This library is free software under the same terms as perl itself + Copyright (c) 2007, 2008, 2009 Matt S Trout Copyright (c) 2008, 2009 Florian Ragwitz -This library is free software under the same terms as perl itself +stolen_chunk_of_toke.c based on toke.c from the perl core, which is + +Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +2000, 2001, 2002, 2003, 2004, 2005, 2006, by Larry Wall and others =cut