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