Files
codeql-lab/codeql-custom-queries-javascript/example.ql
2019-11-12 14:05:48 -08:00

12 lines
207 B
Plaintext

/**
* @name Empty block
* @kind problem
* @problem.severity warning
* @id javascript/example/empty-block
*/
import javascript
from Block b
where b.getNumStmt() = 0
select b, "This is an empty block."