id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc
1417,Debugger hangs with 'Show Local Variables' and very deep data-structures,whumann,bowtie,"Try to step through this
{{{
use strict;
use warnings;

my $foo = {};
 
sub deep {
	my ($depth, $ref) = @_;
	return if $depth > 3;
	deep($depth+1, ($ref->{$_}={})) for 'a'..'f';
}

deep(0, $foo);

my $bar = 17;
}}}

After {{{deep(0, $foo);}}} Padre needs a long time to recover and show $foo's new value. Change max. $depth to 6 and it hangs 'forever'.
",defect,assigned,minor,,Debugger for Perl 5,0.97,,,
