I hate erroneous error messages. Like benign warnings. They only serve to hide true problems. Like doing a testcover on a module, seeing that you're only getting 63.2% conditional coverage, and then noticing that one of them is for code like this:

my $var = $opts->{foo} || $self->{default_foo};
when $self->{default_foo} is very carefully never allowed to be bad (a default provided in new, and the setter function not allowing bad values, including no value). And then Devel::Cover posits:
86367
ABdec
000
011
1X1
my $var = $opts->{foo} || $self->{default_foo};
(I can't use "style=" attributes, but the 0 0 0 line shows up in red because it's not being tested.) Is there any way to turn off that row, or otherwise tell Devel::Cover to ignore that possibility because I, as the human, have concluded it's not possible to reach?

Update: I guess I should read the TODO file:

- Marking of unreachable code - commandline tool and gui.
Not entirely sure how said tool would work, but that's the basic idea. I kinda like my comment idea better - because I'm much less likely to lose checked-in code than the cover_db database, where I presume the "unreachable code" will be remembered.


In reply to Devel::Cover and impossible codepaths by Tanktalus

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.