mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
13 lines
187 B
Plaintext
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
|