Files
codeql/python/ql/examples/snippets/call.ql
2020-03-30 11:59:10 +02:00

14 lines
259 B
Plaintext

/**
* @id py/examples/call
* @name Calls to function
* @description Finds calls to any function named "len"
* @tags call
* function
*/
import python
from Value len, CallNode call
where len.getName() = "len" and len.getACall() = call
select call