Files
codeql/python/ql/examples/snippets/generator.ql
2020-03-30 11:59:10 +02:00

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