raix / vscode-perl-debug

LOOKING FOR MAINTAINERS. Perl debugger extension for visual studio code
MIT License
63 stars 36 forks source link

the same name local variable can not update dispaly new data #136

Open guobbs opened 4 years ago

guobbs commented 4 years ago

I have two sub function, have two same local variable name in these sub functions.

sub fun_1 {
       my $file = "1.pl";
      ......
}
sub fun_2 {
       my $file = "2.pl";
      ......
}

first execute sub fun_1, the local variable panel display "$file:1.pl". when execute sub fun_2, the local variable panel display "$file:1.pl" yet.