Files
codeql/python/ql/examples/snippets/generator.ql
2019-07-26 17:47:11 +02:00

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