Files
codeql/javascript/ql/src/meta/alerts/CallGraph.ql
2021-03-11 10:46:18 +00:00

16 lines
334 B
Plaintext

/**
* @name Call graph
* @description An edge in the call graph.
* @kind problem
* @problem.severity recommendation
* @id js/meta/alerts/call-graph
* @tags meta
* @precision very-low
*/
import javascript
from DataFlow::InvokeNode invoke, Function f
where invoke.getACallee() = f
select invoke, "Call to $@", f, f.describe()