X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FScope-Upper.git;a=blobdiff_plain;f=README;h=15bb1ec4605ba4544036305244a377a8aa8cc345;hp=e4518c40b751f75e0a7b192c7e8a37e99394bf68;hb=HEAD;hpb=1b224b7b9cb2d4685c426140e5e67d392aeb1059 diff --git a/README b/README index e4518c4..1f7b09e 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Scope::Upper - Act on upper scopes. VERSION - Version 0.25 + Version 0.34 SYNOPSIS "reap", "localize", "localize_elem", "localize_delete" and "WORDS" : @@ -570,21 +570,29 @@ WORDS my $upper_context = UP; my $upper_context = UP $from; - The context of the scope just above $from. + The context of the scope just above $from. If $from points to the + top-level scope in the current stack, then a warning is emitted and + $from is returned (see "DIAGNOSTICS" for details). "SUB" my $sub_context = SUB; my $sub_context = SUB $from; - The context of the closest subroutine above $from. Note that $from is - returned if it is already a subroutine context ; hence "SUB SUB == SUB". + The context of the closest subroutine above $from. If $from already + designates a subroutine context, then it is returned as-is ; hence "SUB + SUB == SUB". If no subroutine context is present in the call stack, then + a warning is emitted and the current context is returned (see + "DIAGNOSTICS" for details). "EVAL" my $eval_context = EVAL; my $eval_context = EVAL $from; - The context of the closest eval above $from. Note that $from is returned - if it is already an eval context ; hence "EVAL EVAL == EVAL". + The context of the closest eval above $from. If $from already designates + an eval context, then it is returned as-is ; hence "EVAL EVAL == EVAL". + If no eval context is present in the call stack, then a warning is + emitted and the current context is returned (see "DIAGNOSTICS" for + details). Getting a context from a level Here, $level should denote a number of scopes above the current one. @@ -595,7 +603,10 @@ WORDS my $context = SCOPE; my $context = SCOPE $level; - The $level-th upper context, regardless of its type. + The $level-th upper context, regardless of its type. If $level points + above the top-level scope in the current stack, then a warning is + emitted and the top-level context is returned (see "DIAGNOSTICS" for + details). "CALLER" my $context = CALLER; @@ -604,7 +615,9 @@ WORDS The context of the $level-th upper subroutine/eval/format. It kind of corresponds to the context represented by "caller $level", but while e.g. "caller 0" refers to the caller context, "CALLER 0" will refer to - the top scope in the current context. + the top scope in the current context. If $level points above the + top-level scope in the current stack, then a warning is emitted and the + top-level context is returned (see "DIAGNOSTICS" for details). Examples Where "reap" fires depending on the $cxt : @@ -669,6 +682,20 @@ WORDS # (*) Note that uplevel() will croak if you pass that scope frame, # because it cannot target eval scopes. +DIAGNOSTICS + "Cannot target a scope outside of the current stack" + This warning is emitted when "UP", "SCOPE" or "CALLER" end up pointing + to a context that is above the top-level context of the current stack. + It indicates that you tried to go higher than the main scope, or to + point across a "DESTROY" method, a signal handler, an overloaded or tied + method call, a "require" statement or a "sort" callback. In this case, + the resulting context is the highest reachable one. + + "No targetable %s scope in the current stack" + This warning is emitted when you ask for an "EVAL" or "SUB" context and + no such scope can be found in the call stack. The resulting context is + the current one. + EXPORT The functions "reap", "localize", "localize_elem", "localize_delete", "unwind", "yield", "leave", "want_at", "context_info" and "uplevel" are @@ -683,6 +710,11 @@ EXPORT ':words' and ':all'. CAVEATS + It is not possible to act upon a scope that belongs to another perl + 'stack', i.e. to target a scope across a "DESTROY" method, a signal + handler, an overloaded or tied method call, a "require" statement or a + "sort" callback. + Be careful that local variables are restored in the reverse order in which they were localized. Consider those examples: @@ -737,6 +769,11 @@ CAVEATS version of "uplevel" should still run way faster than the pure-Perl version from Sub::Uplevel. + Starting from "perl" 5.19.4, it is unfortunately no longer possible to + reliably throw exceptions from "uplevel"'d code while the debugger is in + use. This may be solved in a future version depending on how the core + evolves. + DEPENDENCIES perl 5.6.1. @@ -760,7 +797,7 @@ SEE ALSO Scope::Escape. AUTHOR - Vincent Pit, "", . + Vincent Pit "". You can contact me by mail or on "irc.perl.org" (vincent). @@ -776,17 +813,19 @@ SUPPORT perldoc Scope::Upper - Tests code coverage report is available at - . - ACKNOWLEDGEMENTS Inspired by Ricardo Signes. + The reimplementation of a large part of this module for perl 5.24 was + provided by David Mitchell. His work was sponsored by the Perl 5 Core + Maintenance Grant from The Perl Foundation. + Thanks to Shawn M. Moore for motivation. COPYRIGHT & LICENSE - Copyright 2008,2009,2010,2011,2012,2013,2014 Vincent Pit, all rights - reserved. + Copyright + 2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2021,2023 + 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.