mirror of
https://github.com/github/codeql.git
synced 2026-03-23 16:06:47 +01:00
15 lines
311 B
Plaintext
15 lines
311 B
Plaintext
/**
|
|
* @name Called functions
|
|
* @description The number of functions for which a call site was found.
|
|
* @kind metric
|
|
* @metricType project
|
|
* @metricAggregate sum
|
|
* @tags meta
|
|
* @id js/meta/called-functions
|
|
*/
|
|
|
|
import javascript
|
|
import CallGraphQuality
|
|
|
|
select projectRoot(), count(FunctionWithCallers f)
|