mirror of
https://github.com/github/codeql.git
synced 2026-03-28 02:08:17 +01:00
10 lines
268 B
Plaintext
10 lines
268 B
Plaintext
|
|
import python
|
|
import semmle.dataflow.SSA
|
|
import semmle.python.pointsto.PointsTo
|
|
import Util
|
|
|
|
from SsaSourceVariable var, ControlFlowNode use
|
|
where use = var.getAUse() or var.hasRefinement(use, _)
|
|
select locate(use.getLocation(), "abd"), var.getName(), use.toString()
|