mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
16 lines
259 B
Plaintext
16 lines
259 B
Plaintext
/**
|
|
* @id js/examples/generator
|
|
* @name Generator functions
|
|
* @description Finds generator functions
|
|
* @tags generator
|
|
* function
|
|
* ECMAScript 6
|
|
* ECMAScript 2015
|
|
*/
|
|
|
|
import javascript
|
|
|
|
from Function f
|
|
where f.isGenerator()
|
|
select f
|