mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
12 lines
178 B
Plaintext
12 lines
178 B
Plaintext
/**
|
|
* @name Generator functions
|
|
* @description Finds generator functions
|
|
* @tags generator
|
|
* function
|
|
*/
|
|
|
|
import python
|
|
|
|
from Function f
|
|
where f.isGenerator()
|
|
select f |