mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
7 lines
221 B
Plaintext
7 lines
221 B
Plaintext
import default
|
|
import semmle.code.java.dataflow.DefUse
|
|
|
|
from VariableUpdate d, VarRead u, Variable v
|
|
where defUsePair(d, u) and u.getVariable() = v
|
|
select v, d.getLocation().getStartLine(), u.getLocation().getStartLine()
|