mirror of
https://github.com/github/codeql.git
synced 2026-04-26 17:25:19 +02:00
Java: Replace getAUse with getARead.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import java
|
||||
import semmle.code.java.dataflow.SSA
|
||||
|
||||
from SsaVariable ssa, SsaSourceVariable v, Expr use
|
||||
where use = ssa.getAUse() and ssa.getSourceVariable() = v
|
||||
select v, ssa.getCfgNode(), ssa.toString(), use
|
||||
from SsaDefinition ssa, SsaSourceVariable v, Expr use
|
||||
where use = ssa.getARead() and ssa.getSourceVariable() = v
|
||||
select v, ssa.getControlFlowNode(), ssa.toString(), use
|
||||
|
||||
Reference in New Issue
Block a user