mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
16 lines
294 B
Plaintext
16 lines
294 B
Plaintext
/**
|
|
* @id js/examples/yieldundefined
|
|
* @name Empty yield
|
|
* @description Finds yield expressions without an operand
|
|
* @tags generator
|
|
* yield
|
|
* ECMAScript 6
|
|
* ECMAScript 2015
|
|
*/
|
|
|
|
import javascript
|
|
|
|
from YieldExpr yield
|
|
where not exists(yield.getOperand())
|
|
select yield
|