Re: Cyclomatic complexity in D ?

2016-08-15 Thread Basile B. via Digitalmars-d
On Tuesday, 16 August 2016 at 00:34:36 UTC, Stefan Koch wrote: On Monday, 15 August 2016 at 22:36:41 UTC, Basile B. wrote: Last night I've done a bit of documentation work on cyclomatic complexity. From this work it looks like the tools that do this static analysis are only using the AST (e.g

Re: Cyclomatic complexity in D ?

2016-08-15 Thread Basile B. via Digitalmars-d
On Monday, 15 August 2016 at 22:36:41 UTC, Basile B. wrote: Last night I've done a bit of documentation work on cyclomatic complexity. From this work it looks like the tools that do this static analysis are only using the AST (e.g the CC is computed for a each single function, and function

Re: Cyclomatic complexity in D ?

2016-08-15 Thread Stefan Koch via Digitalmars-d
On Monday, 15 August 2016 at 22:36:41 UTC, Basile B. wrote: Last night I've done a bit of documentation work on cyclomatic complexity. From this work it looks like the tools that do this static analysis are only using the AST (e.g the CC is computed for a each single function, and function

Cyclomatic complexity in D ?

2016-08-15 Thread Basile B. via Digitalmars-d
Last night I've done a bit of documentation work on cyclomatic complexity. From this work it looks like the tools that do this static analysis are only using the AST (e.g the CC is computed for a each single function, and function calls inside the graph are considered as "connected