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

13 lines
258 B
Plaintext

/**
* @name Mutual recursion
* @description Finds pairs of functions that call each other
* @tags method
* recursion
*/
import python
from FunctionObject m, FunctionObject n
where m != n and m.getACallee() = n and n.getACallee() = m
select m, n