vscode-perl-debug icon indicating copy to clipboard operation
vscode-perl-debug copied to clipboard

the same name local variable can not update dispaly new data

Open guobbs opened this issue 5 years ago • 0 comments

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.

guobbs avatar Jan 07 '20 10:01 guobbs