mirror of
https://github.com/github/codeql.git
synced 2026-03-05 15:16:47 +01:00
9 lines
291 B
Plaintext
9 lines
291 B
Plaintext
|
|
import python
|
|
import semmle.python.pointsto.PointsTo
|
|
import Util
|
|
|
|
from SsaSourceVariable var, ControlFlowNode use
|
|
where (use = var.getAUse() or var.hasRefinement(use, _)) and not var instanceof SpecialSsaSourceVariable
|
|
select locate(use.getLocation(), "abd"), var.getName(), use.toString()
|