Files
codeql/javascript/ql/test/tutorials/Introducing the JavaScript libraries/query11.ql
Anders Schack-Mulligen e58094c732 Javascript: Autoformat.
2019-01-11 11:02:42 +01:00

8 lines
178 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."