Files
codeql/python/ql/examples/snippets/call.ql
2019-08-08 10:55:45 +01:00

14 lines
260 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