First, keep in mind that
try { ... } ...
is the same thing as
try sub { ... }, ...
and that's the source of many problems.
$GLOBAL_VARIABLE falls out of scope at the end of the (.pm) file, and before 5.10.0, a reference by an anon sub isn't enough to to keep it alive.
Simplified test case:
use strict;
use warnings;
{
my $f = 'test';
my $g = 'test';
sub f {
sub { print "f: $f\n" }->();
}
sub g {
$g if 0;
sub { print "g: $g\n" }->();
}
}
f();
g();
>perl589\bin\perl test.pl
Use of uninitialized value in concatenation (.) or string at test.pl l
+ine 9.
f:
g: test
>perl5100\bin\perl test.pl
f: test
g: test
Note that adding a reference to the captured variable in the named sub — even one that's optimized away — makes it available to the anonymous sub.
A similar problem exists with eval '$s'. While not fixed, a warning was added in 5.10.0.
>perl589\bin\perl -wle"{ my $s='test'; sub f { print 's: ', eval '$s'
+} } f()"
Use of uninitialized value in print at -e line 1.
s:
>perl5100\bin\perl -wle"{ my $s='test'; sub f { print 's: ', eval '$s'
+ } } f()"
Variable "$s" is not available at (eval 1) line 2.
Use of uninitialized value in print at -e line 1.
s:
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|