Devel--Cover
Devel--Cover copied to clipboard
Uncoverable statements in XS
I'd like to have means to tag XS lines as uncoverable. Currently neither /* uncovered */
nor /* uncoverable statement */
achieve that goal. I prefer /* uncovered */
, as it is shorter. Best would be to also allow a reason.
if (unlikely_expression)
warn ("Unlikely event did occur"); /* uncovered: out of memory? */
Agreed. Something to mirror the possibilities for Perl code. I will see what can be done.
Thanks!