mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
14 lines
293 B
Plaintext
14 lines
293 B
Plaintext
/**
|
|
* @id py/examples/mutualrecursion
|
|
* @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
|