Subject: | Broken links in html report |
Devel::NYTProf 4.0 generates only ...-line.html file for string evals,
so all ...-block.html files for actual files contain links to
non-existent files.
For example, in report for attached script, "string eval" in
1-pl-1-block.html is linked to non-existent "(eval
1)[-1-pl-3]-2-block.html" file.
Subject: | 1.pl |
#!/usr/bin/perl
my $sub = eval q[sub { print "abc\n" } ];
$sub->();