Files
codeql/csharp/ql/test/library-tests/complexity/Complexity.ql
2018-08-02 17:53:23 +01:00

7 lines
138 B
Plaintext

import csharp
from Callable f
where f.getName().matches("cc_") // cc1, cc2, ...
and f.fromSource()
select f, f.getCyclomaticComplexity()