mirror of
https://github.com/github/codeql.git
synced 2025-12-21 11:16:30 +01:00
8 lines
178 B
Plaintext
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."
|