mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
14 lines
216 B
Plaintext
14 lines
216 B
Plaintext
/**
|
|
* @id py/examples/recursion
|
|
* @name Recursion
|
|
* @description Finds functions that call themselves
|
|
* @tags method
|
|
* recursion
|
|
*/
|
|
|
|
import python
|
|
|
|
from FunctionObject f
|
|
where f.getACallee() = f
|
|
select f
|