X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FScope%2FUpper.pm;h=84de02eea6ebf8befe98320881ff7d27f3d421fa;hb=44bbbdcdafa5707a753abb9de5c5d01cd7388880;hp=1d6b4d11a70a002d5396f4d3999df902ae9275c0;hpb=0a7ed27cbdbb90c176fc6be11c48e70776c8df84;p=perl%2Fmodules%2FScope-Upper.git diff --git a/lib/Scope/Upper.pm b/lib/Scope/Upper.pm index 1d6b4d1..84de02e 100644 --- a/lib/Scope/Upper.pm +++ b/lib/Scope/Upper.pm @@ -9,13 +9,13 @@ Scope::Upper - Act on upper scopes. =head1 VERSION -Version 0.08 +Version 0.10 =cut our $VERSION; BEGIN { - $VERSION = '0.08'; + $VERSION = '0.10'; } =head1 SYNOPSIS @@ -144,11 +144,27 @@ will set C<$x> to a reference to the string C<'foo'>. Other sigils (C<'@'>, C<'%'>, C<'&'> and C<'*'>) require C<$value> to be a reference of the corresponding type. When the symbol is given by a string, it is resolved when the actual localization takes place and not when C is called. -This means that +Thus, if the symbol name is not qualified, it will refer to the variable in the package where the localization actually takes place and not in the one where the C call was compiled. +For example, + + { + package Scope; + sub new { localize '$tag', $_[0] => UP } + } + + { + package Tool; + { + Scope->new; + ... + } + } - sub tag { localize '$x', $_[0] => UP } +will localize C<$Tool::tag> and not C<$Scope::tag>. -will localize in the caller's namespace. +Note that if C<$what> is a string denoting a variable that wasn't declared beforehand, the relevant slot will be vivified as needed and won't be deleted from the glob when the localization ends. +This situation never arises with C because it only compiles when the localized variable is already declared. +Although I believe it shouldn't be a problem as glob slots definedness is pretty much an implementation detail, this behaviour may change in the future if proved harmful. =back @@ -158,6 +174,8 @@ Similar to L but for array and hash elements. If C<$what> is a glob, the slot to fill is determined from which type of reference C<$value> is ; otherwise it's inferred from the sigil. C<$key> is either an array index or a hash key, depending of which kind of variable you localize. +Just like for L, when C<$what> is a string pointing to an undeclared variable, it will be vivified but the variable itself will be empty when the localization ends (although it will still exist in its parent glob). + =head2 C Similiar to L, but for deleting variables or array/hash elements. @@ -209,7 +227,7 @@ The previous example can then be "corrected" : # not reached }->(); -will righteously set C<$num> to C<26>. +will rightfully set C<$num> to C<26>. =head1 CONSTANTS @@ -378,6 +396,9 @@ L (standard since perl 5.006). L, L, L, L. +L is a thin wrapper around L that gives you a continuation passing style interface to L. +It's easier to use, but it requires you to have control over the scope where you want to return. + =head1 AUTHOR Vincent Pit, C<< >>, L. @@ -386,7 +407,8 @@ You can contact me by mail or on C (vincent). =head1 BUGS -Please report any bugs or feature requests to C, or through the web interface at L. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. +Please report any bugs or feature requests to C, or through the web interface at L. +I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. =head1 SUPPORT @@ -404,7 +426,7 @@ Thanks to Shawn M. Moore for motivation. =head1 COPYRIGHT & LICENSE -Copyright 2008-2009 Vincent Pit, all rights reserved. +Copyright 2008,2009,2010 Vincent Pit, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.