mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
15 lines
237 B
Plaintext
15 lines
237 B
Plaintext
/**
|
|
* @id js/examples/emptyblock
|
|
* @name Empty blocks
|
|
* @description Finds empty block statements
|
|
* @tags empty
|
|
* block
|
|
* statement
|
|
*/
|
|
|
|
import javascript
|
|
|
|
from BlockStmt blk
|
|
where not exists(blk.getAStmt())
|
|
select blk
|