mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
7 lines
219 B
Plaintext
7 lines
219 B
Plaintext
import java
|
|
import semmle.code.java.dataflow.SSA
|
|
|
|
from SsaDefinition ssa, SsaSourceVariable v, Expr use
|
|
where use = ssa.getARead() and ssa.getSourceVariable() = v
|
|
select v, ssa.getControlFlowNode(), ssa.toString(), use
|