Files
codeql/javascript/ql/test/tutorials/Introducing the JavaScript libraries/query11.ql
2018-08-02 17:53:23 +01:00

7 lines
179 B
Plaintext

import javascript
from VarDef def, LocalVariable v
where v = def.getAVariable() and
not exists (VarUse use | def = use.getADef())
select def, "Dead store of local variable."