mirror of
https://github.com/github/codeql.git
synced 2026-04-26 17:25:19 +02:00
15 lines
313 B
Plaintext
15 lines
313 B
Plaintext
/**
|
|
* @name Resolvable call candidates
|
|
* @description The number of (relevant) calls in the program.
|
|
* @kind metric
|
|
* @metricType project
|
|
* @metricAggregate sum
|
|
* @tags meta
|
|
* @id py/meta/resolvable-call-candidates
|
|
*/
|
|
|
|
import python
|
|
import CallGraphQuality
|
|
|
|
select projectRoot(), count(RelevantCall call)
|