On Oct 1, 2012, at 2:00 AM, Ovid wrote: > For others: yes, I know that PPI offers cyclomatic complexity information. I > would like to see all code coverage information provided in "one-stop > shopping" for Perl rather than relying on a separate tool (and I don't know > that PPI exposes the control-flow graph used to calculate the cyclomatic > complexity. Does it?).
To my knowledge, PPI doesn't compute cyclomatic complexity. But Perl::Critic approximates it just by counting conditional operators and keywords. -Jeff