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

14 lines
241 B
Plaintext

/**
* @id py/examples/recursion
* @name Recursion
* @description Finds functions that call themselves
* @tags method
* recursion
*/
import python
from PythonFunctionValue f
where f.getACall().getScope() = f.getScope()
select f