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