It seems that it's cleaning up the pad too early:
sub search {
my ( $self, $test ) = @_;
my $where;
my $found = 0;
my $counter = 0;
$self->descend( pre_each => sub {
my $lvl = shift;
my $ev_return
= $lvl->each_value( sub {
$counter++;
my ( $name, $value ) = @_;
say "\$name=$name";
say "\$value=$value";
return 1 unless $found = $test->( $value );
$where = { key => $lvl, name => $name, value => $value };
# when any intermediate function sees QUIT_FLAG, it
# knows to return control to the method that called it.
return QUIT_FLAG;
});
say "\$found=$found";
say "\$where=$where";
return $ev_return;
});
say "\$counter=$counter";
say "\$found=$found";
say "\$where=$where";
return unless $found;
return $where;
}
And what I get is:
...
$found=1
$where=HASH(...)
$counter=0
$found=0
$where=
Or, if anybody can point to something bone-headed I'm doing, I'd really appreciate it. I even created incremental variables between the first and outer closure, but they got reset too. Even setting references on the innermost closure, gets me nothing in the named sub scope!
The entire code concerned here is 500 lines. It is impractical to include the code.
descendandeach_valuemethods do? – Jack Maney Aug 9 '11 at 23:58$foundis1and$whereis a hash. When I print the values in search, they are both reset to their original value, as if they were localized package variables (which they are not). So I set them in the inner closure, they retain the values in the middle, but they are completely set back to their original value insearch. – Axeman Aug 10 '11 at 3:12my, and that often isn't what you want (and is subject to change in a future perl version). – ysth Aug 10 '11 at 15:23my ... ifnot doing what you intended. But it's impossible to say without a self-contained example to try. – ysth Aug 10 '11 at 15:26strictdoes not complain, since--you're kinda not declaring a variable. So let me get this straight: it bypassesstrictand becomes a package variable? – Axeman Aug 10 '11 at 15:34