What would be a reasonable way to calculate the cyclomatic complexity of a Clojure function? It's easy to count decision points based on functions like 'if' and 'cond', but it starts to get tricky with macros. Anyone has tried this for Clojure or maybe another functional language?

有帮助吗?

解决方案

Macros are an abstraction and should not contributed to the CC calculation, any more than a function call would.

That said, I don't think that CC is particularly interesting for Clojure. I would be more interested in something that measured overuse of mutability.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top