mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
14 lines
208 B
Plaintext
14 lines
208 B
Plaintext
/**
|
|
* @id py/examples/generator
|
|
* @name Generator functions
|
|
* @description Finds generator functions
|
|
* @tags generator
|
|
* function
|
|
*/
|
|
|
|
import python
|
|
|
|
from Function f
|
|
where f.isGenerator()
|
|
select f
|