X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FScope%2FUpper.pm;h=377e434e5bd8adc8c6e2be7e2bd4f20b692155c8;hb=refs%2Ftags%2Fv0.17;hp=c40f1c8d48cf0515eb7c529bdc0b658250bed8c9;hpb=cd2c11568010f16946d259e1f024774e5360cf4a;p=perl%2Fmodules%2FScope-Upper.git diff --git a/lib/Scope/Upper.pm b/lib/Scope/Upper.pm index c40f1c8..377e434 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.16 +Version 0.17 =cut our $VERSION; BEGIN { - $VERSION = '0.16'; + $VERSION = '0.17'; } =head1 SYNOPSIS @@ -523,6 +523,9 @@ It may help to use a perl higher than 5.8.9 or 5.10.0, as they contain some cont Calling C to replace an L'd code frame does not work when a custom runloop is used or when debugging flags are set with C. In those two cases, L will look for a C statement in its callback and, if there is one, throw an exception before executing the code. +Moreover, in order to handle C statements properly, L currently has to suffer a run-time overhead proportional to the size of the the callback in every case (with a small ratio), and proportional to the size of B the code executed as the result of the L call (including subroutine calls inside the callback) when a C statement is found in the L callback. +Despite this shortcoming, this XS version of L should still run way faster than the pure-Perl version from L. + =head1 DEPENDENCIES L (standard since perl 5.006).