Files
codeql/python/ql/examples/snippets/recursion.ql
2019-07-26 17:47:11 +02:00

13 lines
187 B
Plaintext

/**
* @name Recursion
* @description Finds functions that call themselves
* @tags method
* recursion
*/
import python
from FunctionObject f
where f.getACallee() = f
select f