mirror of
https://github.com/github/codeql.git
synced 2026-04-08 08:34:02 +02:00
16 lines
334 B
Plaintext
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()
|