Having read McCabe's article about cyclomatic complexity, it reads:
A less frequently occurring issue that has greater impact on complexity is the distinction between “case-labeled statements” and “case labels.” When several case labels apply to the same program statement, this is modeled as a single decision outcome edge in the control flow graph, adding one to complexity.
I do not understand - what is a "case labeled statement" and "case label"?
Do they mean if case 1
, case 2
, e.g. both jump to case 3
?